diff --git a/your-code/main.ipynb b/your-code/main.ipynb
index 999b648..56b09aa 100644
--- a/your-code/main.ipynb
+++ b/your-code/main.ipynb
@@ -18,13 +18,13446 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
- "# your code here\n"
+ "import mysql.connector\n",
+ "from getpass import getpass\n",
+ "import pandas as pd\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "········\n"
+ ]
+ }
+ ],
+ "source": [
+ "cnx = mysql.connector.connect(user = \"root\",\n",
+ " password = getpass(),\n",
+ " host = \"localhost\",\n",
+ " database = \"sakila\")"
]
},
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "True"
+ ]
+ },
+ "execution_count": 4,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "cnx.is_connected()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "cursor = cnx.cursor()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "query = (\"\"\"SELECT * FROM sakila.film;\"\"\")\n",
+ "\n",
+ "cursor.execute(query)\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "[(1,\n",
+ " 'ACADEMY DINOSAUR',\n",
+ " 'A Epic Drama of a Feminist And a Mad Scientist who must Battle a Teacher in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 86,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (2,\n",
+ " 'ACE GOLDFINGER',\n",
+ " 'A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 48,\n",
+ " Decimal('12.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (3,\n",
+ " 'ADAPTATION HOLES',\n",
+ " 'A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 50,\n",
+ " Decimal('18.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (4,\n",
+ " 'AFFAIR PREJUDICE',\n",
+ " 'A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 117,\n",
+ " Decimal('26.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (5,\n",
+ " 'AFRICAN EGG',\n",
+ " 'A Fast-Paced Documentary of a Pastry Chef And a Dentist who must Pursue a Forensic Psychologist in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 130,\n",
+ " Decimal('22.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (6,\n",
+ " 'AGENT TRUMAN',\n",
+ " 'A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 169,\n",
+ " Decimal('17.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (7,\n",
+ " 'AIRPLANE SIERRA',\n",
+ " 'A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 62,\n",
+ " Decimal('28.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (8,\n",
+ " 'AIRPORT POLLOCK',\n",
+ " 'A Epic Tale of a Moose And a Girl who must Confront a Monkey in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 54,\n",
+ " Decimal('15.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (9,\n",
+ " 'ALABAMA DEVIL',\n",
+ " 'A Thoughtful Panorama of a Database Administrator And a Mad Scientist who must Outgun a Mad Scientist in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 114,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (10,\n",
+ " 'ALADDIN CALENDAR',\n",
+ " 'A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 63,\n",
+ " Decimal('24.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (11,\n",
+ " 'ALAMO VIDEOTAPE',\n",
+ " 'A Boring Epistle of a Butler And a Cat who must Fight a Pastry Chef in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 126,\n",
+ " Decimal('16.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (12,\n",
+ " 'ALASKA PHANTOM',\n",
+ " 'A Fanciful Saga of a Hunter And a Pastry Chef who must Vanquish a Boy in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 136,\n",
+ " Decimal('22.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (13,\n",
+ " 'ALI FOREVER',\n",
+ " 'A Action-Packed Drama of a Dentist And a Crocodile who must Battle a Feminist in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 150,\n",
+ " Decimal('21.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (14,\n",
+ " 'ALICE FANTASIA',\n",
+ " 'A Emotional Drama of a A Shark And a Database Administrator who must Vanquish a Pioneer in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 94,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (15,\n",
+ " 'ALIEN CENTER',\n",
+ " 'A Brilliant Drama of a Cat And a Mad Scientist who must Battle a Feminist in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 46,\n",
+ " Decimal('10.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (16,\n",
+ " 'ALLEY EVOLUTION',\n",
+ " 'A Fast-Paced Drama of a Robot And a Composer who must Battle a Astronaut in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 180,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (17,\n",
+ " 'ALONE TRIP',\n",
+ " 'A Fast-Paced Character Study of a Composer And a Dog who must Outgun a Boat in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 82,\n",
+ " Decimal('14.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (18,\n",
+ " 'ALTER VICTORY',\n",
+ " 'A Thoughtful Drama of a Composer And a Feminist who must Meet a Secret Agent in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 57,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (19,\n",
+ " 'AMADEUS HOLY',\n",
+ " 'A Emotional Display of a Pioneer And a Technical Writer who must Battle a Man in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 113,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (20,\n",
+ " 'AMELIE HELLFIGHTERS',\n",
+ " 'A Boring Drama of a Woman And a Squirrel who must Conquer a Student in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 79,\n",
+ " Decimal('23.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (21,\n",
+ " 'AMERICAN CIRCUS',\n",
+ " 'A Insightful Drama of a Girl And a Astronaut who must Face a Database Administrator in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 129,\n",
+ " Decimal('17.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (22,\n",
+ " 'AMISTAD MIDSUMMER',\n",
+ " 'A Emotional Character Study of a Dentist And a Crocodile who must Meet a Sumo Wrestler in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 85,\n",
+ " Decimal('10.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (23,\n",
+ " 'ANACONDA CONFESSIONS',\n",
+ " 'A Lacklusture Display of a Dentist And a Dentist who must Fight a Girl in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 92,\n",
+ " Decimal('9.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (24,\n",
+ " 'ANALYZE HOOSIERS',\n",
+ " 'A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 181,\n",
+ " Decimal('19.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (25,\n",
+ " 'ANGELS LIFE',\n",
+ " 'A Thoughtful Display of a Woman And a Astronaut who must Battle a Robot in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 74,\n",
+ " Decimal('15.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (26,\n",
+ " 'ANNIE IDENTITY',\n",
+ " 'A Amazing Panorama of a Pastry Chef And a Boat who must Escape a Woman in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 86,\n",
+ " Decimal('15.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (27,\n",
+ " 'ANONYMOUS HUMAN',\n",
+ " 'A Amazing Reflection of a Database Administrator And a Astronaut who must Outrace a Database Administrator in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 179,\n",
+ " Decimal('12.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (28,\n",
+ " 'ANTHEM LUKE',\n",
+ " 'A Touching Panorama of a Waitress And a Woman who must Outrace a Dog in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 91,\n",
+ " Decimal('16.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (29,\n",
+ " 'ANTITRUST TOMATOES',\n",
+ " 'A Fateful Yarn of a Womanizer And a Feminist who must Succumb a Database Administrator in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 168,\n",
+ " Decimal('11.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (30,\n",
+ " 'ANYTHING SAVANNAH',\n",
+ " 'A Epic Story of a Pastry Chef And a Woman who must Chase a Feminist in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 82,\n",
+ " Decimal('27.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (31,\n",
+ " 'APACHE DIVINE',\n",
+ " 'A Awe-Inspiring Reflection of a Pastry Chef And a Teacher who must Overcome a Sumo Wrestler in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 92,\n",
+ " Decimal('16.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (32,\n",
+ " 'APOCALYPSE FLAMINGOS',\n",
+ " 'A Astounding Story of a Dog And a Squirrel who must Defeat a Woman in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 119,\n",
+ " Decimal('11.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (33,\n",
+ " 'APOLLO TEEN',\n",
+ " 'A Action-Packed Reflection of a Crocodile And a Explorer who must Find a Sumo Wrestler in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 153,\n",
+ " Decimal('15.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (34,\n",
+ " 'ARABIA DOGMA',\n",
+ " 'A Touching Epistle of a Madman And a Mad Cow who must Defeat a Student in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 62,\n",
+ " Decimal('29.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (35,\n",
+ " 'ARACHNOPHOBIA ROLLERCOASTER',\n",
+ " 'A Action-Packed Reflection of a Pastry Chef And a Composer who must Discover a Mad Scientist in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 147,\n",
+ " Decimal('24.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (36,\n",
+ " 'ARGONAUTS TOWN',\n",
+ " 'A Emotional Epistle of a Forensic Psychologist And a Butler who must Challenge a Waitress in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 127,\n",
+ " Decimal('12.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (37,\n",
+ " 'ARIZONA BANG',\n",
+ " 'A Brilliant Panorama of a Mad Scientist And a Mad Cow who must Meet a Pioneer in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 121,\n",
+ " Decimal('28.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (38,\n",
+ " 'ARK RIDGEMONT',\n",
+ " 'A Beautiful Yarn of a Pioneer And a Monkey who must Pursue a Explorer in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 68,\n",
+ " Decimal('25.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (39,\n",
+ " 'ARMAGEDDON LOST',\n",
+ " 'A Fast-Paced Tale of a Boat And a Teacher who must Succumb a Composer in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 99,\n",
+ " Decimal('10.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (40,\n",
+ " 'ARMY FLINTSTONES',\n",
+ " 'A Boring Saga of a Database Administrator And a Womanizer who must Battle a Waitress in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 148,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (41,\n",
+ " 'ARSENIC INDEPENDENCE',\n",
+ " 'A Fanciful Documentary of a Mad Cow And a Womanizer who must Find a Dentist in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 137,\n",
+ " Decimal('17.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (42,\n",
+ " 'ARTIST COLDBLOODED',\n",
+ " 'A Stunning Reflection of a Robot And a Moose who must Challenge a Woman in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 170,\n",
+ " Decimal('10.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (43,\n",
+ " 'ATLANTIS CAUSE',\n",
+ " 'A Thrilling Yarn of a Feminist And a Hunter who must Fight a Technical Writer in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 170,\n",
+ " Decimal('15.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (44,\n",
+ " 'ATTACKS HATE',\n",
+ " 'A Fast-Paced Panorama of a Technical Writer And a Mad Scientist who must Find a Feminist in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 113,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (45,\n",
+ " 'ATTRACTION NEWTON',\n",
+ " 'A Astounding Panorama of a Composer And a Frisbee who must Reach a Husband in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 83,\n",
+ " Decimal('14.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (46,\n",
+ " 'AUTUMN CROW',\n",
+ " 'A Beautiful Tale of a Dentist And a Mad Cow who must Battle a Moose in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 108,\n",
+ " Decimal('13.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (47,\n",
+ " 'BABY HALL',\n",
+ " 'A Boring Character Study of a A Shark And a Girl who must Outrace a Feminist in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 153,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (48,\n",
+ " 'BACKLASH UNDEFEATED',\n",
+ " 'A Stunning Character Study of a Mad Scientist And a Mad Cow who must Kill a Car in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 118,\n",
+ " Decimal('24.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (49,\n",
+ " 'BADMAN DAWN',\n",
+ " 'A Emotional Panorama of a Pioneer And a Composer who must Escape a Mad Scientist in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 162,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (50,\n",
+ " 'BAKED CLEOPATRA',\n",
+ " 'A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 182,\n",
+ " Decimal('20.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (51,\n",
+ " 'BALLOON HOMEWARD',\n",
+ " 'A Insightful Panorama of a Forensic Psychologist And a Mad Cow who must Build a Mad Scientist in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 75,\n",
+ " Decimal('10.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (52,\n",
+ " 'BALLROOM MOCKINGBIRD',\n",
+ " 'A Thrilling Documentary of a Composer And a Monkey who must Find a Feminist in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 173,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (53,\n",
+ " 'BANG KWAI',\n",
+ " 'A Epic Drama of a Madman And a Cat who must Face a A Shark in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 87,\n",
+ " Decimal('25.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (54,\n",
+ " 'BANGER PINOCCHIO',\n",
+ " 'A Awe-Inspiring Drama of a Car And a Pastry Chef who must Chase a Crocodile in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 113,\n",
+ " Decimal('15.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (55,\n",
+ " 'BARBARELLA STREETCAR',\n",
+ " 'A Awe-Inspiring Story of a Feminist And a Cat who must Conquer a Dog in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 65,\n",
+ " Decimal('27.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (56,\n",
+ " 'BAREFOOT MANCHURIAN',\n",
+ " 'A Intrepid Story of a Cat And a Student who must Vanquish a Girl in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 129,\n",
+ " Decimal('15.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (57,\n",
+ " 'BASIC EASY',\n",
+ " 'A Stunning Epistle of a Man And a Husband who must Reach a Mad Scientist in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 90,\n",
+ " Decimal('18.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (58,\n",
+ " 'BEACH HEARTBREAKERS',\n",
+ " 'A Fateful Display of a Womanizer And a Mad Scientist who must Outgun a A Shark in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 122,\n",
+ " Decimal('16.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (59,\n",
+ " 'BEAR GRACELAND',\n",
+ " 'A Astounding Saga of a Dog And a Boy who must Kill a Teacher in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 160,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (60,\n",
+ " 'BEAST HUNCHBACK',\n",
+ " 'A Awe-Inspiring Epistle of a Student And a Squirrel who must Defeat a Boy in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 89,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (61,\n",
+ " 'BEAUTY GREASE',\n",
+ " 'A Fast-Paced Display of a Composer And a Moose who must Sink a Robot in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 175,\n",
+ " Decimal('28.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (62,\n",
+ " 'BED HIGHBALL',\n",
+ " 'A Astounding Panorama of a Lumberjack And a Dog who must Redeem a Woman in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 106,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (63,\n",
+ " 'BEDAZZLED MARRIED',\n",
+ " 'A Astounding Character Study of a Madman And a Robot who must Meet a Mad Scientist in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 73,\n",
+ " Decimal('21.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (64,\n",
+ " 'BEETHOVEN EXORCIST',\n",
+ " 'A Epic Display of a Pioneer And a Student who must Challenge a Butler in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 151,\n",
+ " Decimal('26.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (65,\n",
+ " 'BEHAVIOR RUNAWAY',\n",
+ " 'A Unbelieveable Drama of a Student And a Husband who must Outrace a Sumo Wrestler in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 100,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (66,\n",
+ " 'BENEATH RUSH',\n",
+ " 'A Astounding Panorama of a Man And a Monkey who must Discover a Man in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 53,\n",
+ " Decimal('27.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (67,\n",
+ " 'BERETS AGENT',\n",
+ " 'A Taut Saga of a Crocodile And a Boy who must Overcome a Technical Writer in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 77,\n",
+ " Decimal('24.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (68,\n",
+ " 'BETRAYED REAR',\n",
+ " 'A Emotional Character Study of a Boat And a Pioneer who must Find a Explorer in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 122,\n",
+ " Decimal('26.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (69,\n",
+ " 'BEVERLY OUTLAW',\n",
+ " 'A Fanciful Documentary of a Womanizer And a Boat who must Defeat a Madman in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 85,\n",
+ " Decimal('21.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (70,\n",
+ " 'BIKINI BORROWERS',\n",
+ " 'A Astounding Drama of a Astronaut And a Cat who must Discover a Woman in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 142,\n",
+ " Decimal('26.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (71,\n",
+ " 'BILKO ANONYMOUS',\n",
+ " 'A Emotional Reflection of a Teacher And a Man who must Meet a Cat in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 100,\n",
+ " Decimal('25.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (72,\n",
+ " 'BILL OTHERS',\n",
+ " 'A Stunning Saga of a Mad Scientist And a Forensic Psychologist who must Challenge a Squirrel in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 93,\n",
+ " Decimal('12.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (73,\n",
+ " 'BINGO TALENTED',\n",
+ " 'A Touching Tale of a Girl And a Crocodile who must Discover a Waitress in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 150,\n",
+ " Decimal('22.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (74,\n",
+ " 'BIRCH ANTITRUST',\n",
+ " 'A Fanciful Panorama of a Husband And a Pioneer who must Outgun a Dog in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 162,\n",
+ " Decimal('18.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (75,\n",
+ " 'BIRD INDEPENDENCE',\n",
+ " 'A Thrilling Documentary of a Car And a Student who must Sink a Hunter in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 163,\n",
+ " Decimal('14.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (76,\n",
+ " 'BIRDCAGE CASPER',\n",
+ " 'A Fast-Paced Saga of a Frisbee And a Astronaut who must Overcome a Feminist in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 103,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (77,\n",
+ " 'BIRDS PERDITION',\n",
+ " 'A Boring Story of a Womanizer And a Pioneer who must Face a Dog in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 61,\n",
+ " Decimal('15.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (78,\n",
+ " 'BLACKOUT PRIVATE',\n",
+ " 'A Intrepid Yarn of a Pastry Chef And a Mad Scientist who must Challenge a Secret Agent in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 85,\n",
+ " Decimal('12.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (79,\n",
+ " 'BLADE POLISH',\n",
+ " 'A Thoughtful Character Study of a Frisbee And a Pastry Chef who must Fight a Dentist in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 114,\n",
+ " Decimal('10.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (80,\n",
+ " 'BLANKET BEVERLY',\n",
+ " 'A Emotional Documentary of a Student And a Girl who must Build a Boat in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 148,\n",
+ " Decimal('21.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (81,\n",
+ " 'BLINDNESS GUN',\n",
+ " 'A Touching Drama of a Robot And a Dentist who must Meet a Hunter in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 103,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (82,\n",
+ " 'BLOOD ARGONAUTS',\n",
+ " 'A Boring Drama of a Explorer And a Man who must Kill a Lumberjack in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 71,\n",
+ " Decimal('13.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (83,\n",
+ " 'BLUES INSTINCT',\n",
+ " 'A Insightful Documentary of a Boat And a Composer who must Meet a Forensic Psychologist in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 50,\n",
+ " Decimal('18.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (84,\n",
+ " 'BOILED DARES',\n",
+ " 'A Awe-Inspiring Story of a Waitress And a Dog who must Discover a Dentist in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 102,\n",
+ " Decimal('13.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (85,\n",
+ " 'BONNIE HOLOCAUST',\n",
+ " 'A Fast-Paced Story of a Crocodile And a Robot who must Find a Moose in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 63,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (86,\n",
+ " 'BOOGIE AMELIE',\n",
+ " 'A Lacklusture Character Study of a Husband And a Sumo Wrestler who must Succumb a Technical Writer in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 121,\n",
+ " Decimal('11.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (87,\n",
+ " 'BOONDOCK BALLROOM',\n",
+ " 'A Fateful Panorama of a Crocodile And a Boy who must Defeat a Monkey in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 76,\n",
+ " Decimal('14.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (88,\n",
+ " 'BORN SPINAL',\n",
+ " 'A Touching Epistle of a Frisbee And a Husband who must Pursue a Student in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 179,\n",
+ " Decimal('17.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (89,\n",
+ " 'BORROWERS BEDAZZLED',\n",
+ " 'A Brilliant Epistle of a Teacher And a Sumo Wrestler who must Defeat a Man in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 63,\n",
+ " Decimal('22.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (90,\n",
+ " 'BOULEVARD MOB',\n",
+ " 'A Fateful Epistle of a Moose And a Monkey who must Confront a Lumberjack in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 63,\n",
+ " Decimal('11.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (91,\n",
+ " 'BOUND CHEAPER',\n",
+ " 'A Thrilling Panorama of a Database Administrator And a Astronaut who must Challenge a Lumberjack in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 98,\n",
+ " Decimal('17.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (92,\n",
+ " 'BOWFINGER GABLES',\n",
+ " 'A Fast-Paced Yarn of a Waitress And a Composer who must Outgun a Dentist in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 72,\n",
+ " Decimal('19.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (93,\n",
+ " 'BRANNIGAN SUNRISE',\n",
+ " 'A Amazing Epistle of a Moose And a Crocodile who must Outrace a Dog in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 121,\n",
+ " Decimal('27.99'),\n",
+ " 'PG',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (94,\n",
+ " 'BRAVEHEART HUMAN',\n",
+ " 'A Insightful Story of a Dog And a Pastry Chef who must Battle a Girl in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 176,\n",
+ " Decimal('14.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (95,\n",
+ " 'BREAKFAST GOLDFINGER',\n",
+ " 'A Beautiful Reflection of a Student And a Student who must Fight a Moose in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 123,\n",
+ " Decimal('18.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (96,\n",
+ " 'BREAKING HOME',\n",
+ " 'A Beautiful Display of a Secret Agent And a Monkey who must Battle a Sumo Wrestler in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 169,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (97,\n",
+ " 'BRIDE INTRIGUE',\n",
+ " 'A Epic Tale of a Robot And a Monkey who must Vanquish a Man in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 56,\n",
+ " Decimal('24.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (98,\n",
+ " 'BRIGHT ENCOUNTERS',\n",
+ " 'A Fateful Yarn of a Lumberjack And a Feminist who must Conquer a Student in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 73,\n",
+ " Decimal('12.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (99,\n",
+ " 'BRINGING HYSTERICAL',\n",
+ " 'A Fateful Saga of a A Shark And a Technical Writer who must Find a Woman in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 136,\n",
+ " Decimal('14.99'),\n",
+ " 'PG',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (100,\n",
+ " 'BROOKLYN DESERT',\n",
+ " 'A Beautiful Drama of a Dentist And a Composer who must Battle a Sumo Wrestler in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 161,\n",
+ " Decimal('21.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (101,\n",
+ " 'BROTHERHOOD BLANKET',\n",
+ " 'A Fateful Character Study of a Butler And a Technical Writer who must Sink a Astronaut in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 73,\n",
+ " Decimal('26.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (102,\n",
+ " 'BUBBLE GROSSE',\n",
+ " 'A Awe-Inspiring Panorama of a Crocodile And a Moose who must Confront a Girl in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 60,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (103,\n",
+ " 'BUCKET BROTHERHOOD',\n",
+ " 'A Amazing Display of a Girl And a Womanizer who must Succumb a Lumberjack in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 133,\n",
+ " Decimal('27.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (104,\n",
+ " 'BUGSY SONG',\n",
+ " 'A Awe-Inspiring Character Study of a Secret Agent And a Boat who must Find a Squirrel in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 119,\n",
+ " Decimal('17.99'),\n",
+ " 'G',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (105,\n",
+ " 'BULL SHAWSHANK',\n",
+ " 'A Fanciful Drama of a Moose And a Squirrel who must Conquer a Pioneer in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 125,\n",
+ " Decimal('21.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (106,\n",
+ " 'BULWORTH COMMANDMENTS',\n",
+ " 'A Amazing Display of a Mad Cow And a Pioneer who must Redeem a Sumo Wrestler in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 61,\n",
+ " Decimal('14.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (107,\n",
+ " 'BUNCH MINDS',\n",
+ " 'A Emotional Story of a Feminist And a Feminist who must Escape a Pastry Chef in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 63,\n",
+ " Decimal('13.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (108,\n",
+ " 'BUTCH PANTHER',\n",
+ " 'A Lacklusture Yarn of a Feminist And a Database Administrator who must Face a Hunter in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 67,\n",
+ " Decimal('19.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (109,\n",
+ " 'BUTTERFLY CHOCOLAT',\n",
+ " 'A Fateful Story of a Girl And a Composer who must Conquer a Husband in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 89,\n",
+ " Decimal('17.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (110,\n",
+ " 'CABIN FLASH',\n",
+ " 'A Stunning Epistle of a Boat And a Man who must Challenge a A Shark in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 53,\n",
+ " Decimal('25.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (111,\n",
+ " 'CADDYSHACK JEDI',\n",
+ " 'A Awe-Inspiring Epistle of a Woman And a Madman who must Fight a Robot in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 52,\n",
+ " Decimal('17.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (112,\n",
+ " 'CALENDAR GUNFIGHT',\n",
+ " 'A Thrilling Drama of a Frisbee And a Lumberjack who must Sink a Man in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 120,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (113,\n",
+ " 'CALIFORNIA BIRDS',\n",
+ " 'A Thrilling Yarn of a Database Administrator And a Robot who must Battle a Database Administrator in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 75,\n",
+ " Decimal('19.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (114,\n",
+ " 'CAMELOT VACATION',\n",
+ " 'A Touching Character Study of a Woman And a Waitress who must Battle a Pastry Chef in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 61,\n",
+ " Decimal('26.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (115,\n",
+ " 'CAMPUS REMEMBER',\n",
+ " 'A Astounding Drama of a Crocodile And a Mad Cow who must Build a Robot in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 167,\n",
+ " Decimal('27.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (116,\n",
+ " 'CANDIDATE PERDITION',\n",
+ " 'A Brilliant Epistle of a Composer And a Database Administrator who must Vanquish a Mad Scientist in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 70,\n",
+ " Decimal('10.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (117,\n",
+ " 'CANDLES GRAPES',\n",
+ " 'A Fanciful Character Study of a Monkey And a Explorer who must Build a Astronaut in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 135,\n",
+ " Decimal('15.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (118,\n",
+ " 'CANYON STOCK',\n",
+ " 'A Thoughtful Reflection of a Waitress And a Feminist who must Escape a Squirrel in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 85,\n",
+ " Decimal('26.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (119,\n",
+ " 'CAPER MOTIONS',\n",
+ " 'A Fateful Saga of a Moose And a Car who must Pursue a Woman in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 176,\n",
+ " Decimal('22.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (120,\n",
+ " 'CARIBBEAN LIBERTY',\n",
+ " 'A Fanciful Tale of a Pioneer And a Technical Writer who must Outgun a Pioneer in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 92,\n",
+ " Decimal('16.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (121,\n",
+ " 'CAROL TEXAS',\n",
+ " 'A Astounding Character Study of a Composer And a Student who must Overcome a Composer in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 151,\n",
+ " Decimal('15.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (122,\n",
+ " 'CARRIE BUNCH',\n",
+ " 'A Amazing Epistle of a Student And a Astronaut who must Discover a Frisbee in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 114,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (123,\n",
+ " 'CASABLANCA SUPER',\n",
+ " 'A Amazing Panorama of a Crocodile And a Forensic Psychologist who must Pursue a Secret Agent in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 85,\n",
+ " Decimal('22.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (124,\n",
+ " 'CASPER DRAGONFLY',\n",
+ " 'A Intrepid Documentary of a Boat And a Crocodile who must Chase a Robot in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 163,\n",
+ " Decimal('16.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (125,\n",
+ " 'CASSIDY WYOMING',\n",
+ " 'A Intrepid Drama of a Frisbee And a Hunter who must Kill a Secret Agent in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 61,\n",
+ " Decimal('19.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (126,\n",
+ " 'CASUALTIES ENCINO',\n",
+ " 'A Insightful Yarn of a A Shark And a Pastry Chef who must Face a Boy in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 179,\n",
+ " Decimal('16.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (127,\n",
+ " 'CAT CONEHEADS',\n",
+ " 'A Fast-Paced Panorama of a Girl And a A Shark who must Confront a Boy in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 112,\n",
+ " Decimal('14.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (128,\n",
+ " 'CATCH AMISTAD',\n",
+ " 'A Boring Reflection of a Lumberjack And a Feminist who must Discover a Woman in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 183,\n",
+ " Decimal('10.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (129,\n",
+ " 'CAUSE DATE',\n",
+ " 'A Taut Tale of a Explorer And a Pastry Chef who must Conquer a Hunter in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 179,\n",
+ " Decimal('16.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (130,\n",
+ " 'CELEBRITY HORN',\n",
+ " 'A Amazing Documentary of a Secret Agent And a Astronaut who must Vanquish a Hunter in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 110,\n",
+ " Decimal('24.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (131,\n",
+ " 'CENTER DINOSAUR',\n",
+ " 'A Beautiful Character Study of a Sumo Wrestler And a Dentist who must Find a Dog in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 152,\n",
+ " Decimal('12.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (132,\n",
+ " 'CHAINSAW UPTOWN',\n",
+ " 'A Beautiful Documentary of a Boy And a Robot who must Discover a Squirrel in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 114,\n",
+ " Decimal('25.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (133,\n",
+ " 'CHAMBER ITALIAN',\n",
+ " 'A Fateful Reflection of a Moose And a Husband who must Overcome a Monkey in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 117,\n",
+ " Decimal('14.99'),\n",
+ " 'NC-17',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (134,\n",
+ " 'CHAMPION FLATLINERS',\n",
+ " 'A Amazing Story of a Mad Cow And a Dog who must Kill a Husband in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 51,\n",
+ " Decimal('21.99'),\n",
+ " 'PG',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (135,\n",
+ " 'CHANCE RESURRECTION',\n",
+ " 'A Astounding Story of a Forensic Psychologist And a Forensic Psychologist who must Overcome a Moose in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 70,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (136,\n",
+ " 'CHAPLIN LICENSE',\n",
+ " 'A Boring Drama of a Dog And a Forensic Psychologist who must Outrace a Explorer in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 146,\n",
+ " Decimal('26.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (137,\n",
+ " 'CHARADE DUFFEL',\n",
+ " 'A Action-Packed Display of a Man And a Waitress who must Build a Dog in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 66,\n",
+ " Decimal('21.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (138,\n",
+ " 'CHARIOTS CONSPIRACY',\n",
+ " 'A Unbelieveable Epistle of a Robot And a Husband who must Chase a Robot in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 71,\n",
+ " Decimal('29.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (139,\n",
+ " 'CHASING FIGHT',\n",
+ " 'A Astounding Saga of a Technical Writer And a Butler who must Battle a Butler in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 114,\n",
+ " Decimal('21.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (140,\n",
+ " 'CHEAPER CLYDE',\n",
+ " 'A Emotional Character Study of a Pioneer And a Girl who must Discover a Dog in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 87,\n",
+ " Decimal('23.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (141,\n",
+ " 'CHICAGO NORTH',\n",
+ " 'A Fateful Yarn of a Mad Cow And a Waitress who must Battle a Student in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 185,\n",
+ " Decimal('11.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (142,\n",
+ " 'CHICKEN HELLFIGHTERS',\n",
+ " 'A Emotional Drama of a Dog And a Explorer who must Outrace a Technical Writer in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 122,\n",
+ " Decimal('24.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (143,\n",
+ " 'CHILL LUCK',\n",
+ " 'A Lacklusture Epistle of a Boat And a Technical Writer who must Fight a A Shark in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 142,\n",
+ " Decimal('17.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (144,\n",
+ " 'CHINATOWN GLADIATOR',\n",
+ " 'A Brilliant Panorama of a Technical Writer And a Lumberjack who must Escape a Butler in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 61,\n",
+ " Decimal('24.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (145,\n",
+ " 'CHISUM BEHAVIOR',\n",
+ " 'A Epic Documentary of a Sumo Wrestler And a Butler who must Kill a Car in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 124,\n",
+ " Decimal('25.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (146,\n",
+ " 'CHITTY LOCK',\n",
+ " 'A Boring Epistle of a Boat And a Database Administrator who must Kill a Sumo Wrestler in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 107,\n",
+ " Decimal('24.99'),\n",
+ " 'G',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (147,\n",
+ " 'CHOCOLAT HARRY',\n",
+ " 'A Action-Packed Epistle of a Dentist And a Moose who must Meet a Mad Cow in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 101,\n",
+ " Decimal('16.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (148,\n",
+ " 'CHOCOLATE DUCK',\n",
+ " 'A Unbelieveable Story of a Mad Scientist And a Technical Writer who must Discover a Composer in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 132,\n",
+ " Decimal('13.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (149,\n",
+ " 'CHRISTMAS MOONSHINE',\n",
+ " 'A Action-Packed Epistle of a Feminist And a Astronaut who must Conquer a Boat in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 150,\n",
+ " Decimal('21.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (150,\n",
+ " 'CIDER DESIRE',\n",
+ " 'A Stunning Character Study of a Composer And a Mad Cow who must Succumb a Cat in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 101,\n",
+ " Decimal('9.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (151,\n",
+ " 'CINCINATTI WHISPERER',\n",
+ " 'A Brilliant Saga of a Pastry Chef And a Hunter who must Confront a Butler in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 143,\n",
+ " Decimal('26.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (152,\n",
+ " 'CIRCUS YOUTH',\n",
+ " 'A Thoughtful Drama of a Pastry Chef And a Dentist who must Pursue a Girl in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 90,\n",
+ " Decimal('13.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (153,\n",
+ " 'CITIZEN SHREK',\n",
+ " 'A Fanciful Character Study of a Technical Writer And a Husband who must Redeem a Robot in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 165,\n",
+ " Decimal('18.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (154,\n",
+ " 'CLASH FREDDY',\n",
+ " 'A Amazing Yarn of a Composer And a Squirrel who must Escape a Astronaut in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 81,\n",
+ " Decimal('12.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (155,\n",
+ " 'CLEOPATRA DEVIL',\n",
+ " 'A Fanciful Documentary of a Crocodile And a Technical Writer who must Fight a A Shark in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 150,\n",
+ " Decimal('26.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (156,\n",
+ " 'CLERKS ANGELS',\n",
+ " 'A Thrilling Display of a Sumo Wrestler And a Girl who must Confront a Man in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 164,\n",
+ " Decimal('15.99'),\n",
+ " 'G',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (157,\n",
+ " 'CLOCKWORK PARADISE',\n",
+ " 'A Insightful Documentary of a Technical Writer And a Feminist who must Challenge a Cat in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 143,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (158,\n",
+ " 'CLONES PINOCCHIO',\n",
+ " 'A Amazing Drama of a Car And a Robot who must Pursue a Dentist in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 124,\n",
+ " Decimal('16.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (159,\n",
+ " 'CLOSER BANG',\n",
+ " 'A Unbelieveable Panorama of a Frisbee And a Hunter who must Vanquish a Monkey in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 58,\n",
+ " Decimal('12.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (160,\n",
+ " 'CLUB GRAFFITI',\n",
+ " 'A Epic Tale of a Pioneer And a Hunter who must Escape a Girl in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 65,\n",
+ " Decimal('12.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (161,\n",
+ " 'CLUE GRAIL',\n",
+ " 'A Taut Tale of a Butler And a Mad Scientist who must Build a Crocodile in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 70,\n",
+ " Decimal('27.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (162,\n",
+ " 'CLUELESS BUCKET',\n",
+ " 'A Taut Tale of a Car And a Pioneer who must Conquer a Sumo Wrestler in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 95,\n",
+ " Decimal('13.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (163,\n",
+ " 'CLYDE THEORY',\n",
+ " 'A Beautiful Yarn of a Astronaut And a Frisbee who must Overcome a Explorer in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 139,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (164,\n",
+ " 'COAST RAINBOW',\n",
+ " 'A Astounding Documentary of a Mad Cow And a Pioneer who must Challenge a Butler in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 55,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (165,\n",
+ " 'COLDBLOODED DARLING',\n",
+ " 'A Brilliant Panorama of a Dentist And a Moose who must Find a Student in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 70,\n",
+ " Decimal('27.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (166,\n",
+ " 'COLOR PHILADELPHIA',\n",
+ " 'A Thoughtful Panorama of a Car And a Crocodile who must Sink a Monkey in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 149,\n",
+ " Decimal('19.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (167,\n",
+ " 'COMA HEAD',\n",
+ " 'A Awe-Inspiring Drama of a Boy And a Frisbee who must Escape a Pastry Chef in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 109,\n",
+ " Decimal('10.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (168,\n",
+ " 'COMANCHEROS ENEMY',\n",
+ " 'A Boring Saga of a Lumberjack And a Monkey who must Find a Monkey in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 67,\n",
+ " Decimal('23.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (169,\n",
+ " 'COMFORTS RUSH',\n",
+ " 'A Unbelieveable Panorama of a Pioneer And a Husband who must Meet a Mad Cow in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 76,\n",
+ " Decimal('19.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (170,\n",
+ " 'COMMAND DARLING',\n",
+ " 'A Awe-Inspiring Tale of a Forensic Psychologist And a Woman who must Challenge a Database Administrator in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 120,\n",
+ " Decimal('28.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (171,\n",
+ " 'COMMANDMENTS EXPRESS',\n",
+ " 'A Fanciful Saga of a Student And a Mad Scientist who must Battle a Hunter in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 59,\n",
+ " Decimal('13.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (172,\n",
+ " 'CONEHEADS SMOOCHY',\n",
+ " 'A Touching Story of a Womanizer And a Composer who must Pursue a Husband in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 112,\n",
+ " Decimal('12.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (173,\n",
+ " 'CONFESSIONS MAGUIRE',\n",
+ " 'A Insightful Story of a Car And a Boy who must Battle a Technical Writer in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 65,\n",
+ " Decimal('25.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (174,\n",
+ " 'CONFIDENTIAL INTERVIEW',\n",
+ " 'A Stunning Reflection of a Cat And a Woman who must Find a Astronaut in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 180,\n",
+ " Decimal('13.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (175,\n",
+ " 'CONFUSED CANDLES',\n",
+ " 'A Stunning Epistle of a Cat And a Forensic Psychologist who must Confront a Pioneer in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 122,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (176,\n",
+ " 'CONGENIALITY QUEST',\n",
+ " 'A Touching Documentary of a Cat And a Pastry Chef who must Find a Lumberjack in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 87,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (177,\n",
+ " 'CONNECTICUT TRAMP',\n",
+ " 'A Unbelieveable Drama of a Crocodile And a Mad Cow who must Reach a Dentist in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 172,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (178,\n",
+ " 'CONNECTION MICROCOSMOS',\n",
+ " 'A Fateful Documentary of a Crocodile And a Husband who must Face a Husband in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 115,\n",
+ " Decimal('25.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (179,\n",
+ " 'CONQUERER NUTS',\n",
+ " 'A Taut Drama of a Mad Scientist And a Man who must Escape a Pioneer in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 173,\n",
+ " Decimal('14.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (180,\n",
+ " 'CONSPIRACY SPIRIT',\n",
+ " 'A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 184,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (181,\n",
+ " 'CONTACT ANONYMOUS',\n",
+ " 'A Insightful Display of a A Shark And a Monkey who must Face a Database Administrator in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 166,\n",
+ " Decimal('10.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (182,\n",
+ " 'CONTROL ANTHEM',\n",
+ " 'A Fateful Documentary of a Robot And a Student who must Battle a Cat in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 185,\n",
+ " Decimal('9.99'),\n",
+ " 'G',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (183,\n",
+ " 'CONVERSATION DOWNHILL',\n",
+ " 'A Taut Character Study of a Husband And a Waitress who must Sink a Squirrel in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 112,\n",
+ " Decimal('14.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (184,\n",
+ " 'CORE SUIT',\n",
+ " 'A Unbelieveable Tale of a Car And a Explorer who must Confront a Boat in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 92,\n",
+ " Decimal('24.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (185,\n",
+ " 'COWBOY DOOM',\n",
+ " 'A Astounding Drama of a Boy And a Lumberjack who must Fight a Butler in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 146,\n",
+ " Decimal('10.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (186,\n",
+ " 'CRAFT OUTFIELD',\n",
+ " 'A Lacklusture Display of a Explorer And a Hunter who must Succumb a Database Administrator in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 64,\n",
+ " Decimal('17.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (187,\n",
+ " 'CRANES RESERVOIR',\n",
+ " 'A Fanciful Documentary of a Teacher And a Dog who must Outgun a Forensic Psychologist in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 57,\n",
+ " Decimal('12.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (188,\n",
+ " 'CRAZY HOME',\n",
+ " 'A Fanciful Panorama of a Boy And a Woman who must Vanquish a Database Administrator in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 136,\n",
+ " Decimal('24.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (189,\n",
+ " 'CREATURES SHAKESPEARE',\n",
+ " 'A Emotional Drama of a Womanizer And a Squirrel who must Vanquish a Crocodile in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 139,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (190,\n",
+ " 'CREEPERS KANE',\n",
+ " 'A Awe-Inspiring Reflection of a Squirrel And a Boat who must Outrace a Car in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 172,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (191,\n",
+ " 'CROOKED FROGMEN',\n",
+ " 'A Unbelieveable Drama of a Hunter And a Database Administrator who must Battle a Crocodile in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 143,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (192,\n",
+ " 'CROSSING DIVORCE',\n",
+ " 'A Beautiful Documentary of a Dog And a Robot who must Redeem a Womanizer in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 50,\n",
+ " Decimal('19.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (193,\n",
+ " 'CROSSROADS CASUALTIES',\n",
+ " 'A Intrepid Documentary of a Sumo Wrestler And a Astronaut who must Battle a Composer in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 153,\n",
+ " Decimal('20.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (194,\n",
+ " 'CROW GREASE',\n",
+ " 'A Awe-Inspiring Documentary of a Woman And a Husband who must Sink a Database Administrator in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 104,\n",
+ " Decimal('22.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (195,\n",
+ " 'CROWDS TELEMARK',\n",
+ " 'A Intrepid Documentary of a Astronaut And a Forensic Psychologist who must Find a Frisbee in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 112,\n",
+ " Decimal('16.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (196,\n",
+ " 'CRUELTY UNFORGIVEN',\n",
+ " 'A Brilliant Tale of a Car And a Moose who must Battle a Dentist in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 69,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (197,\n",
+ " 'CRUSADE HONEY',\n",
+ " 'A Fast-Paced Reflection of a Explorer And a Butler who must Battle a Madman in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 112,\n",
+ " Decimal('27.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (198,\n",
+ " 'CRYSTAL BREAKING',\n",
+ " 'A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 184,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (199,\n",
+ " 'CUPBOARD SINNERS',\n",
+ " 'A Emotional Reflection of a Frisbee And a Boat who must Reach a Pastry Chef in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 56,\n",
+ " Decimal('29.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (200,\n",
+ " 'CURTAIN VIDEOTAPE',\n",
+ " 'A Boring Reflection of a Dentist And a Mad Cow who must Chase a Secret Agent in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 133,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (201,\n",
+ " 'CYCLONE FAMILY',\n",
+ " 'A Lacklusture Drama of a Student And a Monkey who must Sink a Womanizer in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 176,\n",
+ " Decimal('18.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (202,\n",
+ " 'DADDY PITTSBURGH',\n",
+ " 'A Epic Story of a A Shark And a Student who must Confront a Explorer in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 161,\n",
+ " Decimal('26.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (203,\n",
+ " 'DAISY MENAGERIE',\n",
+ " 'A Fast-Paced Saga of a Pastry Chef And a Monkey who must Sink a Composer in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 84,\n",
+ " Decimal('9.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (204,\n",
+ " 'DALMATIONS SWEDEN',\n",
+ " 'A Emotional Epistle of a Moose And a Hunter who must Overcome a Robot in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 106,\n",
+ " Decimal('25.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (205,\n",
+ " 'DANCES NONE',\n",
+ " 'A Insightful Reflection of a A Shark And a Dog who must Kill a Butler in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 58,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (206,\n",
+ " 'DANCING FEVER',\n",
+ " 'A Stunning Story of a Explorer And a Forensic Psychologist who must Face a Crocodile in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 144,\n",
+ " Decimal('25.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (207,\n",
+ " 'DANGEROUS UPTOWN',\n",
+ " 'A Unbelieveable Story of a Mad Scientist And a Woman who must Overcome a Dog in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 121,\n",
+ " Decimal('26.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (208,\n",
+ " 'DARES PLUTO',\n",
+ " 'A Fateful Story of a Robot And a Dentist who must Defeat a Astronaut in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 89,\n",
+ " Decimal('16.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (209,\n",
+ " 'DARKNESS WAR',\n",
+ " 'A Touching Documentary of a Husband And a Hunter who must Escape a Boy in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 99,\n",
+ " Decimal('24.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (210,\n",
+ " 'DARKO DORADO',\n",
+ " 'A Stunning Reflection of a Frisbee And a Husband who must Redeem a Dog in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 130,\n",
+ " Decimal('13.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (211,\n",
+ " 'DARLING BREAKING',\n",
+ " 'A Brilliant Documentary of a Astronaut And a Squirrel who must Succumb a Student in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 165,\n",
+ " Decimal('20.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (212,\n",
+ " 'DARN FORRESTER',\n",
+ " 'A Fateful Story of a A Shark And a Explorer who must Succumb a Technical Writer in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 185,\n",
+ " Decimal('14.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (213,\n",
+ " 'DATE SPEED',\n",
+ " 'A Touching Saga of a Composer And a Moose who must Discover a Dentist in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 104,\n",
+ " Decimal('19.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (214,\n",
+ " 'DAUGHTER MADIGAN',\n",
+ " 'A Beautiful Tale of a Hunter And a Mad Scientist who must Confront a Squirrel in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 59,\n",
+ " Decimal('13.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (215,\n",
+ " 'DAWN POND',\n",
+ " 'A Thoughtful Documentary of a Dentist And a Forensic Psychologist who must Defeat a Waitress in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 57,\n",
+ " Decimal('27.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (216,\n",
+ " 'DAY UNFAITHFUL',\n",
+ " 'A Stunning Documentary of a Composer And a Mad Scientist who must Find a Technical Writer in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 113,\n",
+ " Decimal('16.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (217,\n",
+ " 'DAZED PUNK',\n",
+ " 'A Action-Packed Story of a Pioneer And a Technical Writer who must Discover a Forensic Psychologist in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 120,\n",
+ " Decimal('20.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (218,\n",
+ " 'DECEIVER BETRAYED',\n",
+ " 'A Taut Story of a Moose And a Squirrel who must Build a Husband in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 122,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (219,\n",
+ " 'DEEP CRUSADE',\n",
+ " 'A Amazing Tale of a Crocodile And a Squirrel who must Discover a Composer in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 51,\n",
+ " Decimal('20.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (220,\n",
+ " 'DEER VIRGINIAN',\n",
+ " 'A Thoughtful Story of a Mad Cow And a Womanizer who must Overcome a Mad Scientist in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 106,\n",
+ " Decimal('13.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (221,\n",
+ " 'DELIVERANCE MULHOLLAND',\n",
+ " 'A Astounding Saga of a Monkey And a Moose who must Conquer a Butler in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 100,\n",
+ " Decimal('9.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (222,\n",
+ " 'DESERT POSEIDON',\n",
+ " 'A Brilliant Documentary of a Butler And a Frisbee who must Build a Astronaut in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 64,\n",
+ " Decimal('27.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (223,\n",
+ " 'DESIRE ALIEN',\n",
+ " 'A Fast-Paced Tale of a Dog And a Forensic Psychologist who must Meet a Astronaut in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 76,\n",
+ " Decimal('24.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (224,\n",
+ " 'DESPERATE TRAINSPOTTING',\n",
+ " 'A Epic Yarn of a Forensic Psychologist And a Teacher who must Face a Lumberjack in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 81,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (225,\n",
+ " 'DESTINATION JERK',\n",
+ " 'A Beautiful Yarn of a Teacher And a Cat who must Build a Car in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 76,\n",
+ " Decimal('19.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (226,\n",
+ " 'DESTINY SATURDAY',\n",
+ " 'A Touching Drama of a Crocodile And a Crocodile who must Conquer a Explorer in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 56,\n",
+ " Decimal('20.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (227,\n",
+ " 'DETAILS PACKER',\n",
+ " 'A Epic Saga of a Waitress And a Composer who must Face a Boat in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 88,\n",
+ " Decimal('17.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (228,\n",
+ " 'DETECTIVE VISION',\n",
+ " 'A Fanciful Documentary of a Pioneer And a Woman who must Redeem a Hunter in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 143,\n",
+ " Decimal('16.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (229,\n",
+ " 'DEVIL DESIRE',\n",
+ " 'A Beautiful Reflection of a Monkey And a Dentist who must Face a Database Administrator in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 87,\n",
+ " Decimal('12.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (230,\n",
+ " 'DIARY PANIC',\n",
+ " 'A Thoughtful Character Study of a Frisbee And a Mad Cow who must Outgun a Man in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 107,\n",
+ " Decimal('20.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (231,\n",
+ " 'DINOSAUR SECRETARY',\n",
+ " 'A Action-Packed Drama of a Feminist And a Girl who must Reach a Robot in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 63,\n",
+ " Decimal('27.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (232,\n",
+ " 'DIRTY ACE',\n",
+ " 'A Action-Packed Character Study of a Forensic Psychologist And a Girl who must Build a Dentist in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 147,\n",
+ " Decimal('29.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (233,\n",
+ " 'DISCIPLE MOTHER',\n",
+ " 'A Touching Reflection of a Mad Scientist And a Boat who must Face a Moose in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 141,\n",
+ " Decimal('17.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (234,\n",
+ " 'DISTURBING SCARFACE',\n",
+ " 'A Lacklusture Display of a Crocodile And a Butler who must Overcome a Monkey in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 94,\n",
+ " Decimal('27.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (235,\n",
+ " 'DIVIDE MONSTER',\n",
+ " 'A Intrepid Saga of a Man And a Forensic Psychologist who must Reach a Squirrel in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 68,\n",
+ " Decimal('13.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (236,\n",
+ " 'DIVINE RESURRECTION',\n",
+ " 'A Boring Character Study of a Man And a Womanizer who must Succumb a Teacher in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 100,\n",
+ " Decimal('19.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (237,\n",
+ " 'DIVORCE SHINING',\n",
+ " 'A Unbelieveable Saga of a Crocodile And a Student who must Discover a Cat in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 47,\n",
+ " Decimal('21.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (238,\n",
+ " 'DOCTOR GRAIL',\n",
+ " 'A Insightful Drama of a Womanizer And a Waitress who must Reach a Forensic Psychologist in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 57,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (239,\n",
+ " 'DOGMA FAMILY',\n",
+ " 'A Brilliant Character Study of a Database Administrator And a Monkey who must Succumb a Astronaut in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 122,\n",
+ " Decimal('16.99'),\n",
+ " 'G',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (240,\n",
+ " 'DOLLS RAGE',\n",
+ " 'A Thrilling Display of a Pioneer And a Frisbee who must Escape a Teacher in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 120,\n",
+ " Decimal('10.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (241,\n",
+ " 'DONNIE ALLEY',\n",
+ " 'A Awe-Inspiring Tale of a Butler And a Frisbee who must Vanquish a Teacher in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 125,\n",
+ " Decimal('20.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (242,\n",
+ " 'DOOM DANCING',\n",
+ " 'A Astounding Panorama of a Car And a Mad Scientist who must Battle a Lumberjack in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 68,\n",
+ " Decimal('13.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (243,\n",
+ " 'DOORS PRESIDENT',\n",
+ " 'A Awe-Inspiring Display of a Squirrel And a Woman who must Overcome a Boy in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 49,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (244,\n",
+ " 'DORADO NOTTING',\n",
+ " 'A Action-Packed Tale of a Sumo Wrestler And a A Shark who must Meet a Frisbee in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 139,\n",
+ " Decimal('26.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (245,\n",
+ " 'DOUBLE WRATH',\n",
+ " 'A Thoughtful Yarn of a Womanizer And a Dog who must Challenge a Madman in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 177,\n",
+ " Decimal('28.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (246,\n",
+ " 'DOUBTFIRE LABYRINTH',\n",
+ " 'A Intrepid Panorama of a Butler And a Composer who must Meet a Mad Cow in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 154,\n",
+ " Decimal('16.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (247,\n",
+ " 'DOWNHILL ENOUGH',\n",
+ " 'A Emotional Tale of a Pastry Chef And a Forensic Psychologist who must Succumb a Monkey in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 47,\n",
+ " Decimal('19.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (248,\n",
+ " 'DOZEN LION',\n",
+ " 'A Taut Drama of a Cat And a Girl who must Defeat a Frisbee in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 177,\n",
+ " Decimal('20.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (249,\n",
+ " 'DRACULA CRYSTAL',\n",
+ " 'A Thrilling Reflection of a Feminist And a Cat who must Find a Frisbee in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 176,\n",
+ " Decimal('26.99'),\n",
+ " 'G',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (250,\n",
+ " 'DRAGON SQUAD',\n",
+ " 'A Taut Reflection of a Boy And a Waitress who must Outgun a Teacher in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 170,\n",
+ " Decimal('26.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (251,\n",
+ " 'DRAGONFLY STRANGERS',\n",
+ " 'A Boring Documentary of a Pioneer And a Man who must Vanquish a Man in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 133,\n",
+ " Decimal('19.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (252,\n",
+ " 'DREAM PICKUP',\n",
+ " 'A Epic Display of a Car And a Composer who must Overcome a Forensic Psychologist in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 135,\n",
+ " Decimal('18.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (253,\n",
+ " 'DRIFTER COMMANDMENTS',\n",
+ " 'A Epic Reflection of a Womanizer And a Squirrel who must Discover a Husband in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 61,\n",
+ " Decimal('18.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (254,\n",
+ " 'DRIVER ANNIE',\n",
+ " 'A Lacklusture Character Study of a Butler And a Car who must Redeem a Boat in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 159,\n",
+ " Decimal('11.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (255,\n",
+ " 'DRIVING POLISH',\n",
+ " 'A Action-Packed Yarn of a Feminist And a Technical Writer who must Sink a Boat in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 175,\n",
+ " Decimal('21.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (256,\n",
+ " 'DROP WATERFRONT',\n",
+ " 'A Fanciful Documentary of a Husband And a Explorer who must Reach a Madman in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 178,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (257,\n",
+ " 'DRUMLINE CYCLONE',\n",
+ " 'A Insightful Panorama of a Monkey And a Sumo Wrestler who must Outrace a Mad Scientist in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 110,\n",
+ " Decimal('14.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (258,\n",
+ " 'DRUMS DYNAMITE',\n",
+ " 'A Epic Display of a Crocodile And a Crocodile who must Confront a Dog in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 96,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (259,\n",
+ " 'DUCK RACER',\n",
+ " 'A Lacklusture Yarn of a Teacher And a Squirrel who must Overcome a Dog in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 116,\n",
+ " Decimal('15.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (260,\n",
+ " 'DUDE BLINDNESS',\n",
+ " 'A Stunning Reflection of a Husband And a Lumberjack who must Face a Frisbee in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 132,\n",
+ " Decimal('9.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (261,\n",
+ " 'DUFFEL APOCALYPSE',\n",
+ " 'A Emotional Display of a Boat And a Explorer who must Challenge a Madman in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 171,\n",
+ " Decimal('13.99'),\n",
+ " 'G',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (262,\n",
+ " 'DUMBO LUST',\n",
+ " 'A Touching Display of a Feminist And a Dentist who must Conquer a Husband in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 119,\n",
+ " Decimal('17.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (263,\n",
+ " 'DURHAM PANKY',\n",
+ " 'A Brilliant Panorama of a Girl And a Boy who must Face a Mad Scientist in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 154,\n",
+ " Decimal('14.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (264,\n",
+ " 'DWARFS ALTER',\n",
+ " 'A Emotional Yarn of a Girl And a Dog who must Challenge a Composer in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 101,\n",
+ " Decimal('13.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (265,\n",
+ " 'DYING MAKER',\n",
+ " 'A Intrepid Tale of a Boat And a Monkey who must Kill a Cat in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 168,\n",
+ " Decimal('28.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (266,\n",
+ " 'DYNAMITE TARZAN',\n",
+ " 'A Intrepid Documentary of a Forensic Psychologist And a Mad Scientist who must Face a Explorer in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 141,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (267,\n",
+ " 'EAGLES PANKY',\n",
+ " 'A Thoughtful Story of a Car And a Boy who must Find a A Shark in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 140,\n",
+ " Decimal('14.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (268,\n",
+ " 'EARLY HOME',\n",
+ " 'A Amazing Panorama of a Mad Scientist And a Husband who must Meet a Woman in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 96,\n",
+ " Decimal('27.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (269,\n",
+ " 'EARRING INSTINCT',\n",
+ " 'A Stunning Character Study of a Dentist And a Mad Cow who must Find a Teacher in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 98,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (270,\n",
+ " 'EARTH VISION',\n",
+ " 'A Stunning Drama of a Butler And a Madman who must Outrace a Womanizer in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 85,\n",
+ " Decimal('29.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (271,\n",
+ " 'EASY GLADIATOR',\n",
+ " 'A Fateful Story of a Monkey And a Girl who must Overcome a Pastry Chef in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 148,\n",
+ " Decimal('12.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (272,\n",
+ " 'EDGE KISSING',\n",
+ " 'A Beautiful Yarn of a Composer And a Mad Cow who must Redeem a Mad Scientist in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 153,\n",
+ " Decimal('9.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (273,\n",
+ " 'EFFECT GLADIATOR',\n",
+ " 'A Beautiful Display of a Pastry Chef And a Pastry Chef who must Outgun a Forensic Psychologist in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 107,\n",
+ " Decimal('14.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (274,\n",
+ " 'EGG IGBY',\n",
+ " 'A Beautiful Documentary of a Boat And a Sumo Wrestler who must Succumb a Database Administrator in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 67,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (275,\n",
+ " 'EGYPT TENENBAUMS',\n",
+ " 'A Intrepid Story of a Madman And a Secret Agent who must Outrace a Astronaut in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 85,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (276,\n",
+ " 'ELEMENT FREDDY',\n",
+ " 'A Awe-Inspiring Reflection of a Waitress And a Squirrel who must Kill a Mad Cow in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 115,\n",
+ " Decimal('28.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (277,\n",
+ " 'ELEPHANT TROJAN',\n",
+ " 'A Beautiful Panorama of a Lumberjack And a Forensic Psychologist who must Overcome a Frisbee in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 126,\n",
+ " Decimal('24.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (278,\n",
+ " 'ELF MURDER',\n",
+ " 'A Action-Packed Story of a Frisbee And a Woman who must Reach a Girl in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 155,\n",
+ " Decimal('19.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (279,\n",
+ " 'ELIZABETH SHANE',\n",
+ " 'A Lacklusture Display of a Womanizer And a Dog who must Face a Sumo Wrestler in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 152,\n",
+ " Decimal('11.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (280,\n",
+ " 'EMPIRE MALKOVICH',\n",
+ " 'A Amazing Story of a Feminist And a Cat who must Face a Car in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 177,\n",
+ " Decimal('26.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (281,\n",
+ " 'ENCINO ELF',\n",
+ " 'A Astounding Drama of a Feminist And a Teacher who must Confront a Husband in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 143,\n",
+ " Decimal('9.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (282,\n",
+ " 'ENCOUNTERS CURTAIN',\n",
+ " 'A Insightful Epistle of a Pastry Chef And a Womanizer who must Build a Boat in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 92,\n",
+ " Decimal('20.99'),\n",
+ " 'NC-17',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (283,\n",
+ " 'ENDING CROWDS',\n",
+ " 'A Unbelieveable Display of a Dentist And a Madman who must Vanquish a Squirrel in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 85,\n",
+ " Decimal('10.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (284,\n",
+ " 'ENEMY ODDS',\n",
+ " 'A Fanciful Panorama of a Mad Scientist And a Woman who must Pursue a Astronaut in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 77,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (285,\n",
+ " 'ENGLISH BULWORTH',\n",
+ " 'A Intrepid Epistle of a Pastry Chef And a Pastry Chef who must Pursue a Crocodile in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 51,\n",
+ " Decimal('18.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (286,\n",
+ " 'ENOUGH RAGING',\n",
+ " 'A Astounding Character Study of a Boat And a Secret Agent who must Find a Mad Cow in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 158,\n",
+ " Decimal('16.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (287,\n",
+ " 'ENTRAPMENT SATISFACTION',\n",
+ " 'A Thoughtful Panorama of a Hunter And a Teacher who must Reach a Mad Cow in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 176,\n",
+ " Decimal('19.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (288,\n",
+ " 'ESCAPE METROPOLIS',\n",
+ " 'A Taut Yarn of a Astronaut And a Technical Writer who must Outgun a Boat in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 167,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (289,\n",
+ " 'EVE RESURRECTION',\n",
+ " 'A Awe-Inspiring Yarn of a Pastry Chef And a Database Administrator who must Challenge a Teacher in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 66,\n",
+ " Decimal('25.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (290,\n",
+ " 'EVERYONE CRAFT',\n",
+ " 'A Fateful Display of a Waitress And a Dentist who must Reach a Butler in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 163,\n",
+ " Decimal('29.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (291,\n",
+ " 'EVOLUTION ALTER',\n",
+ " 'A Fanciful Character Study of a Feminist And a Madman who must Find a Explorer in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 174,\n",
+ " Decimal('10.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (292,\n",
+ " 'EXCITEMENT EVE',\n",
+ " 'A Brilliant Documentary of a Monkey And a Car who must Conquer a Crocodile in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 51,\n",
+ " Decimal('20.99'),\n",
+ " 'G',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (293,\n",
+ " 'EXORCIST STING',\n",
+ " 'A Touching Drama of a Dog And a Sumo Wrestler who must Conquer a Mad Scientist in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 167,\n",
+ " Decimal('17.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (294,\n",
+ " 'EXPECATIONS NATURAL',\n",
+ " 'A Amazing Drama of a Butler And a Husband who must Reach a A Shark in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 138,\n",
+ " Decimal('26.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (295,\n",
+ " 'EXPENDABLE STALLION',\n",
+ " 'A Amazing Character Study of a Mad Cow And a Squirrel who must Discover a Hunter in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 97,\n",
+ " Decimal('14.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (296,\n",
+ " 'EXPRESS LONELY',\n",
+ " 'A Boring Drama of a Astronaut And a Boat who must Face a Boat in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 178,\n",
+ " Decimal('23.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (297,\n",
+ " 'EXTRAORDINARY CONQUERER',\n",
+ " 'A Stunning Story of a Dog And a Feminist who must Face a Forensic Psychologist in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 122,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (298,\n",
+ " 'EYES DRIVING',\n",
+ " 'A Thrilling Story of a Cat And a Waitress who must Fight a Explorer in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 172,\n",
+ " Decimal('13.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (299,\n",
+ " 'FACTORY DRAGON',\n",
+ " 'A Action-Packed Saga of a Teacher And a Frisbee who must Escape a Lumberjack in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 144,\n",
+ " Decimal('9.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (300,\n",
+ " 'FALCON VOLUME',\n",
+ " 'A Fateful Saga of a Sumo Wrestler And a Hunter who must Redeem a A Shark in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 102,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (301,\n",
+ " 'FAMILY SWEET',\n",
+ " 'A Epic Documentary of a Teacher And a Boy who must Escape a Woman in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 155,\n",
+ " Decimal('24.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (302,\n",
+ " 'FANTASIA PARK',\n",
+ " 'A Thoughtful Documentary of a Mad Scientist And a A Shark who must Outrace a Feminist in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 131,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (303,\n",
+ " 'FANTASY TROOPERS',\n",
+ " 'A Touching Saga of a Teacher And a Monkey who must Overcome a Secret Agent in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 58,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (304,\n",
+ " 'FARGO GANDHI',\n",
+ " 'A Thrilling Reflection of a Pastry Chef And a Crocodile who must Reach a Teacher in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 130,\n",
+ " Decimal('28.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (305,\n",
+ " 'FATAL HAUNTED',\n",
+ " 'A Beautiful Drama of a Student And a Secret Agent who must Confront a Dentist in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 91,\n",
+ " Decimal('24.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (306,\n",
+ " 'FEATHERS METAL',\n",
+ " 'A Thoughtful Yarn of a Monkey And a Teacher who must Find a Dog in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 104,\n",
+ " Decimal('12.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (307,\n",
+ " 'FELLOWSHIP AUTUMN',\n",
+ " 'A Lacklusture Reflection of a Dentist And a Hunter who must Meet a Teacher in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 77,\n",
+ " Decimal('9.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (308,\n",
+ " 'FERRIS MOTHER',\n",
+ " 'A Touching Display of a Frisbee And a Frisbee who must Kill a Girl in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 142,\n",
+ " Decimal('13.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (309,\n",
+ " 'FEUD FROGMEN',\n",
+ " 'A Brilliant Reflection of a Database Administrator And a Mad Cow who must Chase a Woman in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 98,\n",
+ " Decimal('29.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (310,\n",
+ " 'FEVER EMPIRE',\n",
+ " 'A Insightful Panorama of a Cat And a Boat who must Defeat a Boat in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 158,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (311,\n",
+ " 'FICTION CHRISTMAS',\n",
+ " 'A Emotional Yarn of a A Shark And a Student who must Battle a Robot in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 72,\n",
+ " Decimal('14.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (312,\n",
+ " 'FIDDLER LOST',\n",
+ " 'A Boring Tale of a Squirrel And a Dog who must Challenge a Madman in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 75,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (313,\n",
+ " 'FIDELITY DEVIL',\n",
+ " 'A Awe-Inspiring Drama of a Technical Writer And a Composer who must Reach a Pastry Chef in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 118,\n",
+ " Decimal('11.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (314,\n",
+ " 'FIGHT JAWBREAKER',\n",
+ " 'A Intrepid Panorama of a Womanizer And a Girl who must Escape a Girl in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 91,\n",
+ " Decimal('13.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (315,\n",
+ " 'FINDING ANACONDA',\n",
+ " 'A Fateful Tale of a Database Administrator And a Girl who must Battle a Squirrel in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 156,\n",
+ " Decimal('10.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (316,\n",
+ " 'FIRE WOLVES',\n",
+ " 'A Intrepid Documentary of a Frisbee And a Dog who must Outrace a Lumberjack in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 173,\n",
+ " Decimal('18.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (317,\n",
+ " 'FIREBALL PHILADELPHIA',\n",
+ " 'A Amazing Yarn of a Dentist And a A Shark who must Vanquish a Madman in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 148,\n",
+ " Decimal('25.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (318,\n",
+ " 'FIREHOUSE VIETNAM',\n",
+ " 'A Awe-Inspiring Character Study of a Boat And a Boy who must Kill a Pastry Chef in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 103,\n",
+ " Decimal('14.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (319,\n",
+ " 'FISH OPUS',\n",
+ " 'A Touching Display of a Feminist And a Girl who must Confront a Astronaut in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 125,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (320,\n",
+ " 'FLAMINGOS CONNECTICUT',\n",
+ " 'A Fast-Paced Reflection of a Composer And a Composer who must Meet a Cat in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 80,\n",
+ " Decimal('28.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (321,\n",
+ " 'FLASH WARS',\n",
+ " 'A Astounding Saga of a Moose And a Pastry Chef who must Chase a Student in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 123,\n",
+ " Decimal('21.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (322,\n",
+ " 'FLATLINERS KILLER',\n",
+ " 'A Taut Display of a Secret Agent And a Waitress who must Sink a Robot in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 100,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (323,\n",
+ " 'FLIGHT LIES',\n",
+ " 'A Stunning Character Study of a Crocodile And a Pioneer who must Pursue a Teacher in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 179,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (324,\n",
+ " 'FLINTSTONES HAPPINESS',\n",
+ " 'A Fateful Story of a Husband And a Moose who must Vanquish a Boy in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 148,\n",
+ " Decimal('11.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (325,\n",
+ " 'FLOATS GARDEN',\n",
+ " 'A Action-Packed Epistle of a Robot And a Car who must Chase a Boat in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 145,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (326,\n",
+ " 'FLYING HOOK',\n",
+ " 'A Thrilling Display of a Mad Cow And a Dog who must Challenge a Frisbee in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 69,\n",
+ " Decimal('18.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (327,\n",
+ " 'FOOL MOCKINGBIRD',\n",
+ " 'A Lacklusture Tale of a Crocodile And a Composer who must Defeat a Madman in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 158,\n",
+ " Decimal('24.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (328,\n",
+ " 'FOREVER CANDIDATE',\n",
+ " 'A Unbelieveable Panorama of a Technical Writer And a Man who must Pursue a Frisbee in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 131,\n",
+ " Decimal('28.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (329,\n",
+ " 'FORREST SONS',\n",
+ " 'A Thrilling Documentary of a Forensic Psychologist And a Butler who must Defeat a Explorer in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 63,\n",
+ " Decimal('15.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (330,\n",
+ " 'FORRESTER COMANCHEROS',\n",
+ " 'A Fateful Tale of a Squirrel And a Forensic Psychologist who must Redeem a Man in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 112,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (331,\n",
+ " 'FORWARD TEMPLE',\n",
+ " 'A Astounding Display of a Forensic Psychologist And a Mad Scientist who must Challenge a Girl in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 90,\n",
+ " Decimal('25.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (332,\n",
+ " 'FRANKENSTEIN STRANGER',\n",
+ " 'A Insightful Character Study of a Feminist And a Pioneer who must Pursue a Pastry Chef in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 159,\n",
+ " Decimal('16.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (333,\n",
+ " 'FREAKY POCUS',\n",
+ " 'A Fast-Paced Documentary of a Pastry Chef And a Crocodile who must Chase a Squirrel in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 126,\n",
+ " Decimal('16.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (334,\n",
+ " 'FREDDY STORM',\n",
+ " 'A Intrepid Saga of a Man And a Lumberjack who must Vanquish a Husband in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 65,\n",
+ " Decimal('21.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (335,\n",
+ " 'FREEDOM CLEOPATRA',\n",
+ " 'A Emotional Reflection of a Dentist And a Mad Cow who must Face a Squirrel in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 133,\n",
+ " Decimal('23.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (336,\n",
+ " 'FRENCH HOLIDAY',\n",
+ " 'A Thrilling Epistle of a Dog And a Feminist who must Kill a Madman in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 99,\n",
+ " Decimal('22.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (337,\n",
+ " 'FRIDA SLIPPER',\n",
+ " 'A Fateful Story of a Lumberjack And a Car who must Escape a Boat in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 73,\n",
+ " Decimal('11.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (338,\n",
+ " 'FRISCO FORREST',\n",
+ " 'A Beautiful Documentary of a Woman And a Pioneer who must Pursue a Mad Scientist in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 51,\n",
+ " Decimal('23.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (339,\n",
+ " 'FROGMEN BREAKING',\n",
+ " 'A Unbelieveable Yarn of a Mad Scientist And a Cat who must Chase a Lumberjack in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 111,\n",
+ " Decimal('17.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (340,\n",
+ " 'FRONTIER CABIN',\n",
+ " 'A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 183,\n",
+ " Decimal('14.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (341,\n",
+ " 'FROST HEAD',\n",
+ " 'A Amazing Reflection of a Lumberjack And a Cat who must Discover a Husband in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 82,\n",
+ " Decimal('13.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (342,\n",
+ " 'FUGITIVE MAGUIRE',\n",
+ " 'A Taut Epistle of a Feminist And a Sumo Wrestler who must Battle a Crocodile in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 83,\n",
+ " Decimal('28.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (343,\n",
+ " 'FULL FLATLINERS',\n",
+ " 'A Beautiful Documentary of a Astronaut And a Moose who must Pursue a Monkey in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 94,\n",
+ " Decimal('14.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (344,\n",
+ " 'FURY MURDER',\n",
+ " 'A Lacklusture Reflection of a Boat And a Forensic Psychologist who must Fight a Waitress in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 178,\n",
+ " Decimal('28.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (345,\n",
+ " 'GABLES METROPOLIS',\n",
+ " 'A Fateful Display of a Cat And a Pioneer who must Challenge a Pastry Chef in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 161,\n",
+ " Decimal('17.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (346,\n",
+ " 'GALAXY SWEETHEARTS',\n",
+ " 'A Emotional Reflection of a Womanizer And a Pioneer who must Face a Squirrel in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 128,\n",
+ " Decimal('13.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (347,\n",
+ " 'GAMES BOWFINGER',\n",
+ " 'A Astounding Documentary of a Butler And a Explorer who must Challenge a Butler in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 119,\n",
+ " Decimal('17.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (348,\n",
+ " 'GANDHI KWAI',\n",
+ " 'A Thoughtful Display of a Mad Scientist And a Secret Agent who must Chase a Boat in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 86,\n",
+ " Decimal('9.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (349,\n",
+ " 'GANGS PRIDE',\n",
+ " 'A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 185,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (350,\n",
+ " 'GARDEN ISLAND',\n",
+ " 'A Unbelieveable Character Study of a Womanizer And a Madman who must Reach a Man in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 80,\n",
+ " Decimal('21.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (351,\n",
+ " 'GASLIGHT CRUSADE',\n",
+ " 'A Amazing Epistle of a Boy And a Astronaut who must Redeem a Man in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 106,\n",
+ " Decimal('10.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (352,\n",
+ " 'GATHERING CALENDAR',\n",
+ " 'A Intrepid Tale of a Pioneer And a Moose who must Conquer a Frisbee in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 176,\n",
+ " Decimal('22.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (353,\n",
+ " 'GENTLEMEN STAGE',\n",
+ " 'A Awe-Inspiring Reflection of a Monkey And a Student who must Overcome a Dentist in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 125,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (354,\n",
+ " 'GHOST GROUNDHOG',\n",
+ " 'A Brilliant Panorama of a Madman And a Composer who must Succumb a Car in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 85,\n",
+ " Decimal('18.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (355,\n",
+ " 'GHOSTBUSTERS ELF',\n",
+ " 'A Thoughtful Epistle of a Dog And a Feminist who must Chase a Composer in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 101,\n",
+ " Decimal('18.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (356,\n",
+ " 'GIANT TROOPERS',\n",
+ " 'A Fateful Display of a Feminist And a Monkey who must Vanquish a Monkey in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 102,\n",
+ " Decimal('10.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (357,\n",
+ " 'GILBERT PELICAN',\n",
+ " 'A Fateful Tale of a Man And a Feminist who must Conquer a Crocodile in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 114,\n",
+ " Decimal('13.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (358,\n",
+ " 'GILMORE BOILED',\n",
+ " 'A Unbelieveable Documentary of a Boat And a Husband who must Succumb a Student in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 163,\n",
+ " Decimal('29.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (359,\n",
+ " 'GLADIATOR WESTWARD',\n",
+ " 'A Astounding Reflection of a Squirrel And a Sumo Wrestler who must Sink a Dentist in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 173,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (360,\n",
+ " 'GLASS DYING',\n",
+ " 'A Astounding Drama of a Frisbee And a Astronaut who must Fight a Dog in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 103,\n",
+ " Decimal('24.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (361,\n",
+ " 'GLEAMING JAWBREAKER',\n",
+ " 'A Amazing Display of a Composer And a Forensic Psychologist who must Discover a Car in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 89,\n",
+ " Decimal('25.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (362,\n",
+ " 'GLORY TRACY',\n",
+ " 'A Amazing Saga of a Woman And a Womanizer who must Discover a Cat in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 115,\n",
+ " Decimal('13.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (363,\n",
+ " 'GO PURPLE',\n",
+ " 'A Fast-Paced Display of a Car And a Database Administrator who must Battle a Woman in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 54,\n",
+ " Decimal('12.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (364,\n",
+ " 'GODFATHER DIARY',\n",
+ " 'A Stunning Saga of a Lumberjack And a Squirrel who must Chase a Car in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 73,\n",
+ " Decimal('14.99'),\n",
+ " 'NC-17',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (365,\n",
+ " 'GOLD RIVER',\n",
+ " 'A Taut Documentary of a Database Administrator And a Waitress who must Reach a Mad Scientist in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 154,\n",
+ " Decimal('21.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (366,\n",
+ " 'GOLDFINGER SENSIBILITY',\n",
+ " 'A Insightful Drama of a Mad Scientist And a Hunter who must Defeat a Pastry Chef in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 93,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (367,\n",
+ " 'GOLDMINE TYCOON',\n",
+ " 'A Brilliant Epistle of a Composer And a Frisbee who must Conquer a Husband in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 153,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (368,\n",
+ " 'GONE TROUBLE',\n",
+ " 'A Insightful Character Study of a Mad Cow And a Forensic Psychologist who must Conquer a A Shark in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 84,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (369,\n",
+ " 'GOODFELLAS SALUTE',\n",
+ " 'A Unbelieveable Tale of a Dog And a Explorer who must Sink a Mad Cow in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 56,\n",
+ " Decimal('22.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (370,\n",
+ " 'GORGEOUS BINGO',\n",
+ " 'A Action-Packed Display of a Sumo Wrestler And a Car who must Overcome a Waitress in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 108,\n",
+ " Decimal('26.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (371,\n",
+ " 'GOSFORD DONNIE',\n",
+ " 'A Epic Panorama of a Mad Scientist And a Monkey who must Redeem a Secret Agent in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 129,\n",
+ " Decimal('17.99'),\n",
+ " 'G',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (372,\n",
+ " 'GRACELAND DYNAMITE',\n",
+ " 'A Taut Display of a Cat And a Girl who must Overcome a Database Administrator in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 140,\n",
+ " Decimal('26.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (373,\n",
+ " 'GRADUATE LORD',\n",
+ " 'A Lacklusture Epistle of a Girl And a A Shark who must Meet a Mad Scientist in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 156,\n",
+ " Decimal('14.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (374,\n",
+ " 'GRAFFITI LOVE',\n",
+ " 'A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Build a Composer in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 117,\n",
+ " Decimal('29.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (375,\n",
+ " 'GRAIL FRANKENSTEIN',\n",
+ " 'A Unbelieveable Saga of a Teacher And a Monkey who must Fight a Girl in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 85,\n",
+ " Decimal('17.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (376,\n",
+ " 'GRAPES FURY',\n",
+ " 'A Boring Yarn of a Mad Cow And a Sumo Wrestler who must Meet a Robot in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 155,\n",
+ " Decimal('20.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (377,\n",
+ " 'GREASE YOUTH',\n",
+ " 'A Emotional Panorama of a Secret Agent And a Waitress who must Escape a Composer in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 135,\n",
+ " Decimal('20.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (378,\n",
+ " 'GREATEST NORTH',\n",
+ " 'A Astounding Character Study of a Secret Agent And a Robot who must Build a A Shark in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 93,\n",
+ " Decimal('24.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (379,\n",
+ " 'GREEDY ROOTS',\n",
+ " 'A Amazing Reflection of a A Shark And a Butler who must Chase a Hunter in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 166,\n",
+ " Decimal('14.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (380,\n",
+ " 'GREEK EVERYONE',\n",
+ " 'A Stunning Display of a Butler And a Teacher who must Confront a A Shark in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 176,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (381,\n",
+ " 'GRINCH MASSAGE',\n",
+ " 'A Intrepid Display of a Madman And a Feminist who must Pursue a Pioneer in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 150,\n",
+ " Decimal('25.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (382,\n",
+ " 'GRIT CLOCKWORK',\n",
+ " 'A Thoughtful Display of a Dentist And a Squirrel who must Confront a Lumberjack in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 137,\n",
+ " Decimal('21.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (383,\n",
+ " 'GROOVE FICTION',\n",
+ " 'A Unbelieveable Reflection of a Moose And a A Shark who must Defeat a Lumberjack in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 111,\n",
+ " Decimal('13.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (384,\n",
+ " 'GROSSE WONDERFUL',\n",
+ " 'A Epic Drama of a Cat And a Explorer who must Redeem a Moose in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 49,\n",
+ " Decimal('19.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (385,\n",
+ " 'GROUNDHOG UNCUT',\n",
+ " 'A Brilliant Panorama of a Astronaut And a Technical Writer who must Discover a Butler in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 139,\n",
+ " Decimal('26.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (386,\n",
+ " 'GUMP DATE',\n",
+ " 'A Intrepid Yarn of a Explorer And a Student who must Kill a Husband in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 53,\n",
+ " Decimal('12.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (387,\n",
+ " 'GUN BONNIE',\n",
+ " 'A Boring Display of a Sumo Wrestler And a Husband who must Build a Waitress in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 100,\n",
+ " Decimal('27.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (388,\n",
+ " 'GUNFIGHT MOON',\n",
+ " 'A Epic Reflection of a Pastry Chef And a Explorer who must Reach a Dentist in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 70,\n",
+ " Decimal('16.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (389,\n",
+ " 'GUNFIGHTER MUSSOLINI',\n",
+ " 'A Touching Saga of a Robot And a Boy who must Kill a Man in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 127,\n",
+ " Decimal('9.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (390,\n",
+ " 'GUYS FALCON',\n",
+ " 'A Boring Story of a Woman And a Feminist who must Redeem a Squirrel in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 84,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (391,\n",
+ " 'HALF OUTFIELD',\n",
+ " 'A Epic Epistle of a Database Administrator And a Crocodile who must Face a Madman in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 146,\n",
+ " Decimal('25.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (392,\n",
+ " 'HALL CASSIDY',\n",
+ " 'A Beautiful Panorama of a Pastry Chef And a A Shark who must Battle a Pioneer in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 51,\n",
+ " Decimal('13.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (393,\n",
+ " 'HALLOWEEN NUTS',\n",
+ " 'A Amazing Panorama of a Forensic Psychologist And a Technical Writer who must Fight a Dentist in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 47,\n",
+ " Decimal('19.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (394,\n",
+ " 'HAMLET WISDOM',\n",
+ " 'A Touching Reflection of a Man And a Man who must Sink a Robot in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 146,\n",
+ " Decimal('21.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (395,\n",
+ " 'HANDICAP BOONDOCK',\n",
+ " 'A Beautiful Display of a Pioneer And a Squirrel who must Vanquish a Sumo Wrestler in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 108,\n",
+ " Decimal('28.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (396,\n",
+ " 'HANGING DEEP',\n",
+ " 'A Action-Packed Yarn of a Boat And a Crocodile who must Build a Monkey in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 62,\n",
+ " Decimal('18.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (397,\n",
+ " 'HANKY OCTOBER',\n",
+ " 'A Boring Epistle of a Database Administrator And a Explorer who must Pursue a Madman in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 107,\n",
+ " Decimal('26.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (398,\n",
+ " 'HANOVER GALAXY',\n",
+ " 'A Stunning Reflection of a Girl And a Secret Agent who must Succumb a Boy in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 47,\n",
+ " Decimal('21.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (399,\n",
+ " 'HAPPINESS UNITED',\n",
+ " 'A Action-Packed Panorama of a Husband And a Feminist who must Meet a Forensic Psychologist in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 100,\n",
+ " Decimal('23.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (400,\n",
+ " 'HARDLY ROBBERS',\n",
+ " 'A Emotional Character Study of a Hunter And a Car who must Kill a Woman in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 72,\n",
+ " Decimal('15.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (401,\n",
+ " 'HAROLD FRENCH',\n",
+ " 'A Stunning Saga of a Sumo Wrestler And a Student who must Outrace a Moose in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 168,\n",
+ " Decimal('10.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (402,\n",
+ " 'HARPER DYING',\n",
+ " 'A Awe-Inspiring Reflection of a Woman And a Cat who must Confront a Feminist in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 52,\n",
+ " Decimal('15.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (403,\n",
+ " 'HARRY IDAHO',\n",
+ " 'A Taut Yarn of a Technical Writer And a Feminist who must Outrace a Dog in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 121,\n",
+ " Decimal('18.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (404,\n",
+ " 'HATE HANDICAP',\n",
+ " 'A Intrepid Reflection of a Mad Scientist And a Pioneer who must Overcome a Hunter in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 107,\n",
+ " Decimal('26.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (405,\n",
+ " 'HAUNTED ANTITRUST',\n",
+ " 'A Amazing Saga of a Man And a Dentist who must Reach a Technical Writer in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 76,\n",
+ " Decimal('13.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (406,\n",
+ " 'HAUNTING PIANIST',\n",
+ " 'A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 181,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (407,\n",
+ " 'HAWK CHILL',\n",
+ " 'A Action-Packed Drama of a Mad Scientist And a Composer who must Outgun a Car in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 47,\n",
+ " Decimal('12.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (408,\n",
+ " 'HEAD STRANGER',\n",
+ " 'A Thoughtful Saga of a Hunter And a Crocodile who must Confront a Dog in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 69,\n",
+ " Decimal('28.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (409,\n",
+ " 'HEARTBREAKERS BRIGHT',\n",
+ " 'A Awe-Inspiring Documentary of a A Shark And a Dentist who must Outrace a Pastry Chef in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 59,\n",
+ " Decimal('9.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (410,\n",
+ " 'HEAVEN FREEDOM',\n",
+ " 'A Intrepid Story of a Butler And a Car who must Vanquish a Man in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 48,\n",
+ " Decimal('19.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (411,\n",
+ " 'HEAVENLY GUN',\n",
+ " 'A Beautiful Yarn of a Forensic Psychologist And a Frisbee who must Battle a Moose in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 49,\n",
+ " Decimal('13.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (412,\n",
+ " 'HEAVYWEIGHTS BEAST',\n",
+ " 'A Unbelieveable Story of a Composer And a Dog who must Overcome a Womanizer in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 102,\n",
+ " Decimal('25.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (413,\n",
+ " 'HEDWIG ALTER',\n",
+ " 'A Action-Packed Yarn of a Womanizer And a Lumberjack who must Chase a Sumo Wrestler in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 169,\n",
+ " Decimal('16.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (414,\n",
+ " 'HELLFIGHTERS SIERRA',\n",
+ " 'A Taut Reflection of a A Shark And a Dentist who must Battle a Boat in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 75,\n",
+ " Decimal('23.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (415,\n",
+ " 'HIGH ENCINO',\n",
+ " 'A Fateful Saga of a Waitress And a Hunter who must Outrace a Sumo Wrestler in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 84,\n",
+ " Decimal('23.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (416,\n",
+ " 'HIGHBALL POTTER',\n",
+ " 'A Action-Packed Saga of a Husband And a Dog who must Redeem a Database Administrator in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 110,\n",
+ " Decimal('10.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (417,\n",
+ " 'HILLS NEIGHBORS',\n",
+ " 'A Epic Display of a Hunter And a Feminist who must Sink a Car in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 93,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (418,\n",
+ " 'HOBBIT ALIEN',\n",
+ " 'A Emotional Drama of a Husband And a Girl who must Outgun a Composer in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 157,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (419,\n",
+ " 'HOCUS FRIDA',\n",
+ " 'A Awe-Inspiring Tale of a Girl And a Madman who must Outgun a Student in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 141,\n",
+ " Decimal('19.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (420,\n",
+ " 'HOLES BRANNIGAN',\n",
+ " 'A Fast-Paced Reflection of a Technical Writer And a Student who must Fight a Boy in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 128,\n",
+ " Decimal('27.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (421,\n",
+ " 'HOLIDAY GAMES',\n",
+ " 'A Insightful Reflection of a Waitress And a Madman who must Pursue a Boy in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 78,\n",
+ " Decimal('10.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (422,\n",
+ " 'HOLLOW JEOPARDY',\n",
+ " 'A Beautiful Character Study of a Robot And a Astronaut who must Overcome a Boat in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 136,\n",
+ " Decimal('25.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (423,\n",
+ " 'HOLLYWOOD ANONYMOUS',\n",
+ " 'A Fast-Paced Epistle of a Boy And a Explorer who must Escape a Dog in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 69,\n",
+ " Decimal('29.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (424,\n",
+ " 'HOLOCAUST HIGHBALL',\n",
+ " 'A Awe-Inspiring Yarn of a Composer And a Man who must Find a Robot in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 149,\n",
+ " Decimal('12.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (425,\n",
+ " 'HOLY TADPOLE',\n",
+ " 'A Action-Packed Display of a Feminist And a Pioneer who must Pursue a Dog in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 88,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (426,\n",
+ " 'HOME PITY',\n",
+ " 'A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 185,\n",
+ " Decimal('15.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (427,\n",
+ " 'HOMEWARD CIDER',\n",
+ " 'A Taut Reflection of a Astronaut And a Squirrel who must Fight a Squirrel in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 103,\n",
+ " Decimal('19.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (428,\n",
+ " 'HOMICIDE PEACH',\n",
+ " 'A Astounding Documentary of a Hunter And a Boy who must Confront a Boy in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 141,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (429,\n",
+ " 'HONEY TIES',\n",
+ " 'A Taut Story of a Waitress And a Crocodile who must Outrace a Lumberjack in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 84,\n",
+ " Decimal('29.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (430,\n",
+ " 'HOOK CHARIOTS',\n",
+ " 'A Insightful Story of a Boy And a Dog who must Redeem a Boy in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 49,\n",
+ " Decimal('23.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (431,\n",
+ " 'HOOSIERS BIRDCAGE',\n",
+ " 'A Astounding Display of a Explorer And a Boat who must Vanquish a Car in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 176,\n",
+ " Decimal('12.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (432,\n",
+ " 'HOPE TOOTSIE',\n",
+ " 'A Amazing Documentary of a Student And a Sumo Wrestler who must Outgun a A Shark in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 139,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (433,\n",
+ " 'HORN WORKING',\n",
+ " 'A Stunning Display of a Mad Scientist And a Technical Writer who must Succumb a Monkey in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 95,\n",
+ " Decimal('23.99'),\n",
+ " 'PG',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (434,\n",
+ " 'HORROR REIGN',\n",
+ " 'A Touching Documentary of a A Shark And a Car who must Build a Husband in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 139,\n",
+ " Decimal('25.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (435,\n",
+ " 'HOTEL HAPPINESS',\n",
+ " 'A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 181,\n",
+ " Decimal('28.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (436,\n",
+ " 'HOURS RAGE',\n",
+ " 'A Fateful Story of a Explorer And a Feminist who must Meet a Technical Writer in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 122,\n",
+ " Decimal('14.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (437,\n",
+ " 'HOUSE DYNAMITE',\n",
+ " 'A Taut Story of a Pioneer And a Squirrel who must Battle a Student in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 109,\n",
+ " Decimal('13.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (438,\n",
+ " 'HUMAN GRAFFITI',\n",
+ " 'A Beautiful Reflection of a Womanizer And a Sumo Wrestler who must Chase a Database Administrator in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 68,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (439,\n",
+ " 'HUNCHBACK IMPOSSIBLE',\n",
+ " 'A Touching Yarn of a Frisbee And a Dentist who must Fight a Composer in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 151,\n",
+ " Decimal('28.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (440,\n",
+ " 'HUNGER ROOF',\n",
+ " 'A Unbelieveable Yarn of a Student And a Database Administrator who must Outgun a Husband in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 105,\n",
+ " Decimal('21.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (441,\n",
+ " 'HUNTER ALTER',\n",
+ " 'A Emotional Drama of a Mad Cow And a Boat who must Redeem a Secret Agent in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 125,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (442,\n",
+ " 'HUNTING MUSKETEERS',\n",
+ " 'A Thrilling Reflection of a Pioneer And a Dentist who must Outrace a Womanizer in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 65,\n",
+ " Decimal('24.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (443,\n",
+ " 'HURRICANE AFFAIR',\n",
+ " 'A Lacklusture Epistle of a Database Administrator And a Woman who must Meet a Hunter in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 49,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (444,\n",
+ " 'HUSTLER PARTY',\n",
+ " 'A Emotional Reflection of a Sumo Wrestler And a Monkey who must Conquer a Robot in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 83,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (445,\n",
+ " 'HYDE DOCTOR',\n",
+ " 'A Fanciful Documentary of a Boy And a Woman who must Redeem a Womanizer in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 100,\n",
+ " Decimal('11.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (446,\n",
+ " 'HYSTERICAL GRAIL',\n",
+ " 'A Amazing Saga of a Madman And a Dentist who must Build a Car in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 150,\n",
+ " Decimal('19.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (447,\n",
+ " 'ICE CROSSING',\n",
+ " 'A Fast-Paced Tale of a Butler And a Moose who must Overcome a Pioneer in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 131,\n",
+ " Decimal('28.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (448,\n",
+ " 'IDAHO LOVE',\n",
+ " 'A Fast-Paced Drama of a Student And a Crocodile who must Meet a Database Administrator in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 172,\n",
+ " Decimal('25.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (449,\n",
+ " 'IDENTITY LOVER',\n",
+ " 'A Boring Tale of a Composer And a Mad Cow who must Defeat a Car in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 119,\n",
+ " Decimal('12.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (450,\n",
+ " 'IDOLS SNATCHERS',\n",
+ " 'A Insightful Drama of a Car And a Composer who must Fight a Man in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 84,\n",
+ " Decimal('29.99'),\n",
+ " 'NC-17',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (451,\n",
+ " 'IGBY MAKER',\n",
+ " 'A Epic Documentary of a Hunter And a Dog who must Outgun a Dog in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 160,\n",
+ " Decimal('12.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (452,\n",
+ " 'ILLUSION AMELIE',\n",
+ " 'A Emotional Epistle of a Boat And a Mad Scientist who must Outrace a Robot in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 122,\n",
+ " Decimal('15.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (453,\n",
+ " 'IMAGE PRINCESS',\n",
+ " 'A Lacklusture Panorama of a Secret Agent And a Crocodile who must Discover a Madman in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 178,\n",
+ " Decimal('17.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (454,\n",
+ " 'IMPACT ALADDIN',\n",
+ " 'A Epic Character Study of a Frisbee And a Moose who must Outgun a Technical Writer in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 180,\n",
+ " Decimal('20.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (455,\n",
+ " 'IMPOSSIBLE PREJUDICE',\n",
+ " 'A Awe-Inspiring Yarn of a Monkey And a Hunter who must Chase a Teacher in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 103,\n",
+ " Decimal('11.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (456,\n",
+ " 'INCH JET',\n",
+ " 'A Fateful Saga of a Womanizer And a Student who must Defeat a Butler in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 167,\n",
+ " Decimal('18.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (457,\n",
+ " 'INDEPENDENCE HOTEL',\n",
+ " 'A Thrilling Tale of a Technical Writer And a Boy who must Face a Pioneer in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 157,\n",
+ " Decimal('21.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (458,\n",
+ " 'INDIAN LOVE',\n",
+ " 'A Insightful Saga of a Mad Scientist And a Mad Scientist who must Kill a Astronaut in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 135,\n",
+ " Decimal('26.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (459,\n",
+ " 'INFORMER DOUBLE',\n",
+ " 'A Action-Packed Display of a Woman And a Dentist who must Redeem a Forensic Psychologist in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 74,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (460,\n",
+ " 'INNOCENT USUAL',\n",
+ " 'A Beautiful Drama of a Pioneer And a Crocodile who must Challenge a Student in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 178,\n",
+ " Decimal('26.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (461,\n",
+ " 'INSECTS STONE',\n",
+ " 'A Epic Display of a Butler And a Dog who must Vanquish a Crocodile in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 123,\n",
+ " Decimal('14.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (462,\n",
+ " 'INSIDER ARIZONA',\n",
+ " 'A Astounding Saga of a Mad Scientist And a Hunter who must Pursue a Robot in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 78,\n",
+ " Decimal('17.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (463,\n",
+ " 'INSTINCT AIRPORT',\n",
+ " 'A Touching Documentary of a Mad Cow And a Explorer who must Confront a Butler in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 116,\n",
+ " Decimal('21.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (464,\n",
+ " 'INTENTIONS EMPIRE',\n",
+ " 'A Astounding Epistle of a Cat And a Cat who must Conquer a Mad Cow in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 107,\n",
+ " Decimal('13.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (465,\n",
+ " 'INTERVIEW LIAISONS',\n",
+ " 'A Action-Packed Reflection of a Student And a Butler who must Discover a Database Administrator in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 59,\n",
+ " Decimal('17.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (466,\n",
+ " 'INTOLERABLE INTENTIONS',\n",
+ " 'A Awe-Inspiring Story of a Monkey And a Pastry Chef who must Succumb a Womanizer in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 63,\n",
+ " Decimal('20.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (467,\n",
+ " 'INTRIGUE WORST',\n",
+ " 'A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 181,\n",
+ " Decimal('10.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (468,\n",
+ " 'INVASION CYCLONE',\n",
+ " 'A Lacklusture Character Study of a Mad Scientist And a Womanizer who must Outrace a Explorer in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 97,\n",
+ " Decimal('12.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (469,\n",
+ " 'IRON MOON',\n",
+ " 'A Fast-Paced Documentary of a Mad Cow And a Boy who must Pursue a Dentist in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 46,\n",
+ " Decimal('27.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (470,\n",
+ " 'ISHTAR ROCKETEER',\n",
+ " 'A Astounding Saga of a Dog And a Squirrel who must Conquer a Dog in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 79,\n",
+ " Decimal('24.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (471,\n",
+ " 'ISLAND EXORCIST',\n",
+ " 'A Fanciful Panorama of a Technical Writer And a Boy who must Find a Dentist in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 84,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (472,\n",
+ " 'ITALIAN AFRICAN',\n",
+ " 'A Astounding Character Study of a Monkey And a Moose who must Outgun a Cat in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 174,\n",
+ " Decimal('24.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (473,\n",
+ " 'JACKET FRISCO',\n",
+ " 'A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 181,\n",
+ " Decimal('16.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (474,\n",
+ " 'JADE BUNCH',\n",
+ " 'A Insightful Panorama of a Squirrel And a Mad Cow who must Confront a Student in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 174,\n",
+ " Decimal('21.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (475,\n",
+ " 'JAPANESE RUN',\n",
+ " 'A Awe-Inspiring Epistle of a Feminist And a Girl who must Sink a Girl in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 135,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (476,\n",
+ " 'JASON TRAP',\n",
+ " 'A Thoughtful Tale of a Woman And a A Shark who must Conquer a Dog in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 130,\n",
+ " Decimal('9.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (477,\n",
+ " 'JAWBREAKER BROOKLYN',\n",
+ " 'A Stunning Reflection of a Boat And a Pastry Chef who must Succumb a A Shark in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 118,\n",
+ " Decimal('15.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (478,\n",
+ " 'JAWS HARRY',\n",
+ " 'A Thrilling Display of a Database Administrator And a Monkey who must Overcome a Dog in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 112,\n",
+ " Decimal('10.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (479,\n",
+ " 'JEDI BENEATH',\n",
+ " 'A Astounding Reflection of a Explorer And a Dentist who must Pursue a Student in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 128,\n",
+ " Decimal('12.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (480,\n",
+ " 'JEEPERS WEDDING',\n",
+ " 'A Astounding Display of a Composer And a Dog who must Kill a Pastry Chef in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 84,\n",
+ " Decimal('29.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (481,\n",
+ " 'JEKYLL FROGMEN',\n",
+ " 'A Fanciful Epistle of a Student And a Astronaut who must Kill a Waitress in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 58,\n",
+ " Decimal('22.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (482,\n",
+ " 'JEOPARDY ENCINO',\n",
+ " 'A Boring Panorama of a Man And a Mad Cow who must Face a Explorer in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 102,\n",
+ " Decimal('12.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (483,\n",
+ " 'JERICHO MULAN',\n",
+ " 'A Amazing Yarn of a Hunter And a Butler who must Defeat a Boy in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 171,\n",
+ " Decimal('29.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (484,\n",
+ " 'JERK PAYCHECK',\n",
+ " 'A Touching Character Study of a Pastry Chef And a Database Administrator who must Reach a A Shark in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 172,\n",
+ " Decimal('13.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (485,\n",
+ " 'JERSEY SASSY',\n",
+ " 'A Lacklusture Documentary of a Madman And a Mad Cow who must Find a Feminist in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 60,\n",
+ " Decimal('16.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (486,\n",
+ " 'JET NEIGHBORS',\n",
+ " 'A Amazing Display of a Lumberjack And a Teacher who must Outrace a Woman in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 59,\n",
+ " Decimal('14.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (487,\n",
+ " 'JINGLE SAGEBRUSH',\n",
+ " 'A Epic Character Study of a Feminist And a Student who must Meet a Woman in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 124,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (488,\n",
+ " 'JOON NORTHWEST',\n",
+ " 'A Thrilling Panorama of a Technical Writer And a Car who must Discover a Forensic Psychologist in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 105,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (489,\n",
+ " 'JUGGLER HARDLY',\n",
+ " 'A Epic Story of a Mad Cow And a Astronaut who must Challenge a Car in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 54,\n",
+ " Decimal('14.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (490,\n",
+ " 'JUMANJI BLADE',\n",
+ " 'A Intrepid Yarn of a Husband And a Womanizer who must Pursue a Mad Scientist in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 121,\n",
+ " Decimal('13.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (491,\n",
+ " 'JUMPING WRATH',\n",
+ " 'A Touching Epistle of a Monkey And a Feminist who must Discover a Boat in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 74,\n",
+ " Decimal('18.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (492,\n",
+ " 'JUNGLE CLOSER',\n",
+ " 'A Boring Character Study of a Boy And a Woman who must Battle a Astronaut in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 134,\n",
+ " Decimal('11.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (493,\n",
+ " 'KANE EXORCIST',\n",
+ " 'A Epic Documentary of a Composer And a Robot who must Overcome a Car in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 92,\n",
+ " Decimal('18.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (494,\n",
+ " 'KARATE MOON',\n",
+ " 'A Astounding Yarn of a Womanizer And a Dog who must Reach a Waitress in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 120,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (495,\n",
+ " 'KENTUCKIAN GIANT',\n",
+ " 'A Stunning Yarn of a Woman And a Frisbee who must Escape a Waitress in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 169,\n",
+ " Decimal('10.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (496,\n",
+ " 'KICK SAVANNAH',\n",
+ " 'A Emotional Drama of a Monkey And a Robot who must Defeat a Monkey in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 179,\n",
+ " Decimal('10.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (497,\n",
+ " 'KILL BROTHERHOOD',\n",
+ " 'A Touching Display of a Hunter And a Secret Agent who must Redeem a Husband in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 54,\n",
+ " Decimal('15.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (498,\n",
+ " 'KILLER INNOCENT',\n",
+ " 'A Fanciful Character Study of a Student And a Explorer who must Succumb a Composer in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 161,\n",
+ " Decimal('11.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (499,\n",
+ " 'KING EVOLUTION',\n",
+ " 'A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 184,\n",
+ " Decimal('24.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (500,\n",
+ " 'KISS GLORY',\n",
+ " 'A Lacklusture Reflection of a Girl And a Husband who must Find a Robot in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 163,\n",
+ " Decimal('11.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (501,\n",
+ " 'KISSING DOLLS',\n",
+ " 'A Insightful Reflection of a Pioneer And a Teacher who must Build a Composer in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 141,\n",
+ " Decimal('9.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (502,\n",
+ " 'KNOCK WARLOCK',\n",
+ " 'A Unbelieveable Story of a Teacher And a Boat who must Confront a Moose in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 71,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (503,\n",
+ " 'KRAMER CHOCOLATE',\n",
+ " 'A Amazing Yarn of a Robot And a Pastry Chef who must Redeem a Mad Scientist in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 171,\n",
+ " Decimal('24.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (504,\n",
+ " 'KWAI HOMEWARD',\n",
+ " 'A Amazing Drama of a Car And a Squirrel who must Pursue a Car in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 46,\n",
+ " Decimal('25.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (505,\n",
+ " 'LABYRINTH LEAGUE',\n",
+ " 'A Awe-Inspiring Saga of a Composer And a Frisbee who must Succumb a Pioneer in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 46,\n",
+ " Decimal('24.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (506,\n",
+ " 'LADY STAGE',\n",
+ " 'A Beautiful Character Study of a Woman And a Man who must Pursue a Explorer in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 67,\n",
+ " Decimal('14.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (507,\n",
+ " 'LADYBUGS ARMAGEDDON',\n",
+ " 'A Fateful Reflection of a Dog And a Mad Scientist who must Meet a Mad Scientist in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 113,\n",
+ " Decimal('13.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (508,\n",
+ " 'LAMBS CINCINATTI',\n",
+ " 'A Insightful Story of a Man And a Feminist who must Fight a Composer in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 144,\n",
+ " Decimal('18.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (509,\n",
+ " 'LANGUAGE COWBOY',\n",
+ " 'A Epic Yarn of a Cat And a Madman who must Vanquish a Dentist in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 78,\n",
+ " Decimal('26.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (510,\n",
+ " 'LAWLESS VISION',\n",
+ " 'A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 181,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (511,\n",
+ " 'LAWRENCE LOVE',\n",
+ " 'A Fanciful Yarn of a Database Administrator And a Mad Cow who must Pursue a Womanizer in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 175,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (512,\n",
+ " 'LEAGUE HELLFIGHTERS',\n",
+ " 'A Thoughtful Saga of a A Shark And a Monkey who must Outgun a Student in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 110,\n",
+ " Decimal('25.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (513,\n",
+ " 'LEATHERNECKS DWARFS',\n",
+ " 'A Fateful Reflection of a Dog And a Mad Cow who must Outrace a Teacher in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 153,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (514,\n",
+ " 'LEBOWSKI SOLDIERS',\n",
+ " 'A Beautiful Epistle of a Secret Agent And a Pioneer who must Chase a Astronaut in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 69,\n",
+ " Decimal('17.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (515,\n",
+ " 'LEGALLY SECRETARY',\n",
+ " 'A Astounding Tale of a A Shark And a Moose who must Meet a Womanizer in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 113,\n",
+ " Decimal('14.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (516,\n",
+ " 'LEGEND JEDI',\n",
+ " 'A Awe-Inspiring Epistle of a Pioneer And a Student who must Outgun a Crocodile in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 59,\n",
+ " Decimal('18.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (517,\n",
+ " 'LESSON CLEOPATRA',\n",
+ " 'A Emotional Display of a Man And a Explorer who must Build a Boy in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 167,\n",
+ " Decimal('28.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (518,\n",
+ " 'LIAISONS SWEET',\n",
+ " 'A Boring Drama of a A Shark And a Explorer who must Redeem a Waitress in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 140,\n",
+ " Decimal('15.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (519,\n",
+ " 'LIBERTY MAGNIFICENT',\n",
+ " 'A Boring Drama of a Student And a Cat who must Sink a Technical Writer in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 138,\n",
+ " Decimal('27.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (520,\n",
+ " 'LICENSE WEEKEND',\n",
+ " 'A Insightful Story of a Man And a Husband who must Overcome a Madman in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 91,\n",
+ " Decimal('28.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (521,\n",
+ " 'LIES TREATMENT',\n",
+ " 'A Fast-Paced Character Study of a Dentist And a Moose who must Defeat a Composer in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 147,\n",
+ " Decimal('28.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (522,\n",
+ " 'LIFE TWISTED',\n",
+ " 'A Thrilling Reflection of a Teacher And a Composer who must Find a Man in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 137,\n",
+ " Decimal('9.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (523,\n",
+ " 'LIGHTS DEER',\n",
+ " 'A Unbelieveable Epistle of a Dog And a Woman who must Confront a Moose in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 174,\n",
+ " Decimal('21.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (524,\n",
+ " 'LION UNCUT',\n",
+ " 'A Intrepid Display of a Pastry Chef And a Cat who must Kill a A Shark in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 50,\n",
+ " Decimal('13.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (525,\n",
+ " 'LOATHING LEGALLY',\n",
+ " 'A Boring Epistle of a Pioneer And a Mad Scientist who must Escape a Frisbee in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 140,\n",
+ " Decimal('29.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (526,\n",
+ " 'LOCK REAR',\n",
+ " 'A Thoughtful Character Study of a Squirrel And a Technical Writer who must Outrace a Student in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 120,\n",
+ " Decimal('10.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (527,\n",
+ " 'LOLA AGENT',\n",
+ " 'A Astounding Tale of a Mad Scientist And a Husband who must Redeem a Database Administrator in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 85,\n",
+ " Decimal('24.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (528,\n",
+ " 'LOLITA WORLD',\n",
+ " 'A Thrilling Drama of a Girl And a Robot who must Redeem a Waitress in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 155,\n",
+ " Decimal('25.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (529,\n",
+ " 'LONELY ELEPHANT',\n",
+ " 'A Intrepid Story of a Student And a Dog who must Challenge a Explorer in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 67,\n",
+ " Decimal('12.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (530,\n",
+ " 'LORD ARIZONA',\n",
+ " 'A Action-Packed Display of a Frisbee And a Pastry Chef who must Pursue a Crocodile in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 108,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (531,\n",
+ " 'LOSE INCH',\n",
+ " 'A Stunning Reflection of a Student And a Technical Writer who must Battle a Butler in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 137,\n",
+ " Decimal('18.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (532,\n",
+ " 'LOSER HUSTLER',\n",
+ " 'A Stunning Drama of a Robot And a Feminist who must Outgun a Butler in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 80,\n",
+ " Decimal('28.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (533,\n",
+ " 'LOST BIRD',\n",
+ " 'A Emotional Character Study of a Robot And a A Shark who must Defeat a Technical Writer in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 98,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (534,\n",
+ " 'LOUISIANA HARRY',\n",
+ " 'A Lacklusture Drama of a Girl And a Technical Writer who must Redeem a Monkey in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 70,\n",
+ " Decimal('18.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (535,\n",
+ " 'LOVE SUICIDES',\n",
+ " 'A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 181,\n",
+ " Decimal('21.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (536,\n",
+ " 'LOVELY JINGLE',\n",
+ " 'A Fanciful Yarn of a Crocodile And a Forensic Psychologist who must Discover a Crocodile in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 65,\n",
+ " Decimal('18.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (537,\n",
+ " 'LOVER TRUMAN',\n",
+ " 'A Emotional Yarn of a Robot And a Boy who must Outgun a Technical Writer in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 75,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (538,\n",
+ " 'LOVERBOY ATTACKS',\n",
+ " 'A Boring Story of a Car And a Butler who must Build a Girl in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 162,\n",
+ " Decimal('19.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (539,\n",
+ " 'LUCK OPUS',\n",
+ " 'A Boring Display of a Moose And a Squirrel who must Outrace a Teacher in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 152,\n",
+ " Decimal('21.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (540,\n",
+ " 'LUCKY FLYING',\n",
+ " 'A Lacklusture Character Study of a A Shark And a Man who must Find a Forensic Psychologist in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 97,\n",
+ " Decimal('10.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (541,\n",
+ " 'LUKE MUMMY',\n",
+ " 'A Taut Character Study of a Boy And a Robot who must Redeem a Mad Scientist in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 74,\n",
+ " Decimal('21.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (542,\n",
+ " 'LUST LOCK',\n",
+ " 'A Fanciful Panorama of a Hunter And a Dentist who must Meet a Secret Agent in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 52,\n",
+ " Decimal('28.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (543,\n",
+ " 'MADIGAN DORADO',\n",
+ " 'A Astounding Character Study of a A Shark And a A Shark who must Discover a Crocodile in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 116,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (544,\n",
+ " 'MADISON TRAP',\n",
+ " 'A Awe-Inspiring Reflection of a Monkey And a Dentist who must Overcome a Pioneer in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 147,\n",
+ " Decimal('11.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (545,\n",
+ " 'MADNESS ATTACKS',\n",
+ " 'A Fanciful Tale of a Squirrel And a Boat who must Defeat a Crocodile in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 178,\n",
+ " Decimal('14.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (546,\n",
+ " 'MADRE GABLES',\n",
+ " 'A Intrepid Panorama of a Sumo Wrestler And a Forensic Psychologist who must Discover a Moose in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 98,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (547,\n",
+ " 'MAGIC MALLRATS',\n",
+ " 'A Touching Documentary of a Pastry Chef And a Pastry Chef who must Build a Mad Scientist in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 117,\n",
+ " Decimal('19.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (548,\n",
+ " 'MAGNIFICENT CHITTY',\n",
+ " 'A Insightful Story of a Teacher And a Hunter who must Face a Mad Cow in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 53,\n",
+ " Decimal('27.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (549,\n",
+ " 'MAGNOLIA FORRESTER',\n",
+ " 'A Thoughtful Documentary of a Composer And a Explorer who must Conquer a Dentist in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 171,\n",
+ " Decimal('28.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (550,\n",
+ " 'MAGUIRE APACHE',\n",
+ " 'A Fast-Paced Reflection of a Waitress And a Hunter who must Defeat a Forensic Psychologist in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 74,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (551,\n",
+ " 'MAIDEN HOME',\n",
+ " 'A Lacklusture Saga of a Moose And a Teacher who must Kill a Forensic Psychologist in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 138,\n",
+ " Decimal('9.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (552,\n",
+ " 'MAJESTIC FLOATS',\n",
+ " 'A Thrilling Character Study of a Moose And a Student who must Escape a Butler in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 130,\n",
+ " Decimal('15.99'),\n",
+ " 'PG',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (553,\n",
+ " 'MAKER GABLES',\n",
+ " 'A Stunning Display of a Moose And a Database Administrator who must Pursue a Composer in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 136,\n",
+ " Decimal('12.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (554,\n",
+ " 'MALKOVICH PET',\n",
+ " 'A Intrepid Reflection of a Waitress And a A Shark who must Kill a Squirrel in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 159,\n",
+ " Decimal('22.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (555,\n",
+ " 'MALLRATS UNITED',\n",
+ " 'A Thrilling Yarn of a Waitress And a Dentist who must Find a Hunter in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 133,\n",
+ " Decimal('25.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (556,\n",
+ " 'MALTESE HOPE',\n",
+ " 'A Fast-Paced Documentary of a Crocodile And a Sumo Wrestler who must Conquer a Explorer in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 127,\n",
+ " Decimal('26.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (557,\n",
+ " 'MANCHURIAN CURTAIN',\n",
+ " 'A Stunning Tale of a Mad Cow And a Boy who must Battle a Boy in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 177,\n",
+ " Decimal('27.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (558,\n",
+ " 'MANNEQUIN WORST',\n",
+ " 'A Astounding Saga of a Mad Cow And a Pastry Chef who must Discover a Husband in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 71,\n",
+ " Decimal('18.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (559,\n",
+ " 'MARRIED GO',\n",
+ " 'A Fanciful Story of a Womanizer And a Dog who must Face a Forensic Psychologist in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 114,\n",
+ " Decimal('22.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (560,\n",
+ " 'MARS ROMAN',\n",
+ " 'A Boring Drama of a Car And a Dog who must Succumb a Madman in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 62,\n",
+ " Decimal('21.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (561,\n",
+ " 'MASK PEACH',\n",
+ " 'A Boring Character Study of a Student And a Robot who must Meet a Woman in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 123,\n",
+ " Decimal('26.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (562,\n",
+ " 'MASKED BUBBLE',\n",
+ " 'A Fanciful Documentary of a Pioneer And a Boat who must Pursue a Pioneer in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 151,\n",
+ " Decimal('12.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (563,\n",
+ " 'MASSACRE USUAL',\n",
+ " 'A Fateful Reflection of a Waitress And a Crocodile who must Challenge a Forensic Psychologist in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 165,\n",
+ " Decimal('16.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (564,\n",
+ " 'MASSAGE IMAGE',\n",
+ " 'A Fateful Drama of a Frisbee And a Crocodile who must Vanquish a Dog in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 161,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (565,\n",
+ " 'MATRIX SNOWMAN',\n",
+ " 'A Action-Packed Saga of a Womanizer And a Woman who must Overcome a Student in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 56,\n",
+ " Decimal('9.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (566,\n",
+ " 'MAUDE MOD',\n",
+ " 'A Beautiful Documentary of a Forensic Psychologist And a Cat who must Reach a Astronaut in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 72,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (567,\n",
+ " 'MEET CHOCOLATE',\n",
+ " 'A Boring Documentary of a Dentist And a Butler who must Confront a Monkey in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 80,\n",
+ " Decimal('26.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (568,\n",
+ " 'MEMENTO ZOOLANDER',\n",
+ " 'A Touching Epistle of a Squirrel And a Explorer who must Redeem a Pastry Chef in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 77,\n",
+ " Decimal('11.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (569,\n",
+ " 'MENAGERIE RUSHMORE',\n",
+ " 'A Unbelieveable Panorama of a Composer And a Butler who must Overcome a Database Administrator in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 147,\n",
+ " Decimal('18.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (570,\n",
+ " 'MERMAID INSECTS',\n",
+ " 'A Lacklusture Drama of a Waitress And a Husband who must Fight a Husband in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 104,\n",
+ " Decimal('20.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (571,\n",
+ " 'METAL ARMAGEDDON',\n",
+ " 'A Thrilling Display of a Lumberjack And a Crocodile who must Meet a Monkey in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 161,\n",
+ " Decimal('26.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (572,\n",
+ " 'METROPOLIS COMA',\n",
+ " 'A Emotional Saga of a Database Administrator And a Pastry Chef who must Confront a Teacher in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 64,\n",
+ " Decimal('9.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (573,\n",
+ " 'MICROCOSMOS PARADISE',\n",
+ " 'A Touching Character Study of a Boat And a Student who must Sink a A Shark in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 105,\n",
+ " Decimal('22.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (574,\n",
+ " 'MIDNIGHT WESTWARD',\n",
+ " 'A Taut Reflection of a Husband And a A Shark who must Redeem a Pastry Chef in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 86,\n",
+ " Decimal('19.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (575,\n",
+ " 'MIDSUMMER GROUNDHOG',\n",
+ " 'A Fateful Panorama of a Moose And a Dog who must Chase a Crocodile in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 48,\n",
+ " Decimal('27.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (576,\n",
+ " 'MIGHTY LUCK',\n",
+ " 'A Astounding Epistle of a Mad Scientist And a Pioneer who must Escape a Database Administrator in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 122,\n",
+ " Decimal('13.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (577,\n",
+ " 'MILE MULAN',\n",
+ " 'A Lacklusture Epistle of a Cat And a Husband who must Confront a Boy in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 64,\n",
+ " Decimal('10.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (578,\n",
+ " 'MILLION ACE',\n",
+ " 'A Brilliant Documentary of a Womanizer And a Squirrel who must Find a Technical Writer in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 142,\n",
+ " Decimal('16.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (579,\n",
+ " 'MINDS TRUMAN',\n",
+ " 'A Taut Yarn of a Mad Scientist And a Crocodile who must Outgun a Database Administrator in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 149,\n",
+ " Decimal('22.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (580,\n",
+ " 'MINE TITANS',\n",
+ " 'A Amazing Yarn of a Robot And a Womanizer who must Discover a Forensic Psychologist in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 166,\n",
+ " Decimal('12.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (581,\n",
+ " 'MINORITY KISS',\n",
+ " 'A Insightful Display of a Lumberjack And a Sumo Wrestler who must Meet a Man in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 59,\n",
+ " Decimal('16.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (582,\n",
+ " 'MIRACLE VIRTUAL',\n",
+ " 'A Touching Epistle of a Butler And a Boy who must Find a Mad Scientist in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 162,\n",
+ " Decimal('19.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (583,\n",
+ " 'MISSION ZOOLANDER',\n",
+ " 'A Intrepid Story of a Sumo Wrestler And a Teacher who must Meet a A Shark in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 164,\n",
+ " Decimal('26.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (584,\n",
+ " 'MIXED DOORS',\n",
+ " 'A Taut Drama of a Womanizer And a Lumberjack who must Succumb a Pioneer in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 180,\n",
+ " Decimal('26.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (585,\n",
+ " 'MOB DUFFEL',\n",
+ " 'A Unbelieveable Documentary of a Frisbee And a Boat who must Meet a Boy in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 105,\n",
+ " Decimal('25.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (586,\n",
+ " 'MOCKINGBIRD HOLLYWOOD',\n",
+ " 'A Thoughtful Panorama of a Man And a Car who must Sink a Composer in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 60,\n",
+ " Decimal('27.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (587,\n",
+ " 'MOD SECRETARY',\n",
+ " 'A Boring Documentary of a Mad Cow And a Cat who must Build a Lumberjack in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 77,\n",
+ " Decimal('20.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (588,\n",
+ " 'MODEL FISH',\n",
+ " 'A Beautiful Panorama of a Boat And a Crocodile who must Outrace a Dog in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 175,\n",
+ " Decimal('11.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (589,\n",
+ " 'MODERN DORADO',\n",
+ " 'A Awe-Inspiring Story of a Butler And a Sumo Wrestler who must Redeem a Boy in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 74,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (590,\n",
+ " 'MONEY HAROLD',\n",
+ " 'A Touching Tale of a Explorer And a Boat who must Defeat a Robot in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 135,\n",
+ " Decimal('17.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (591,\n",
+ " 'MONSOON CAUSE',\n",
+ " 'A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 182,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (592,\n",
+ " 'MONSTER SPARTACUS',\n",
+ " 'A Fast-Paced Story of a Waitress And a Cat who must Fight a Girl in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 107,\n",
+ " Decimal('28.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (593,\n",
+ " 'MONTEREY LABYRINTH',\n",
+ " 'A Awe-Inspiring Drama of a Monkey And a Composer who must Escape a Feminist in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 158,\n",
+ " Decimal('13.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (594,\n",
+ " 'MONTEZUMA COMMAND',\n",
+ " 'A Thrilling Reflection of a Waitress And a Butler who must Battle a Butler in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 126,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (595,\n",
+ " 'MOON BUNCH',\n",
+ " 'A Beautiful Tale of a Astronaut And a Mad Cow who must Challenge a Cat in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 83,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (596,\n",
+ " 'MOONSHINE CABIN',\n",
+ " 'A Thoughtful Display of a Astronaut And a Feminist who must Chase a Frisbee in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 171,\n",
+ " Decimal('25.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (597,\n",
+ " 'MOONWALKER FOOL',\n",
+ " 'A Epic Drama of a Feminist And a Pioneer who must Sink a Composer in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 184,\n",
+ " Decimal('12.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (598,\n",
+ " 'MOSQUITO ARMAGEDDON',\n",
+ " 'A Thoughtful Character Study of a Waitress And a Feminist who must Build a Teacher in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 57,\n",
+ " Decimal('22.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (599,\n",
+ " 'MOTHER OLEANDER',\n",
+ " 'A Boring Tale of a Husband And a Boy who must Fight a Squirrel in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 103,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (600,\n",
+ " 'MOTIONS DETAILS',\n",
+ " 'A Awe-Inspiring Reflection of a Dog And a Student who must Kill a Car in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 166,\n",
+ " Decimal('16.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (601,\n",
+ " 'MOULIN WAKE',\n",
+ " 'A Astounding Story of a Forensic Psychologist And a Cat who must Battle a Teacher in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 79,\n",
+ " Decimal('20.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (602,\n",
+ " 'MOURNING PURPLE',\n",
+ " 'A Lacklusture Display of a Waitress And a Lumberjack who must Chase a Pioneer in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 146,\n",
+ " Decimal('14.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (603,\n",
+ " 'MOVIE SHAKESPEARE',\n",
+ " 'A Insightful Display of a Database Administrator And a Student who must Build a Hunter in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 53,\n",
+ " Decimal('27.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (604,\n",
+ " 'MULAN MOON',\n",
+ " 'A Emotional Saga of a Womanizer And a Pioneer who must Overcome a Dentist in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 160,\n",
+ " Decimal('10.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (605,\n",
+ " 'MULHOLLAND BEAST',\n",
+ " 'A Awe-Inspiring Display of a Husband And a Squirrel who must Battle a Sumo Wrestler in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 157,\n",
+ " Decimal('13.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (606,\n",
+ " 'MUMMY CREATURES',\n",
+ " 'A Fateful Character Study of a Crocodile And a Monkey who must Meet a Dentist in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 160,\n",
+ " Decimal('15.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (607,\n",
+ " 'MUPPET MILE',\n",
+ " 'A Lacklusture Story of a Madman And a Teacher who must Kill a Frisbee in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 50,\n",
+ " Decimal('18.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (608,\n",
+ " 'MURDER ANTITRUST',\n",
+ " 'A Brilliant Yarn of a Car And a Database Administrator who must Escape a Boy in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 166,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (609,\n",
+ " 'MUSCLE BRIGHT',\n",
+ " 'A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 185,\n",
+ " Decimal('23.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (610,\n",
+ " 'MUSIC BOONDOCK',\n",
+ " 'A Thrilling Tale of a Butler And a Astronaut who must Battle a Explorer in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 129,\n",
+ " Decimal('17.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (611,\n",
+ " 'MUSKETEERS WAIT',\n",
+ " 'A Touching Yarn of a Student And a Moose who must Fight a Mad Cow in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 73,\n",
+ " Decimal('17.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (612,\n",
+ " 'MUSSOLINI SPOILERS',\n",
+ " 'A Thrilling Display of a Boat And a Monkey who must Meet a Composer in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 180,\n",
+ " Decimal('10.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (613,\n",
+ " 'MYSTIC TRUMAN',\n",
+ " 'A Epic Yarn of a Teacher And a Hunter who must Outgun a Explorer in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 92,\n",
+ " Decimal('19.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (614,\n",
+ " 'NAME DETECTIVE',\n",
+ " 'A Touching Saga of a Sumo Wrestler And a Cat who must Pursue a Mad Scientist in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 178,\n",
+ " Decimal('11.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (615,\n",
+ " 'NASH CHOCOLAT',\n",
+ " 'A Epic Reflection of a Monkey And a Mad Cow who must Kill a Forensic Psychologist in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 180,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (616,\n",
+ " 'NATIONAL STORY',\n",
+ " 'A Taut Epistle of a Mad Scientist And a Girl who must Escape a Monkey in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 92,\n",
+ " Decimal('19.99'),\n",
+ " 'NC-17',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (617,\n",
+ " 'NATURAL STOCK',\n",
+ " 'A Fast-Paced Story of a Sumo Wrestler And a Girl who must Defeat a Car in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 50,\n",
+ " Decimal('24.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (618,\n",
+ " 'NECKLACE OUTBREAK',\n",
+ " 'A Astounding Epistle of a Database Administrator And a Mad Scientist who must Pursue a Cat in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 132,\n",
+ " Decimal('21.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (619,\n",
+ " 'NEIGHBORS CHARADE',\n",
+ " 'A Fanciful Reflection of a Crocodile And a Astronaut who must Outrace a Feminist in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 161,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (620,\n",
+ " 'NEMO CAMPUS',\n",
+ " 'A Lacklusture Reflection of a Monkey And a Squirrel who must Outrace a Womanizer in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 131,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (621,\n",
+ " 'NETWORK PEAK',\n",
+ " 'A Unbelieveable Reflection of a Butler And a Boat who must Outgun a Mad Scientist in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 75,\n",
+ " Decimal('23.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (622,\n",
+ " 'NEWSIES STORY',\n",
+ " 'A Action-Packed Character Study of a Dog And a Lumberjack who must Outrace a Moose in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 159,\n",
+ " Decimal('25.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (623,\n",
+ " 'NEWTON LABYRINTH',\n",
+ " 'A Intrepid Character Study of a Moose And a Waitress who must Find a A Shark in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 75,\n",
+ " Decimal('9.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (624,\n",
+ " 'NIGHTMARE CHILL',\n",
+ " 'A Brilliant Display of a Robot And a Butler who must Fight a Waitress in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 149,\n",
+ " Decimal('25.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (625,\n",
+ " 'NONE SPIKING',\n",
+ " 'A Boring Reflection of a Secret Agent And a Astronaut who must Face a Composer in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 83,\n",
+ " Decimal('18.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (626,\n",
+ " 'NOON PAPI',\n",
+ " 'A Unbelieveable Character Study of a Mad Scientist And a Astronaut who must Find a Pioneer in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 57,\n",
+ " Decimal('12.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (627,\n",
+ " 'NORTH TEQUILA',\n",
+ " 'A Beautiful Character Study of a Mad Cow And a Robot who must Reach a Womanizer in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 67,\n",
+ " Decimal('9.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (628,\n",
+ " 'NORTHWEST POLISH',\n",
+ " 'A Boring Character Study of a Boy And a A Shark who must Outrace a Womanizer in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 172,\n",
+ " Decimal('24.99'),\n",
+ " 'PG',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (629,\n",
+ " 'NOTORIOUS REUNION',\n",
+ " 'A Amazing Epistle of a Woman And a Squirrel who must Fight a Hunter in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 128,\n",
+ " Decimal('9.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (630,\n",
+ " 'NOTTING SPEAKEASY',\n",
+ " 'A Thoughtful Display of a Butler And a Womanizer who must Find a Waitress in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 48,\n",
+ " Decimal('19.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (631,\n",
+ " 'NOVOCAINE FLIGHT',\n",
+ " 'A Fanciful Display of a Student And a Teacher who must Outgun a Crocodile in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 64,\n",
+ " Decimal('11.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (632,\n",
+ " 'NUTS TIES',\n",
+ " 'A Thoughtful Drama of a Explorer And a Womanizer who must Meet a Teacher in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 145,\n",
+ " Decimal('10.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (633,\n",
+ " 'OCTOBER SUBMARINE',\n",
+ " 'A Taut Epistle of a Monkey And a Boy who must Confront a Husband in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 54,\n",
+ " Decimal('10.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (634,\n",
+ " 'ODDS BOOGIE',\n",
+ " 'A Thrilling Yarn of a Feminist And a Madman who must Battle a Hunter in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 48,\n",
+ " Decimal('14.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (635,\n",
+ " 'OKLAHOMA JUMANJI',\n",
+ " 'A Thoughtful Drama of a Dentist And a Womanizer who must Meet a Husband in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 58,\n",
+ " Decimal('15.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (636,\n",
+ " 'OLEANDER CLUE',\n",
+ " 'A Boring Story of a Teacher And a Monkey who must Succumb a Forensic Psychologist in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 161,\n",
+ " Decimal('12.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (637,\n",
+ " 'OPEN AFRICAN',\n",
+ " 'A Lacklusture Drama of a Secret Agent And a Explorer who must Discover a Car in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 131,\n",
+ " Decimal('16.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (638,\n",
+ " 'OPERATION OPERATION',\n",
+ " 'A Intrepid Character Study of a Man And a Frisbee who must Overcome a Madman in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 156,\n",
+ " Decimal('23.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (639,\n",
+ " 'OPPOSITE NECKLACE',\n",
+ " 'A Fateful Epistle of a Crocodile And a Moose who must Kill a Explorer in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 92,\n",
+ " Decimal('9.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (640,\n",
+ " 'OPUS ICE',\n",
+ " 'A Fast-Paced Drama of a Hunter And a Boy who must Discover a Feminist in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 102,\n",
+ " Decimal('21.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (641,\n",
+ " 'ORANGE GRAPES',\n",
+ " 'A Astounding Documentary of a Butler And a Womanizer who must Face a Dog in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 76,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (642,\n",
+ " 'ORDER BETRAYED',\n",
+ " 'A Amazing Saga of a Dog And a A Shark who must Challenge a Cat in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 120,\n",
+ " Decimal('13.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (643,\n",
+ " 'ORIENT CLOSER',\n",
+ " 'A Astounding Epistle of a Technical Writer And a Teacher who must Fight a Squirrel in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 118,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (644,\n",
+ " 'OSCAR GOLD',\n",
+ " 'A Insightful Tale of a Database Administrator And a Dog who must Face a Madman in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 115,\n",
+ " Decimal('29.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (645,\n",
+ " 'OTHERS SOUP',\n",
+ " 'A Lacklusture Documentary of a Mad Cow And a Madman who must Sink a Moose in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 118,\n",
+ " Decimal('18.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (646,\n",
+ " 'OUTBREAK DIVINE',\n",
+ " 'A Unbelieveable Yarn of a Database Administrator And a Woman who must Succumb a A Shark in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 169,\n",
+ " Decimal('12.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (647,\n",
+ " 'OUTFIELD MASSACRE',\n",
+ " 'A Thoughtful Drama of a Husband And a Secret Agent who must Pursue a Database Administrator in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 129,\n",
+ " Decimal('18.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (648,\n",
+ " 'OUTLAW HANKY',\n",
+ " 'A Thoughtful Story of a Astronaut And a Composer who must Conquer a Dog in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 148,\n",
+ " Decimal('17.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (649,\n",
+ " 'OZ LIAISONS',\n",
+ " 'A Epic Yarn of a Mad Scientist And a Cat who must Confront a Womanizer in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 85,\n",
+ " Decimal('14.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (650,\n",
+ " 'PACIFIC AMISTAD',\n",
+ " 'A Thrilling Yarn of a Dog And a Moose who must Kill a Pastry Chef in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 144,\n",
+ " Decimal('27.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (651,\n",
+ " 'PACKER MADIGAN',\n",
+ " 'A Epic Display of a Sumo Wrestler And a Forensic Psychologist who must Build a Woman in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 84,\n",
+ " Decimal('20.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (652,\n",
+ " 'PAJAMA JAWBREAKER',\n",
+ " 'A Emotional Drama of a Boy And a Technical Writer who must Redeem a Sumo Wrestler in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 126,\n",
+ " Decimal('14.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (653,\n",
+ " 'PANIC CLUB',\n",
+ " 'A Fanciful Display of a Teacher And a Crocodile who must Succumb a Girl in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 102,\n",
+ " Decimal('15.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (654,\n",
+ " 'PANKY SUBMARINE',\n",
+ " 'A Touching Documentary of a Dentist And a Sumo Wrestler who must Overcome a Boy in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 93,\n",
+ " Decimal('19.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (655,\n",
+ " 'PANTHER REDS',\n",
+ " 'A Brilliant Panorama of a Moose And a Man who must Reach a Teacher in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 109,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (656,\n",
+ " 'PAPI NECKLACE',\n",
+ " 'A Fanciful Display of a Car And a Monkey who must Escape a Squirrel in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 128,\n",
+ " Decimal('9.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (657,\n",
+ " 'PARADISE SABRINA',\n",
+ " 'A Intrepid Yarn of a Car And a Moose who must Outrace a Crocodile in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 48,\n",
+ " Decimal('12.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (658,\n",
+ " 'PARIS WEEKEND',\n",
+ " 'A Intrepid Story of a Squirrel And a Crocodile who must Defeat a Monkey in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 121,\n",
+ " Decimal('19.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (659,\n",
+ " 'PARK CITIZEN',\n",
+ " 'A Taut Epistle of a Sumo Wrestler And a Girl who must Face a Husband in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 109,\n",
+ " Decimal('14.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (660,\n",
+ " 'PARTY KNOCK',\n",
+ " 'A Fateful Display of a Technical Writer And a Butler who must Battle a Sumo Wrestler in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 107,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (661,\n",
+ " 'PAST SUICIDES',\n",
+ " 'A Intrepid Tale of a Madman And a Astronaut who must Challenge a Hunter in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 157,\n",
+ " Decimal('17.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (662,\n",
+ " 'PATHS CONTROL',\n",
+ " 'A Astounding Documentary of a Butler And a Cat who must Find a Frisbee in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 118,\n",
+ " Decimal('9.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (663,\n",
+ " 'PATIENT SISTER',\n",
+ " 'A Emotional Epistle of a Squirrel And a Robot who must Confront a Lumberjack in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 99,\n",
+ " Decimal('29.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (664,\n",
+ " 'PATRIOT ROMAN',\n",
+ " 'A Taut Saga of a Robot And a Database Administrator who must Challenge a Astronaut in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 65,\n",
+ " Decimal('12.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (665,\n",
+ " 'PATTON INTERVIEW',\n",
+ " 'A Thrilling Documentary of a Composer And a Secret Agent who must Succumb a Cat in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 175,\n",
+ " Decimal('22.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (666,\n",
+ " 'PAYCHECK WAIT',\n",
+ " 'A Awe-Inspiring Reflection of a Boy And a Man who must Discover a Moose in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 145,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (667,\n",
+ " 'PEACH INNOCENT',\n",
+ " 'A Action-Packed Drama of a Monkey And a Dentist who must Chase a Butler in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 160,\n",
+ " Decimal('20.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (668,\n",
+ " 'PEAK FOREVER',\n",
+ " 'A Insightful Reflection of a Boat And a Secret Agent who must Vanquish a Astronaut in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 80,\n",
+ " Decimal('25.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (669,\n",
+ " 'PEARL DESTINY',\n",
+ " 'A Lacklusture Yarn of a Astronaut And a Pastry Chef who must Sink a Dog in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 74,\n",
+ " Decimal('10.99'),\n",
+ " 'NC-17',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (670,\n",
+ " 'PELICAN COMFORTS',\n",
+ " 'A Epic Documentary of a Boy And a Monkey who must Pursue a Astronaut in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 48,\n",
+ " Decimal('17.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (671,\n",
+ " 'PERDITION FARGO',\n",
+ " 'A Fast-Paced Story of a Car And a Cat who must Outgun a Hunter in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 99,\n",
+ " Decimal('27.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (672,\n",
+ " 'PERFECT GROOVE',\n",
+ " 'A Thrilling Yarn of a Dog And a Dog who must Build a Husband in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 82,\n",
+ " Decimal('17.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (673,\n",
+ " 'PERSONAL LADYBUGS',\n",
+ " 'A Epic Saga of a Hunter And a Technical Writer who must Conquer a Cat in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 118,\n",
+ " Decimal('19.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (674,\n",
+ " 'PET HAUNTING',\n",
+ " 'A Unbelieveable Reflection of a Explorer And a Boat who must Conquer a Woman in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 99,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (675,\n",
+ " 'PHANTOM GLORY',\n",
+ " 'A Beautiful Documentary of a Astronaut And a Crocodile who must Discover a Madman in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 60,\n",
+ " Decimal('17.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (676,\n",
+ " 'PHILADELPHIA WIFE',\n",
+ " 'A Taut Yarn of a Hunter And a Astronaut who must Conquer a Database Administrator in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 137,\n",
+ " Decimal('16.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (677,\n",
+ " 'PIANIST OUTFIELD',\n",
+ " 'A Intrepid Story of a Boy And a Technical Writer who must Pursue a Lumberjack in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 136,\n",
+ " Decimal('25.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (678,\n",
+ " 'PICKUP DRIVING',\n",
+ " 'A Touching Documentary of a Husband And a Boat who must Meet a Pastry Chef in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 77,\n",
+ " Decimal('23.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (679,\n",
+ " 'PILOT HOOSIERS',\n",
+ " 'A Awe-Inspiring Reflection of a Crocodile And a Sumo Wrestler who must Meet a Forensic Psychologist in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 50,\n",
+ " Decimal('17.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (680,\n",
+ " 'PINOCCHIO SIMON',\n",
+ " 'A Action-Packed Reflection of a Mad Scientist And a A Shark who must Find a Feminist in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 103,\n",
+ " Decimal('21.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (681,\n",
+ " 'PIRATES ROXANNE',\n",
+ " 'A Stunning Drama of a Woman And a Lumberjack who must Overcome a A Shark in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 100,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (682,\n",
+ " 'PITTSBURGH HUNCHBACK',\n",
+ " 'A Thrilling Epistle of a Boy And a Boat who must Find a Student in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 134,\n",
+ " Decimal('17.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (683,\n",
+ " 'PITY BOUND',\n",
+ " 'A Boring Panorama of a Feminist And a Moose who must Defeat a Database Administrator in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 60,\n",
+ " Decimal('19.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (684,\n",
+ " 'PIZZA JUMANJI',\n",
+ " 'A Epic Saga of a Cat And a Squirrel who must Outgun a Robot in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 173,\n",
+ " Decimal('11.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (685,\n",
+ " 'PLATOON INSTINCT',\n",
+ " 'A Thrilling Panorama of a Man And a Woman who must Reach a Woman in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 132,\n",
+ " Decimal('10.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (686,\n",
+ " 'PLUTO OLEANDER',\n",
+ " 'A Action-Packed Reflection of a Car And a Moose who must Outgun a Car in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 84,\n",
+ " Decimal('9.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (687,\n",
+ " 'POCUS PULP',\n",
+ " 'A Intrepid Yarn of a Frisbee And a Dog who must Build a Astronaut in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 138,\n",
+ " Decimal('15.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (688,\n",
+ " 'POLISH BROOKLYN',\n",
+ " 'A Boring Character Study of a Database Administrator And a Lumberjack who must Reach a Madman in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 61,\n",
+ " Decimal('12.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (689,\n",
+ " 'POLLOCK DELIVERANCE',\n",
+ " 'A Intrepid Story of a Madman And a Frisbee who must Outgun a Boat in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 137,\n",
+ " Decimal('14.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (690,\n",
+ " 'POND SEATTLE',\n",
+ " 'A Stunning Drama of a Teacher And a Boat who must Battle a Feminist in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 185,\n",
+ " Decimal('25.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (691,\n",
+ " 'POSEIDON FOREVER',\n",
+ " 'A Thoughtful Epistle of a Womanizer And a Monkey who must Vanquish a Dentist in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 159,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (692,\n",
+ " 'POTLUCK MIXED',\n",
+ " 'A Beautiful Story of a Dog And a Technical Writer who must Outgun a Student in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 179,\n",
+ " Decimal('10.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (693,\n",
+ " 'POTTER CONNECTICUT',\n",
+ " 'A Thrilling Epistle of a Frisbee And a Cat who must Fight a Technical Writer in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 115,\n",
+ " Decimal('16.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (694,\n",
+ " 'PREJUDICE OLEANDER',\n",
+ " 'A Epic Saga of a Boy And a Dentist who must Outrace a Madman in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 98,\n",
+ " Decimal('15.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (695,\n",
+ " 'PRESIDENT BANG',\n",
+ " 'A Fateful Panorama of a Technical Writer And a Moose who must Battle a Robot in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 144,\n",
+ " Decimal('12.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (696,\n",
+ " 'PRIDE ALAMO',\n",
+ " 'A Thoughtful Drama of a A Shark And a Forensic Psychologist who must Vanquish a Student in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 114,\n",
+ " Decimal('20.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (697,\n",
+ " 'PRIMARY GLASS',\n",
+ " 'A Fateful Documentary of a Pastry Chef And a Butler who must Build a Dog in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 53,\n",
+ " Decimal('16.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (698,\n",
+ " 'PRINCESS GIANT',\n",
+ " 'A Thrilling Yarn of a Pastry Chef And a Monkey who must Battle a Monkey in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 71,\n",
+ " Decimal('29.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (699,\n",
+ " 'PRIVATE DROP',\n",
+ " 'A Stunning Story of a Technical Writer And a Hunter who must Succumb a Secret Agent in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 106,\n",
+ " Decimal('26.99'),\n",
+ " 'PG',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (700,\n",
+ " 'PRIX UNDEFEATED',\n",
+ " 'A Stunning Saga of a Mad Scientist And a Boat who must Overcome a Dentist in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 115,\n",
+ " Decimal('13.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (701,\n",
+ " 'PSYCHO SHRUNK',\n",
+ " 'A Amazing Panorama of a Crocodile And a Explorer who must Fight a Husband in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 155,\n",
+ " Decimal('11.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (702,\n",
+ " 'PULP BEVERLY',\n",
+ " 'A Unbelieveable Display of a Dog And a Crocodile who must Outrace a Man in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 89,\n",
+ " Decimal('12.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (703,\n",
+ " 'PUNK DIVORCE',\n",
+ " 'A Fast-Paced Tale of a Pastry Chef And a Boat who must Face a Frisbee in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 100,\n",
+ " Decimal('18.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (704,\n",
+ " 'PURE RUNNER',\n",
+ " 'A Thoughtful Documentary of a Student And a Madman who must Challenge a Squirrel in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 121,\n",
+ " Decimal('25.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (705,\n",
+ " 'PURPLE MOVIE',\n",
+ " 'A Boring Display of a Pastry Chef And a Sumo Wrestler who must Discover a Frisbee in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 88,\n",
+ " Decimal('9.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (706,\n",
+ " 'QUEEN LUKE',\n",
+ " 'A Astounding Story of a Girl And a Boy who must Challenge a Composer in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 163,\n",
+ " Decimal('22.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (707,\n",
+ " 'QUEST MUSSOLINI',\n",
+ " 'A Fateful Drama of a Husband And a Sumo Wrestler who must Battle a Pastry Chef in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 177,\n",
+ " Decimal('29.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (708,\n",
+ " 'QUILLS BULL',\n",
+ " 'A Thoughtful Story of a Pioneer And a Woman who must Reach a Moose in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 112,\n",
+ " Decimal('19.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (709,\n",
+ " 'RACER EGG',\n",
+ " 'A Emotional Display of a Monkey And a Waitress who must Reach a Secret Agent in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 147,\n",
+ " Decimal('19.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (710,\n",
+ " 'RAGE GAMES',\n",
+ " 'A Fast-Paced Saga of a Astronaut And a Secret Agent who must Escape a Hunter in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 120,\n",
+ " Decimal('18.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (711,\n",
+ " 'RAGING AIRPLANE',\n",
+ " 'A Astounding Display of a Secret Agent And a Technical Writer who must Escape a Mad Scientist in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 154,\n",
+ " Decimal('18.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (712,\n",
+ " 'RAIDERS ANTITRUST',\n",
+ " 'A Amazing Drama of a Teacher And a Feminist who must Meet a Woman in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 82,\n",
+ " Decimal('11.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (713,\n",
+ " 'RAINBOW SHOCK',\n",
+ " 'A Action-Packed Story of a Hunter And a Boy who must Discover a Lumberjack in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 74,\n",
+ " Decimal('14.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (714,\n",
+ " 'RANDOM GO',\n",
+ " 'A Fateful Drama of a Frisbee And a Student who must Confront a Cat in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 73,\n",
+ " Decimal('29.99'),\n",
+ " 'NC-17',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (715,\n",
+ " 'RANGE MOONWALKER',\n",
+ " 'A Insightful Documentary of a Hunter And a Dentist who must Confront a Crocodile in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 147,\n",
+ " Decimal('25.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (716,\n",
+ " 'REAP UNFAITHFUL',\n",
+ " 'A Thrilling Epistle of a Composer And a Sumo Wrestler who must Challenge a Mad Cow in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 136,\n",
+ " Decimal('26.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (717,\n",
+ " 'REAR TRADING',\n",
+ " 'A Awe-Inspiring Reflection of a Forensic Psychologist And a Secret Agent who must Succumb a Pastry Chef in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 97,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (718,\n",
+ " 'REBEL AIRPORT',\n",
+ " 'A Intrepid Yarn of a Database Administrator And a Boat who must Outrace a Husband in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 73,\n",
+ " Decimal('24.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (719,\n",
+ " 'RECORDS ZORRO',\n",
+ " 'A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 182,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (720,\n",
+ " 'REDEMPTION COMFORTS',\n",
+ " 'A Emotional Documentary of a Dentist And a Woman who must Battle a Mad Scientist in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 179,\n",
+ " Decimal('20.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (721,\n",
+ " 'REDS POCUS',\n",
+ " 'A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 182,\n",
+ " Decimal('23.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (722,\n",
+ " 'REEF SALUTE',\n",
+ " 'A Action-Packed Saga of a Teacher And a Lumberjack who must Battle a Dentist in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 123,\n",
+ " Decimal('26.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (723,\n",
+ " 'REIGN GENTLEMEN',\n",
+ " 'A Emotional Yarn of a Composer And a Man who must Escape a Butler in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 82,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (724,\n",
+ " 'REMEMBER DIARY',\n",
+ " 'A Insightful Tale of a Technical Writer And a Waitress who must Conquer a Monkey in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 110,\n",
+ " Decimal('15.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (725,\n",
+ " 'REQUIEM TYCOON',\n",
+ " 'A Unbelieveable Character Study of a Cat And a Database Administrator who must Pursue a Teacher in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 167,\n",
+ " Decimal('25.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (726,\n",
+ " 'RESERVOIR ADAPTATION',\n",
+ " 'A Intrepid Drama of a Teacher And a Moose who must Kill a Car in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 61,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (727,\n",
+ " 'RESURRECTION SILVERADO',\n",
+ " 'A Epic Yarn of a Robot And a Explorer who must Challenge a Girl in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 117,\n",
+ " Decimal('12.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (728,\n",
+ " 'REUNION WITCHES',\n",
+ " 'A Unbelieveable Documentary of a Database Administrator And a Frisbee who must Redeem a Mad Scientist in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 63,\n",
+ " Decimal('26.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (729,\n",
+ " 'RIDER CADDYSHACK',\n",
+ " 'A Taut Reflection of a Monkey And a Womanizer who must Chase a Moose in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 177,\n",
+ " Decimal('28.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (730,\n",
+ " 'RIDGEMONT SUBMARINE',\n",
+ " 'A Unbelieveable Drama of a Waitress And a Composer who must Sink a Mad Cow in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 46,\n",
+ " Decimal('28.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (731,\n",
+ " 'RIGHT CRANES',\n",
+ " 'A Fateful Character Study of a Boat And a Cat who must Find a Database Administrator in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 153,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (732,\n",
+ " 'RINGS HEARTBREAKERS',\n",
+ " 'A Amazing Yarn of a Sumo Wrestler And a Boat who must Conquer a Waitress in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 58,\n",
+ " Decimal('17.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (733,\n",
+ " 'RIVER OUTLAW',\n",
+ " 'A Thrilling Character Study of a Squirrel And a Lumberjack who must Face a Hunter in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 149,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (734,\n",
+ " 'ROAD ROXANNE',\n",
+ " 'A Boring Character Study of a Waitress And a Astronaut who must Fight a Crocodile in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 158,\n",
+ " Decimal('12.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (735,\n",
+ " 'ROBBERS JOON',\n",
+ " 'A Thoughtful Story of a Mad Scientist And a Waitress who must Confront a Forensic Psychologist in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 102,\n",
+ " Decimal('26.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (736,\n",
+ " 'ROBBERY BRIGHT',\n",
+ " 'A Taut Reflection of a Robot And a Squirrel who must Fight a Boat in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 134,\n",
+ " Decimal('21.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (737,\n",
+ " 'ROCK INSTINCT',\n",
+ " 'A Astounding Character Study of a Robot And a Moose who must Overcome a Astronaut in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 102,\n",
+ " Decimal('28.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (738,\n",
+ " 'ROCKETEER MOTHER',\n",
+ " 'A Awe-Inspiring Character Study of a Robot And a Sumo Wrestler who must Discover a Womanizer in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 178,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (739,\n",
+ " 'ROCKY WAR',\n",
+ " 'A Fast-Paced Display of a Squirrel And a Explorer who must Outgun a Mad Scientist in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 145,\n",
+ " Decimal('17.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (740,\n",
+ " 'ROLLERCOASTER BRINGING',\n",
+ " 'A Beautiful Drama of a Robot And a Lumberjack who must Discover a Technical Writer in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 153,\n",
+ " Decimal('13.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (741,\n",
+ " 'ROMAN PUNK',\n",
+ " 'A Thoughtful Panorama of a Mad Cow And a Student who must Battle a Forensic Psychologist in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 81,\n",
+ " Decimal('28.99'),\n",
+ " 'NC-17',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (742,\n",
+ " 'ROOF CHAMPION',\n",
+ " 'A Lacklusture Reflection of a Car And a Explorer who must Find a Monkey in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 101,\n",
+ " Decimal('25.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (743,\n",
+ " 'ROOM ROMAN',\n",
+ " 'A Awe-Inspiring Panorama of a Composer And a Secret Agent who must Sink a Composer in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 60,\n",
+ " Decimal('27.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (744,\n",
+ " 'ROOTS REMEMBER',\n",
+ " 'A Brilliant Drama of a Mad Cow And a Hunter who must Escape a Hunter in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 89,\n",
+ " Decimal('23.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (745,\n",
+ " 'ROSES TREASURE',\n",
+ " 'A Astounding Panorama of a Monkey And a Secret Agent who must Defeat a Woman in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 162,\n",
+ " Decimal('23.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (746,\n",
+ " 'ROUGE SQUAD',\n",
+ " 'A Awe-Inspiring Drama of a Astronaut And a Frisbee who must Conquer a Mad Scientist in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 118,\n",
+ " Decimal('10.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (747,\n",
+ " 'ROXANNE REBEL',\n",
+ " 'A Astounding Story of a Pastry Chef And a Database Administrator who must Fight a Man in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 171,\n",
+ " Decimal('9.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (748,\n",
+ " 'RUGRATS SHAKESPEARE',\n",
+ " 'A Touching Saga of a Crocodile And a Crocodile who must Discover a Technical Writer in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 109,\n",
+ " Decimal('16.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (749,\n",
+ " 'RULES HUMAN',\n",
+ " 'A Beautiful Epistle of a Astronaut And a Student who must Confront a Monkey in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 153,\n",
+ " Decimal('19.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (750,\n",
+ " 'RUN PACIFIC',\n",
+ " 'A Touching Tale of a Cat And a Pastry Chef who must Conquer a Pastry Chef in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 145,\n",
+ " Decimal('25.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (751,\n",
+ " 'RUNAWAY TENENBAUMS',\n",
+ " 'A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 181,\n",
+ " Decimal('17.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (752,\n",
+ " 'RUNNER MADIGAN',\n",
+ " 'A Thoughtful Documentary of a Crocodile And a Robot who must Outrace a Womanizer in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 101,\n",
+ " Decimal('27.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (753,\n",
+ " 'RUSH GOODFELLAS',\n",
+ " 'A Emotional Display of a Man And a Dentist who must Challenge a Squirrel in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 48,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (754,\n",
+ " 'RUSHMORE MERMAID',\n",
+ " 'A Boring Story of a Woman And a Moose who must Reach a Husband in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 150,\n",
+ " Decimal('17.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (755,\n",
+ " 'SABRINA MIDNIGHT',\n",
+ " 'A Emotional Story of a Squirrel And a Crocodile who must Succumb a Husband in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 99,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (756,\n",
+ " 'SADDLE ANTITRUST',\n",
+ " 'A Stunning Epistle of a Feminist And a A Shark who must Battle a Woman in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 80,\n",
+ " Decimal('10.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (757,\n",
+ " 'SAGEBRUSH CLUELESS',\n",
+ " 'A Insightful Story of a Lumberjack And a Hunter who must Kill a Boy in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 106,\n",
+ " Decimal('28.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (758,\n",
+ " 'SAINTS BRIDE',\n",
+ " 'A Fateful Tale of a Technical Writer And a Composer who must Pursue a Explorer in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 125,\n",
+ " Decimal('11.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (759,\n",
+ " 'SALUTE APOLLO',\n",
+ " 'A Awe-Inspiring Character Study of a Boy And a Feminist who must Sink a Crocodile in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 73,\n",
+ " Decimal('29.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (760,\n",
+ " 'SAMURAI LION',\n",
+ " 'A Fast-Paced Story of a Pioneer And a Astronaut who must Reach a Boat in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 110,\n",
+ " Decimal('21.99'),\n",
+ " 'G',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (761,\n",
+ " 'SANTA PARIS',\n",
+ " 'A Emotional Documentary of a Moose And a Car who must Redeem a Mad Cow in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 154,\n",
+ " Decimal('23.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (762,\n",
+ " 'SASSY PACKER',\n",
+ " 'A Fast-Paced Documentary of a Dog And a Teacher who must Find a Moose in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 154,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (763,\n",
+ " 'SATISFACTION CONFIDENTIAL',\n",
+ " 'A Lacklusture Yarn of a Dentist And a Butler who must Meet a Secret Agent in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 75,\n",
+ " Decimal('26.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (764,\n",
+ " 'SATURDAY LAMBS',\n",
+ " 'A Thoughtful Reflection of a Mad Scientist And a Moose who must Kill a Husband in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 150,\n",
+ " Decimal('28.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (765,\n",
+ " 'SATURN NAME',\n",
+ " 'A Fateful Epistle of a Butler And a Boy who must Redeem a Teacher in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 182,\n",
+ " Decimal('18.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (766,\n",
+ " 'SAVANNAH TOWN',\n",
+ " 'A Awe-Inspiring Tale of a Astronaut And a Database Administrator who must Chase a Secret Agent in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 84,\n",
+ " Decimal('25.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (767,\n",
+ " 'SCALAWAG DUCK',\n",
+ " 'A Fateful Reflection of a Car And a Teacher who must Confront a Waitress in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 183,\n",
+ " Decimal('13.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (768,\n",
+ " 'SCARFACE BANG',\n",
+ " 'A Emotional Yarn of a Teacher And a Girl who must Find a Teacher in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 102,\n",
+ " Decimal('11.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (769,\n",
+ " 'SCHOOL JACKET',\n",
+ " 'A Intrepid Yarn of a Monkey And a Boy who must Fight a Composer in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 151,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (770,\n",
+ " 'SCISSORHANDS SLUMS',\n",
+ " 'A Awe-Inspiring Drama of a Girl And a Technical Writer who must Meet a Feminist in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 147,\n",
+ " Decimal('13.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (771,\n",
+ " 'SCORPION APOLLO',\n",
+ " 'A Awe-Inspiring Documentary of a Technical Writer And a Husband who must Meet a Monkey in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 137,\n",
+ " Decimal('23.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (772,\n",
+ " 'SEA VIRGIN',\n",
+ " 'A Fast-Paced Documentary of a Technical Writer And a Pastry Chef who must Escape a Moose in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 80,\n",
+ " Decimal('24.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (773,\n",
+ " 'SEABISCUIT PUNK',\n",
+ " 'A Insightful Saga of a Man And a Forensic Psychologist who must Discover a Mad Cow in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 112,\n",
+ " Decimal('28.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (774,\n",
+ " 'SEARCHERS WAIT',\n",
+ " 'A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 182,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (775,\n",
+ " 'SEATTLE EXPECATIONS',\n",
+ " 'A Insightful Reflection of a Crocodile And a Sumo Wrestler who must Meet a Technical Writer in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 110,\n",
+ " Decimal('18.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (776,\n",
+ " 'SECRET GROUNDHOG',\n",
+ " 'A Astounding Story of a Cat And a Database Administrator who must Build a Technical Writer in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 90,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (777,\n",
+ " 'SECRETARY ROUGE',\n",
+ " 'A Action-Packed Panorama of a Mad Cow And a Composer who must Discover a Robot in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 158,\n",
+ " Decimal('10.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (778,\n",
+ " 'SECRETS PARADISE',\n",
+ " 'A Fateful Saga of a Cat And a Frisbee who must Kill a Girl in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 109,\n",
+ " Decimal('24.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (779,\n",
+ " 'SENSE GREEK',\n",
+ " 'A Taut Saga of a Lumberjack And a Pastry Chef who must Escape a Sumo Wrestler in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 54,\n",
+ " Decimal('23.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (780,\n",
+ " 'SENSIBILITY REAR',\n",
+ " 'A Emotional Tale of a Robot And a Sumo Wrestler who must Redeem a Pastry Chef in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 98,\n",
+ " Decimal('15.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (781,\n",
+ " 'SEVEN SWARM',\n",
+ " 'A Unbelieveable Character Study of a Dog And a Mad Cow who must Kill a Monkey in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 127,\n",
+ " Decimal('15.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (782,\n",
+ " 'SHAKESPEARE SADDLE',\n",
+ " 'A Fast-Paced Panorama of a Lumberjack And a Database Administrator who must Defeat a Madman in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 60,\n",
+ " Decimal('26.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (783,\n",
+ " 'SHANE DARKNESS',\n",
+ " 'A Action-Packed Saga of a Moose And a Lumberjack who must Find a Woman in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 93,\n",
+ " Decimal('22.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (784,\n",
+ " 'SHANGHAI TYCOON',\n",
+ " 'A Fast-Paced Character Study of a Crocodile And a Lumberjack who must Build a Husband in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 47,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (785,\n",
+ " 'SHAWSHANK BUBBLE',\n",
+ " 'A Lacklusture Story of a Moose And a Monkey who must Confront a Butler in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 80,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (786,\n",
+ " 'SHEPHERD MIDSUMMER',\n",
+ " 'A Thoughtful Drama of a Robot And a Womanizer who must Kill a Lumberjack in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 113,\n",
+ " Decimal('14.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (787,\n",
+ " 'SHINING ROSES',\n",
+ " 'A Awe-Inspiring Character Study of a Astronaut And a Forensic Psychologist who must Challenge a Madman in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 125,\n",
+ " Decimal('12.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (788,\n",
+ " 'SHIP WONDERLAND',\n",
+ " 'A Thrilling Saga of a Monkey And a Frisbee who must Escape a Explorer in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 104,\n",
+ " Decimal('15.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (789,\n",
+ " 'SHOCK CABIN',\n",
+ " 'A Fateful Tale of a Mad Cow And a Crocodile who must Meet a Husband in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 79,\n",
+ " Decimal('15.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (790,\n",
+ " 'SHOOTIST SUPERFLY',\n",
+ " 'A Fast-Paced Story of a Crocodile And a A Shark who must Sink a Pioneer in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 67,\n",
+ " Decimal('22.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (791,\n",
+ " 'SHOW LORD',\n",
+ " 'A Fanciful Saga of a Student And a Girl who must Find a Butler in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 167,\n",
+ " Decimal('24.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (792,\n",
+ " 'SHREK LICENSE',\n",
+ " 'A Fateful Yarn of a Secret Agent And a Feminist who must Find a Feminist in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 154,\n",
+ " Decimal('15.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (793,\n",
+ " 'SHRUNK DIVINE',\n",
+ " 'A Fateful Character Study of a Waitress And a Technical Writer who must Battle a Hunter in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 139,\n",
+ " Decimal('14.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (794,\n",
+ " 'SIDE ARK',\n",
+ " 'A Stunning Panorama of a Crocodile And a Womanizer who must Meet a Feminist in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 52,\n",
+ " Decimal('28.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (795,\n",
+ " 'SIEGE MADRE',\n",
+ " 'A Boring Tale of a Frisbee And a Crocodile who must Vanquish a Moose in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 111,\n",
+ " Decimal('23.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (796,\n",
+ " 'SIERRA DIVIDE',\n",
+ " 'A Emotional Character Study of a Frisbee And a Mad Scientist who must Build a Madman in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 135,\n",
+ " Decimal('12.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (797,\n",
+ " 'SILENCE KANE',\n",
+ " 'A Emotional Drama of a Sumo Wrestler And a Dentist who must Confront a Sumo Wrestler in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 67,\n",
+ " Decimal('23.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (798,\n",
+ " 'SILVERADO GOLDFINGER',\n",
+ " 'A Stunning Epistle of a Sumo Wrestler And a Man who must Challenge a Waitress in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 74,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (799,\n",
+ " 'SIMON NORTH',\n",
+ " 'A Thrilling Documentary of a Technical Writer And a A Shark who must Face a Pioneer in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 51,\n",
+ " Decimal('26.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (800,\n",
+ " 'SINNERS ATLANTIS',\n",
+ " 'A Epic Display of a Dog And a Boat who must Succumb a Mad Scientist in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 126,\n",
+ " Decimal('19.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (801,\n",
+ " 'SISTER FREDDY',\n",
+ " 'A Stunning Saga of a Butler And a Woman who must Pursue a Explorer in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 152,\n",
+ " Decimal('19.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (802,\n",
+ " 'SKY MIRACLE',\n",
+ " 'A Epic Drama of a Mad Scientist And a Explorer who must Succumb a Waitress in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 132,\n",
+ " Decimal('15.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (803,\n",
+ " 'SLACKER LIAISONS',\n",
+ " 'A Fast-Paced Tale of a A Shark And a Student who must Meet a Crocodile in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 179,\n",
+ " Decimal('29.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (804,\n",
+ " 'SLEEPING SUSPECTS',\n",
+ " 'A Stunning Reflection of a Sumo Wrestler And a Explorer who must Sink a Frisbee in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 129,\n",
+ " Decimal('13.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (805,\n",
+ " 'SLEEPLESS MONSOON',\n",
+ " 'A Amazing Saga of a Moose And a Pastry Chef who must Escape a Butler in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 64,\n",
+ " Decimal('12.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (806,\n",
+ " 'SLEEPY JAPANESE',\n",
+ " 'A Emotional Epistle of a Moose And a Composer who must Fight a Technical Writer in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 137,\n",
+ " Decimal('25.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (807,\n",
+ " 'SLEUTH ORIENT',\n",
+ " 'A Fateful Character Study of a Husband And a Dog who must Find a Feminist in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 87,\n",
+ " Decimal('25.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (808,\n",
+ " 'SLING LUKE',\n",
+ " 'A Intrepid Character Study of a Robot And a Monkey who must Reach a Secret Agent in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 84,\n",
+ " Decimal('10.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (809,\n",
+ " 'SLIPPER FIDELITY',\n",
+ " 'A Taut Reflection of a Secret Agent And a Man who must Redeem a Explorer in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 156,\n",
+ " Decimal('14.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (810,\n",
+ " 'SLUMS DUCK',\n",
+ " 'A Amazing Character Study of a Teacher And a Database Administrator who must Defeat a Waitress in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 147,\n",
+ " Decimal('21.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (811,\n",
+ " 'SMILE EARRING',\n",
+ " 'A Intrepid Drama of a Teacher And a Butler who must Build a Pastry Chef in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 60,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (812,\n",
+ " 'SMOKING BARBARELLA',\n",
+ " 'A Lacklusture Saga of a Mad Cow And a Mad Scientist who must Sink a Cat in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 50,\n",
+ " Decimal('13.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (813,\n",
+ " 'SMOOCHY CONTROL',\n",
+ " 'A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 184,\n",
+ " Decimal('18.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (814,\n",
+ " 'SNATCH SLIPPER',\n",
+ " 'A Insightful Panorama of a Woman And a Feminist who must Defeat a Forensic Psychologist in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 110,\n",
+ " Decimal('15.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (815,\n",
+ " 'SNATCHERS MONTEZUMA',\n",
+ " 'A Boring Epistle of a Sumo Wrestler And a Woman who must Escape a Man in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 74,\n",
+ " Decimal('14.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (816,\n",
+ " 'SNOWMAN ROLLERCOASTER',\n",
+ " 'A Fateful Display of a Lumberjack And a Girl who must Succumb a Mad Cow in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 62,\n",
+ " Decimal('27.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (817,\n",
+ " 'SOLDIERS EVOLUTION',\n",
+ " 'A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 185,\n",
+ " Decimal('27.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (818,\n",
+ " 'SOMETHING DUCK',\n",
+ " 'A Boring Character Study of a Car And a Husband who must Outgun a Frisbee in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 180,\n",
+ " Decimal('17.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (819,\n",
+ " 'SONG HEDWIG',\n",
+ " 'A Amazing Documentary of a Man And a Husband who must Confront a Squirrel in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 165,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (820,\n",
+ " 'SONS INTERVIEW',\n",
+ " 'A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 184,\n",
+ " Decimal('11.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (821,\n",
+ " 'SORORITY QUEEN',\n",
+ " 'A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 184,\n",
+ " Decimal('17.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (822,\n",
+ " 'SOUP WISDOM',\n",
+ " 'A Fast-Paced Display of a Robot And a Butler who must Defeat a Butler in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 169,\n",
+ " Decimal('12.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (823,\n",
+ " 'SOUTH WAIT',\n",
+ " 'A Amazing Documentary of a Car And a Robot who must Escape a Lumberjack in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 143,\n",
+ " Decimal('21.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (824,\n",
+ " 'SPARTACUS CHEAPER',\n",
+ " 'A Thrilling Panorama of a Pastry Chef And a Secret Agent who must Overcome a Student in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 52,\n",
+ " Decimal('19.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (825,\n",
+ " 'SPEAKEASY DATE',\n",
+ " 'A Lacklusture Drama of a Forensic Psychologist And a Car who must Redeem a Man in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 165,\n",
+ " Decimal('22.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (826,\n",
+ " 'SPEED SUIT',\n",
+ " 'A Brilliant Display of a Frisbee And a Mad Scientist who must Succumb a Robot in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 124,\n",
+ " Decimal('19.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (827,\n",
+ " 'SPICE SORORITY',\n",
+ " 'A Fateful Display of a Pioneer And a Hunter who must Defeat a Husband in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 141,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (828,\n",
+ " 'SPIKING ELEMENT',\n",
+ " 'A Lacklusture Epistle of a Dentist And a Technical Writer who must Find a Dog in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 79,\n",
+ " Decimal('12.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (829,\n",
+ " 'SPINAL ROCKY',\n",
+ " 'A Lacklusture Epistle of a Sumo Wrestler And a Squirrel who must Defeat a Explorer in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 138,\n",
+ " Decimal('12.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (830,\n",
+ " 'SPIRIT FLINTSTONES',\n",
+ " 'A Brilliant Yarn of a Cat And a Car who must Confront a Explorer in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 149,\n",
+ " Decimal('23.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (831,\n",
+ " 'SPIRITED CASUALTIES',\n",
+ " 'A Taut Story of a Waitress And a Man who must Face a Car in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 138,\n",
+ " Decimal('20.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (832,\n",
+ " 'SPLASH GUMP',\n",
+ " 'A Taut Saga of a Crocodile And a Boat who must Conquer a Hunter in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 175,\n",
+ " Decimal('16.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (833,\n",
+ " 'SPLENDOR PATTON',\n",
+ " 'A Taut Story of a Dog And a Explorer who must Find a Astronaut in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 134,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (834,\n",
+ " 'SPOILERS HELLFIGHTERS',\n",
+ " 'A Fanciful Story of a Technical Writer And a Squirrel who must Defeat a Dog in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 151,\n",
+ " Decimal('26.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (835,\n",
+ " 'SPY MILE',\n",
+ " 'A Thrilling Documentary of a Feminist And a Feminist who must Confront a Feminist in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 112,\n",
+ " Decimal('13.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (836,\n",
+ " 'SQUAD FISH',\n",
+ " 'A Fast-Paced Display of a Pastry Chef And a Dog who must Kill a Teacher in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 136,\n",
+ " Decimal('14.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (837,\n",
+ " 'STAGE WORLD',\n",
+ " 'A Lacklusture Panorama of a Woman And a Frisbee who must Chase a Crocodile in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 85,\n",
+ " Decimal('19.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (838,\n",
+ " 'STAGECOACH ARMAGEDDON',\n",
+ " 'A Touching Display of a Pioneer And a Butler who must Chase a Car in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 112,\n",
+ " Decimal('25.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (839,\n",
+ " 'STALLION SUNDANCE',\n",
+ " 'A Fast-Paced Tale of a Car And a Dog who must Outgun a A Shark in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 130,\n",
+ " Decimal('23.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (840,\n",
+ " 'STAMPEDE DISTURBING',\n",
+ " 'A Unbelieveable Tale of a Woman And a Lumberjack who must Fight a Frisbee in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 75,\n",
+ " Decimal('26.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (841,\n",
+ " 'STAR OPERATION',\n",
+ " 'A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 181,\n",
+ " Decimal('9.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (842,\n",
+ " 'STATE WASTELAND',\n",
+ " 'A Beautiful Display of a Cat And a Pastry Chef who must Outrace a Mad Cow in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 113,\n",
+ " Decimal('13.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (843,\n",
+ " 'STEEL SANTA',\n",
+ " 'A Fast-Paced Yarn of a Composer And a Frisbee who must Face a Moose in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 143,\n",
+ " Decimal('15.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (844,\n",
+ " 'STEERS ARMAGEDDON',\n",
+ " 'A Stunning Character Study of a Car And a Girl who must Succumb a Car in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 140,\n",
+ " Decimal('16.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (845,\n",
+ " 'STEPMOM DREAM',\n",
+ " 'A Touching Epistle of a Crocodile And a Teacher who must Build a Forensic Psychologist in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 48,\n",
+ " Decimal('9.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (846,\n",
+ " 'STING PERSONAL',\n",
+ " 'A Fanciful Drama of a Frisbee And a Dog who must Fight a Madman in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 93,\n",
+ " Decimal('9.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (847,\n",
+ " 'STOCK GLASS',\n",
+ " 'A Boring Epistle of a Crocodile And a Lumberjack who must Outgun a Moose in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 160,\n",
+ " Decimal('10.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (848,\n",
+ " 'STONE FIRE',\n",
+ " 'A Intrepid Drama of a Astronaut And a Crocodile who must Find a Boat in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 94,\n",
+ " Decimal('19.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (849,\n",
+ " 'STORM HAPPINESS',\n",
+ " 'A Insightful Drama of a Feminist And a A Shark who must Vanquish a Boat in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 57,\n",
+ " Decimal('28.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (850,\n",
+ " 'STORY SIDE',\n",
+ " 'A Lacklusture Saga of a Boy And a Cat who must Sink a Dentist in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 163,\n",
+ " Decimal('27.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (851,\n",
+ " 'STRAIGHT HOURS',\n",
+ " 'A Boring Panorama of a Secret Agent And a Girl who must Sink a Waitress in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 151,\n",
+ " Decimal('19.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (852,\n",
+ " 'STRANGELOVE DESIRE',\n",
+ " 'A Awe-Inspiring Panorama of a Lumberjack And a Waitress who must Defeat a Crocodile in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 103,\n",
+ " Decimal('27.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (853,\n",
+ " 'STRANGER STRANGERS',\n",
+ " 'A Awe-Inspiring Yarn of a Womanizer And a Explorer who must Fight a Woman in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 139,\n",
+ " Decimal('12.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (854,\n",
+ " 'STRANGERS GRAFFITI',\n",
+ " 'A Brilliant Character Study of a Secret Agent And a Man who must Find a Cat in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 119,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (855,\n",
+ " 'STREAK RIDGEMONT',\n",
+ " 'A Astounding Character Study of a Hunter And a Waitress who must Sink a Man in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 132,\n",
+ " Decimal('28.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (856,\n",
+ " 'STREETCAR INTENTIONS',\n",
+ " 'A Insightful Character Study of a Waitress And a Crocodile who must Sink a Waitress in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 73,\n",
+ " Decimal('11.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (857,\n",
+ " 'STRICTLY SCARFACE',\n",
+ " 'A Touching Reflection of a Crocodile And a Dog who must Chase a Hunter in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 144,\n",
+ " Decimal('24.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (858,\n",
+ " 'SUBMARINE BED',\n",
+ " 'A Amazing Display of a Car And a Monkey who must Fight a Teacher in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 127,\n",
+ " Decimal('21.99'),\n",
+ " 'R',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (859,\n",
+ " 'SUGAR WONKA',\n",
+ " 'A Touching Story of a Dentist And a Database Administrator who must Conquer a Astronaut in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 114,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (860,\n",
+ " 'SUICIDES SILENCE',\n",
+ " 'A Emotional Character Study of a Car And a Girl who must Face a Composer in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 93,\n",
+ " Decimal('13.99'),\n",
+ " 'G',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (861,\n",
+ " 'SUIT WALLS',\n",
+ " 'A Touching Panorama of a Lumberjack And a Frisbee who must Build a Dog in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 111,\n",
+ " Decimal('12.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (862,\n",
+ " 'SUMMER SCARFACE',\n",
+ " 'A Emotional Panorama of a Lumberjack And a Hunter who must Meet a Girl in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 53,\n",
+ " Decimal('25.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (863,\n",
+ " 'SUN CONFESSIONS',\n",
+ " 'A Beautiful Display of a Mad Cow And a Dog who must Redeem a Waitress in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 141,\n",
+ " Decimal('9.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (864,\n",
+ " 'SUNDANCE INVASION',\n",
+ " 'A Epic Drama of a Lumberjack And a Explorer who must Confront a Hunter in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 92,\n",
+ " Decimal('21.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (865,\n",
+ " 'SUNRISE LEAGUE',\n",
+ " 'A Beautiful Epistle of a Madman And a Butler who must Face a Crocodile in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 135,\n",
+ " Decimal('19.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (866,\n",
+ " 'SUNSET RACER',\n",
+ " 'A Awe-Inspiring Reflection of a Astronaut And a A Shark who must Defeat a Forensic Psychologist in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 48,\n",
+ " Decimal('28.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (867,\n",
+ " 'SUPER WYOMING',\n",
+ " 'A Action-Packed Saga of a Pastry Chef And a Explorer who must Discover a A Shark in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 58,\n",
+ " Decimal('10.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (868,\n",
+ " 'SUPERFLY TRIP',\n",
+ " 'A Beautiful Saga of a Lumberjack And a Teacher who must Build a Technical Writer in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 114,\n",
+ " Decimal('27.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (869,\n",
+ " 'SUSPECTS QUILLS',\n",
+ " 'A Emotional Epistle of a Pioneer And a Crocodile who must Battle a Man in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 47,\n",
+ " Decimal('22.99'),\n",
+ " 'PG',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (870,\n",
+ " 'SWARM GOLD',\n",
+ " 'A Insightful Panorama of a Crocodile And a Boat who must Conquer a Sumo Wrestler in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 123,\n",
+ " Decimal('12.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (871,\n",
+ " 'SWEDEN SHINING',\n",
+ " 'A Taut Documentary of a Car And a Robot who must Conquer a Boy in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 176,\n",
+ " Decimal('19.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (872,\n",
+ " 'SWEET BROTHERHOOD',\n",
+ " 'A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 185,\n",
+ " Decimal('27.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (873,\n",
+ " 'SWEETHEARTS SUSPECTS',\n",
+ " 'A Brilliant Character Study of a Frisbee And a Sumo Wrestler who must Confront a Woman in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 108,\n",
+ " Decimal('13.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (874,\n",
+ " 'TADPOLE PARK',\n",
+ " 'A Beautiful Tale of a Frisbee And a Moose who must Vanquish a Dog in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 155,\n",
+ " Decimal('13.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (875,\n",
+ " 'TALENTED HOMICIDE',\n",
+ " 'A Lacklusture Panorama of a Dentist And a Forensic Psychologist who must Outrace a Pioneer in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 173,\n",
+ " Decimal('9.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (876,\n",
+ " 'TARZAN VIDEOTAPE',\n",
+ " 'A Fast-Paced Display of a Lumberjack And a Mad Scientist who must Succumb a Sumo Wrestler in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 91,\n",
+ " Decimal('11.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (877,\n",
+ " 'TAXI KICK',\n",
+ " 'A Amazing Epistle of a Girl And a Woman who must Outrace a Waitress in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 64,\n",
+ " Decimal('23.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (878,\n",
+ " 'TEEN APOLLO',\n",
+ " 'A Awe-Inspiring Drama of a Dog And a Man who must Escape a Robot in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 74,\n",
+ " Decimal('25.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (879,\n",
+ " 'TELEGRAPH VOYAGE',\n",
+ " 'A Fateful Yarn of a Husband And a Dog who must Battle a Waitress in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 148,\n",
+ " Decimal('20.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (880,\n",
+ " 'TELEMARK HEARTBREAKERS',\n",
+ " 'A Action-Packed Panorama of a Technical Writer And a Man who must Build a Forensic Psychologist in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 152,\n",
+ " Decimal('9.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (881,\n",
+ " 'TEMPLE ATTRACTION',\n",
+ " 'A Action-Packed Saga of a Forensic Psychologist And a Woman who must Battle a Womanizer in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 71,\n",
+ " Decimal('13.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (882,\n",
+ " 'TENENBAUMS COMMAND',\n",
+ " 'A Taut Display of a Pioneer And a Man who must Reach a Girl in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 99,\n",
+ " Decimal('24.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (883,\n",
+ " 'TEQUILA PAST',\n",
+ " 'A Action-Packed Panorama of a Mad Scientist And a Robot who must Challenge a Student in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 53,\n",
+ " Decimal('17.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (884,\n",
+ " 'TERMINATOR CLUB',\n",
+ " 'A Touching Story of a Crocodile And a Girl who must Sink a Man in The Gulf of Mexico',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 88,\n",
+ " Decimal('11.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (885,\n",
+ " 'TEXAS WATCH',\n",
+ " 'A Awe-Inspiring Yarn of a Student And a Teacher who must Fight a Teacher in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 179,\n",
+ " Decimal('22.99'),\n",
+ " 'NC-17',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (886,\n",
+ " 'THEORY MERMAID',\n",
+ " 'A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 184,\n",
+ " Decimal('9.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (887,\n",
+ " 'THIEF PELICAN',\n",
+ " 'A Touching Documentary of a Madman And a Mad Scientist who must Outrace a Feminist in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 135,\n",
+ " Decimal('28.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (888,\n",
+ " 'THIN SAGEBRUSH',\n",
+ " 'A Emotional Drama of a Husband And a Lumberjack who must Build a Cat in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 53,\n",
+ " Decimal('9.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (889,\n",
+ " 'TIES HUNGER',\n",
+ " 'A Insightful Saga of a Astronaut And a Explorer who must Pursue a Mad Scientist in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 111,\n",
+ " Decimal('28.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (890,\n",
+ " 'TIGHTS DAWN',\n",
+ " 'A Thrilling Epistle of a Boat And a Secret Agent who must Face a Boy in A Baloon',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 172,\n",
+ " Decimal('14.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (891,\n",
+ " 'TIMBERLAND SKY',\n",
+ " 'A Boring Display of a Man And a Dog who must Redeem a Girl in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 69,\n",
+ " Decimal('13.99'),\n",
+ " 'G',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (892,\n",
+ " 'TITANIC BOONDOCK',\n",
+ " 'A Brilliant Reflection of a Feminist And a Dog who must Fight a Boy in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 104,\n",
+ " Decimal('18.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (893,\n",
+ " 'TITANS JERK',\n",
+ " 'A Unbelieveable Panorama of a Feminist And a Sumo Wrestler who must Challenge a Technical Writer in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 91,\n",
+ " Decimal('11.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (894,\n",
+ " 'TOMATOES HELLFIGHTERS',\n",
+ " 'A Thoughtful Epistle of a Madman And a Astronaut who must Overcome a Monkey in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 68,\n",
+ " Decimal('23.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (895,\n",
+ " 'TOMORROW HUSTLER',\n",
+ " 'A Thoughtful Story of a Moose And a Husband who must Face a Secret Agent in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 142,\n",
+ " Decimal('21.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (896,\n",
+ " 'TOOTSIE PILOT',\n",
+ " 'A Awe-Inspiring Documentary of a Womanizer And a Pastry Chef who must Kill a Lumberjack in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 157,\n",
+ " Decimal('10.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (897,\n",
+ " 'TORQUE BOUND',\n",
+ " 'A Emotional Display of a Crocodile And a Husband who must Reach a Man in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 179,\n",
+ " Decimal('27.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (898,\n",
+ " 'TOURIST PELICAN',\n",
+ " 'A Boring Story of a Butler And a Astronaut who must Outrace a Pioneer in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 152,\n",
+ " Decimal('18.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (899,\n",
+ " 'TOWERS HURRICANE',\n",
+ " 'A Fateful Display of a Monkey And a Car who must Sink a Husband in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 144,\n",
+ " Decimal('14.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (900,\n",
+ " 'TOWN ARK',\n",
+ " 'A Awe-Inspiring Documentary of a Moose And a Madman who must Meet a Dog in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 136,\n",
+ " Decimal('17.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (901,\n",
+ " 'TRACY CIDER',\n",
+ " 'A Touching Reflection of a Database Administrator And a Madman who must Build a Lumberjack in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 142,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (902,\n",
+ " 'TRADING PINOCCHIO',\n",
+ " 'A Emotional Character Study of a Student And a Explorer who must Discover a Frisbee in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 170,\n",
+ " Decimal('22.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (903,\n",
+ " 'TRAFFIC HOBBIT',\n",
+ " 'A Amazing Epistle of a Squirrel And a Lumberjack who must Succumb a Database Administrator in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 139,\n",
+ " Decimal('13.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (904,\n",
+ " 'TRAIN BUNCH',\n",
+ " 'A Thrilling Character Study of a Robot And a Squirrel who must Face a Dog in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 71,\n",
+ " Decimal('26.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (905,\n",
+ " 'TRAINSPOTTING STRANGERS',\n",
+ " 'A Fast-Paced Drama of a Pioneer And a Mad Cow who must Challenge a Madman in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 132,\n",
+ " Decimal('10.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (906,\n",
+ " 'TRAMP OTHERS',\n",
+ " 'A Brilliant Display of a Composer And a Cat who must Succumb a A Shark in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 171,\n",
+ " Decimal('27.99'),\n",
+ " 'PG',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (907,\n",
+ " 'TRANSLATION SUMMER',\n",
+ " 'A Touching Reflection of a Man And a Monkey who must Pursue a Womanizer in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 168,\n",
+ " Decimal('10.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (908,\n",
+ " 'TRAP GUYS',\n",
+ " 'A Unbelieveable Story of a Boy And a Mad Cow who must Challenge a Database Administrator in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 110,\n",
+ " Decimal('11.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (909,\n",
+ " 'TREASURE COMMAND',\n",
+ " 'A Emotional Saga of a Car And a Madman who must Discover a Pioneer in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 102,\n",
+ " Decimal('28.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (910,\n",
+ " 'TREATMENT JEKYLL',\n",
+ " 'A Boring Story of a Teacher And a Student who must Outgun a Cat in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 87,\n",
+ " Decimal('19.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (911,\n",
+ " 'TRIP NEWTON',\n",
+ " 'A Fanciful Character Study of a Lumberjack And a Car who must Discover a Cat in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 64,\n",
+ " Decimal('14.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (912,\n",
+ " 'TROJAN TOMORROW',\n",
+ " 'A Astounding Panorama of a Husband And a Sumo Wrestler who must Pursue a Boat in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 52,\n",
+ " Decimal('9.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (913,\n",
+ " 'TROOPERS METAL',\n",
+ " 'A Fanciful Drama of a Monkey And a Feminist who must Sink a Man in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 115,\n",
+ " Decimal('20.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (914,\n",
+ " 'TROUBLE DATE',\n",
+ " 'A Lacklusture Panorama of a Forensic Psychologist And a Woman who must Kill a Explorer in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 61,\n",
+ " Decimal('13.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (915,\n",
+ " 'TRUMAN CRAZY',\n",
+ " 'A Thrilling Epistle of a Moose And a Boy who must Meet a Database Administrator in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 92,\n",
+ " Decimal('9.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (916,\n",
+ " 'TURN STAR',\n",
+ " 'A Stunning Tale of a Man And a Monkey who must Chase a Student in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 80,\n",
+ " Decimal('10.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (917,\n",
+ " 'TUXEDO MILE',\n",
+ " 'A Boring Drama of a Man And a Forensic Psychologist who must Face a Frisbee in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 152,\n",
+ " Decimal('24.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (918,\n",
+ " 'TWISTED PIRATES',\n",
+ " 'A Touching Display of a Frisbee And a Boat who must Kill a Girl in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 152,\n",
+ " Decimal('23.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (919,\n",
+ " 'TYCOON GATHERING',\n",
+ " 'A Emotional Display of a Husband And a A Shark who must Succumb a Madman in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 82,\n",
+ " Decimal('17.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (920,\n",
+ " 'UNBREAKABLE KARATE',\n",
+ " 'A Amazing Character Study of a Robot And a Student who must Chase a Robot in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 62,\n",
+ " Decimal('16.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (921,\n",
+ " 'UNCUT SUICIDES',\n",
+ " 'A Intrepid Yarn of a Explorer And a Pastry Chef who must Pursue a Mad Cow in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 172,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (922,\n",
+ " 'UNDEFEATED DALMATIONS',\n",
+ " 'A Unbelieveable Display of a Crocodile And a Feminist who must Overcome a Moose in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 107,\n",
+ " Decimal('22.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (923,\n",
+ " 'UNFAITHFUL KILL',\n",
+ " 'A Taut Documentary of a Waitress And a Mad Scientist who must Battle a Technical Writer in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 78,\n",
+ " Decimal('12.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (924,\n",
+ " 'UNFORGIVEN ZOOLANDER',\n",
+ " 'A Taut Epistle of a Monkey And a Sumo Wrestler who must Vanquish a A Shark in A Baloon Factory',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 129,\n",
+ " Decimal('15.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (925,\n",
+ " 'UNITED PILOT',\n",
+ " 'A Fast-Paced Reflection of a Cat And a Mad Cow who must Fight a Car in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 164,\n",
+ " Decimal('27.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (926,\n",
+ " 'UNTOUCHABLES SUNRISE',\n",
+ " 'A Amazing Documentary of a Woman And a Astronaut who must Outrace a Teacher in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 120,\n",
+ " Decimal('11.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (927,\n",
+ " 'UPRISING UPTOWN',\n",
+ " 'A Fanciful Reflection of a Boy And a Butler who must Pursue a Woman in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 174,\n",
+ " Decimal('16.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (928,\n",
+ " 'UPTOWN YOUNG',\n",
+ " 'A Fateful Documentary of a Dog And a Hunter who must Pursue a Teacher in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 84,\n",
+ " Decimal('16.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (929,\n",
+ " 'USUAL UNTOUCHABLES',\n",
+ " 'A Touching Display of a Explorer And a Lumberjack who must Fight a Forensic Psychologist in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 128,\n",
+ " Decimal('21.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (930,\n",
+ " 'VACATION BOONDOCK',\n",
+ " 'A Fanciful Character Study of a Secret Agent And a Mad Scientist who must Reach a Teacher in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 145,\n",
+ " Decimal('23.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (931,\n",
+ " 'VALENTINE VANISHING',\n",
+ " 'A Thrilling Display of a Husband And a Butler who must Reach a Pastry Chef in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 48,\n",
+ " Decimal('9.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (932,\n",
+ " 'VALLEY PACKER',\n",
+ " 'A Astounding Documentary of a Astronaut And a Boy who must Outrace a Sumo Wrestler in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 73,\n",
+ " Decimal('21.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (933,\n",
+ " 'VAMPIRE WHALE',\n",
+ " 'A Epic Story of a Lumberjack And a Monkey who must Confront a Pioneer in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 126,\n",
+ " Decimal('11.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (934,\n",
+ " 'VANILLA DAY',\n",
+ " 'A Fast-Paced Saga of a Girl And a Forensic Psychologist who must Redeem a Girl in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 122,\n",
+ " Decimal('20.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (935,\n",
+ " 'VANISHED GARDEN',\n",
+ " 'A Intrepid Character Study of a Squirrel And a A Shark who must Kill a Lumberjack in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 142,\n",
+ " Decimal('17.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (936,\n",
+ " 'VANISHING ROCKY',\n",
+ " 'A Brilliant Reflection of a Man And a Woman who must Conquer a Pioneer in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 123,\n",
+ " Decimal('21.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (937,\n",
+ " 'VARSITY TRIP',\n",
+ " 'A Action-Packed Character Study of a Astronaut And a Explorer who must Reach a Monkey in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 85,\n",
+ " Decimal('14.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (938,\n",
+ " 'VELVET TERMINATOR',\n",
+ " 'A Lacklusture Tale of a Pastry Chef And a Technical Writer who must Confront a Crocodile in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 173,\n",
+ " Decimal('14.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (939,\n",
+ " 'VERTIGO NORTHWEST',\n",
+ " 'A Unbelieveable Display of a Mad Scientist And a Mad Scientist who must Outgun a Mad Cow in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 90,\n",
+ " Decimal('17.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (940,\n",
+ " 'VICTORY ACADEMY',\n",
+ " 'A Insightful Epistle of a Mad Scientist And a Explorer who must Challenge a Cat in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 64,\n",
+ " Decimal('19.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (941,\n",
+ " 'VIDEOTAPE ARSENIC',\n",
+ " 'A Lacklusture Display of a Girl And a Astronaut who must Succumb a Student in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 145,\n",
+ " Decimal('10.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (942,\n",
+ " 'VIETNAM SMOOCHY',\n",
+ " 'A Lacklusture Display of a Butler And a Man who must Sink a Explorer in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 174,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (943,\n",
+ " 'VILLAIN DESPERATE',\n",
+ " 'A Boring Yarn of a Pioneer And a Feminist who must Redeem a Cat in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 76,\n",
+ " Decimal('27.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (944,\n",
+ " 'VIRGIN DAISY',\n",
+ " 'A Awe-Inspiring Documentary of a Robot And a Mad Scientist who must Reach a Database Administrator in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 179,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (945,\n",
+ " 'VIRGINIAN PLUTO',\n",
+ " 'A Emotional Panorama of a Dentist And a Crocodile who must Meet a Boy in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 164,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (946,\n",
+ " 'VIRTUAL SPOILERS',\n",
+ " 'A Fateful Tale of a Database Administrator And a Squirrel who must Discover a Student in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 144,\n",
+ " Decimal('14.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (947,\n",
+ " 'VISION TORQUE',\n",
+ " 'A Thoughtful Documentary of a Dog And a Man who must Sink a Man in A Shark Tank',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 59,\n",
+ " Decimal('16.99'),\n",
+ " 'PG-13',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (948,\n",
+ " 'VOICE PEACH',\n",
+ " 'A Amazing Panorama of a Pioneer And a Student who must Overcome a Mad Scientist in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 139,\n",
+ " Decimal('22.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (949,\n",
+ " 'VOLCANO TEXAS',\n",
+ " 'A Awe-Inspiring Yarn of a Hunter And a Feminist who must Challenge a Dentist in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 157,\n",
+ " Decimal('27.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (950,\n",
+ " 'VOLUME HOUSE',\n",
+ " 'A Boring Tale of a Dog And a Woman who must Meet a Dentist in California',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 132,\n",
+ " Decimal('12.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (951,\n",
+ " 'VOYAGE LEGALLY',\n",
+ " 'A Epic Tale of a Squirrel And a Hunter who must Conquer a Boy in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 78,\n",
+ " Decimal('28.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (952,\n",
+ " 'WAGON JAWS',\n",
+ " 'A Intrepid Drama of a Moose And a Boat who must Kill a Explorer in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 152,\n",
+ " Decimal('17.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (953,\n",
+ " 'WAIT CIDER',\n",
+ " 'A Intrepid Epistle of a Woman And a Forensic Psychologist who must Succumb a Astronaut in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 112,\n",
+ " Decimal('9.99'),\n",
+ " 'PG-13',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (954,\n",
+ " 'WAKE JAWS',\n",
+ " 'A Beautiful Saga of a Feminist And a Composer who must Challenge a Moose in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 73,\n",
+ " Decimal('18.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (955,\n",
+ " 'WALLS ARTIST',\n",
+ " 'A Insightful Panorama of a Teacher And a Teacher who must Overcome a Mad Cow in An Abandoned Fun House',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 135,\n",
+ " Decimal('19.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (956,\n",
+ " 'WANDA CHAMBER',\n",
+ " 'A Insightful Drama of a A Shark And a Pioneer who must Find a Womanizer in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 107,\n",
+ " Decimal('23.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (957,\n",
+ " 'WAR NOTTING',\n",
+ " 'A Boring Drama of a Teacher And a Sumo Wrestler who must Challenge a Secret Agent in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 80,\n",
+ " Decimal('26.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (958,\n",
+ " 'WARDROBE PHANTOM',\n",
+ " 'A Action-Packed Display of a Mad Cow And a Astronaut who must Kill a Car in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 178,\n",
+ " Decimal('19.99'),\n",
+ " 'G',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (959,\n",
+ " 'WARLOCK WEREWOLF',\n",
+ " 'A Astounding Yarn of a Pioneer And a Crocodile who must Defeat a A Shark in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 83,\n",
+ " Decimal('10.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (960,\n",
+ " 'WARS PLUTO',\n",
+ " 'A Taut Reflection of a Teacher And a Database Administrator who must Chase a Madman in The Sahara Desert',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 128,\n",
+ " Decimal('15.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (961,\n",
+ " 'WASH HEAVENLY',\n",
+ " 'A Awe-Inspiring Reflection of a Cat And a Pioneer who must Escape a Hunter in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('4.99'),\n",
+ " 161,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (962,\n",
+ " 'WASTELAND DIVINE',\n",
+ " 'A Fanciful Story of a Database Administrator And a Womanizer who must Fight a Database Administrator in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 85,\n",
+ " Decimal('18.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (963,\n",
+ " 'WATCH TRACY',\n",
+ " 'A Fast-Paced Yarn of a Dog And a Frisbee who must Conquer a Hunter in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 78,\n",
+ " Decimal('12.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (964,\n",
+ " 'WATERFRONT DELIVERANCE',\n",
+ " 'A Unbelieveable Documentary of a Dentist And a Technical Writer who must Build a Womanizer in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 61,\n",
+ " Decimal('17.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (965,\n",
+ " 'WATERSHIP FRONTIER',\n",
+ " 'A Emotional Yarn of a Boat And a Crocodile who must Meet a Moose in Soviet Georgia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 112,\n",
+ " Decimal('28.99'),\n",
+ " 'G',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (966,\n",
+ " 'WEDDING APOLLO',\n",
+ " 'A Action-Packed Tale of a Student And a Waitress who must Conquer a Lumberjack in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 70,\n",
+ " Decimal('14.99'),\n",
+ " 'PG',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (967,\n",
+ " 'WEEKEND PERSONAL',\n",
+ " 'A Fast-Paced Documentary of a Car And a Butler who must Find a Frisbee in A Jet Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 134,\n",
+ " Decimal('26.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (968,\n",
+ " 'WEREWOLF LOLA',\n",
+ " 'A Fanciful Story of a Man And a Sumo Wrestler who must Outrace a Student in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 79,\n",
+ " Decimal('19.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (969,\n",
+ " 'WEST LION',\n",
+ " 'A Intrepid Drama of a Butler And a Lumberjack who must Challenge a Database Administrator in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 159,\n",
+ " Decimal('29.99'),\n",
+ " 'G',\n",
+ " {'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (970,\n",
+ " 'WESTWARD SEABISCUIT',\n",
+ " 'A Lacklusture Tale of a Butler And a Husband who must Face a Boy in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 52,\n",
+ " Decimal('11.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (971,\n",
+ " 'WHALE BIKINI',\n",
+ " 'A Intrepid Story of a Pastry Chef And a Database Administrator who must Kill a Feminist in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 109,\n",
+ " Decimal('11.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (972,\n",
+ " 'WHISPERER GIANT',\n",
+ " 'A Intrepid Story of a Dentist And a Hunter who must Confront a Monkey in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 59,\n",
+ " Decimal('24.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (973,\n",
+ " 'WIFE TURN',\n",
+ " 'A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 183,\n",
+ " Decimal('27.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (974,\n",
+ " 'WILD APOLLO',\n",
+ " 'A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 181,\n",
+ " Decimal('24.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (975,\n",
+ " 'WILLOW TRACY',\n",
+ " 'A Brilliant Panorama of a Boat And a Astronaut who must Challenge a Teacher in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 137,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (976,\n",
+ " 'WIND PHANTOM',\n",
+ " 'A Touching Saga of a Madman And a Forensic Psychologist who must Build a Sumo Wrestler in An Abandoned Mine Shaft',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 111,\n",
+ " Decimal('12.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (977,\n",
+ " 'WINDOW SIDE',\n",
+ " 'A Astounding Character Study of a Womanizer And a Hunter who must Escape a Robot in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 85,\n",
+ " Decimal('25.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (978,\n",
+ " 'WISDOM WORKER',\n",
+ " 'A Unbelieveable Saga of a Forensic Psychologist And a Student who must Face a Squirrel in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 98,\n",
+ " Decimal('12.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (979,\n",
+ " 'WITCHES PANIC',\n",
+ " 'A Awe-Inspiring Drama of a Secret Agent And a Hunter who must Fight a Moose in Nigeria',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 100,\n",
+ " Decimal('10.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (980,\n",
+ " 'WIZARD COLDBLOODED',\n",
+ " 'A Lacklusture Display of a Robot And a Girl who must Defeat a Sumo Wrestler in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 75,\n",
+ " Decimal('12.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (981,\n",
+ " 'WOLVES DESIRE',\n",
+ " 'A Fast-Paced Drama of a Squirrel And a Robot who must Succumb a Technical Writer in A Manhattan Penthouse',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('0.99'),\n",
+ " 55,\n",
+ " Decimal('13.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (982,\n",
+ " 'WOMEN DORADO',\n",
+ " 'A Insightful Documentary of a Waitress And a Butler who must Vanquish a Composer in Australia',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 126,\n",
+ " Decimal('23.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (983,\n",
+ " 'WON DARES',\n",
+ " 'A Unbelieveable Documentary of a Teacher And a Monkey who must Defeat a Explorer in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 105,\n",
+ " Decimal('18.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (984,\n",
+ " 'WONDERFUL DROP',\n",
+ " 'A Boring Panorama of a Woman And a Madman who must Overcome a Butler in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 126,\n",
+ " Decimal('20.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (985,\n",
+ " 'WONDERLAND CHRISTMAS',\n",
+ " 'A Awe-Inspiring Character Study of a Waitress And a Car who must Pursue a Mad Scientist in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 111,\n",
+ " Decimal('19.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (986,\n",
+ " 'WONKA SEA',\n",
+ " 'A Brilliant Saga of a Boat And a Mad Scientist who must Meet a Moose in Ancient India',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 85,\n",
+ " Decimal('24.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (987,\n",
+ " 'WORDS HUNTER',\n",
+ " 'A Action-Packed Reflection of a Composer And a Mad Scientist who must Face a Pioneer in A MySQL Convention',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('2.99'),\n",
+ " 116,\n",
+ " Decimal('13.99'),\n",
+ " 'PG',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (988,\n",
+ " 'WORKER TARZAN',\n",
+ " 'A Action-Packed Yarn of a Secret Agent And a Technical Writer who must Battle a Sumo Wrestler in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 7,\n",
+ " Decimal('2.99'),\n",
+ " 139,\n",
+ " Decimal('26.99'),\n",
+ " 'R',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (989,\n",
+ " 'WORKING MICROCOSMOS',\n",
+ " 'A Stunning Epistle of a Dentist And a Dog who must Kill a Madman in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('4.99'),\n",
+ " 74,\n",
+ " Decimal('22.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (990,\n",
+ " 'WORLD LEATHERNECKS',\n",
+ " 'A Unbelieveable Tale of a Pioneer And a Astronaut who must Overcome a Robot in An Abandoned Amusement Park',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('0.99'),\n",
+ " 171,\n",
+ " Decimal('13.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (991,\n",
+ " 'WORST BANGER',\n",
+ " 'A Thrilling Drama of a Madman And a Dentist who must Conquer a Boy in The Outback',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('2.99'),\n",
+ " 185,\n",
+ " Decimal('26.99'),\n",
+ " 'PG',\n",
+ " {'Behind the Scenes', 'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (992,\n",
+ " 'WRATH MILE',\n",
+ " 'A Intrepid Reflection of a Technical Writer And a Hunter who must Defeat a Sumo Wrestler in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('0.99'),\n",
+ " 176,\n",
+ " Decimal('17.99'),\n",
+ " 'NC-17',\n",
+ " {'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (993,\n",
+ " 'WRONG BEHAVIOR',\n",
+ " 'A Emotional Saga of a Crocodile And a Sumo Wrestler who must Discover a Mad Cow in New Orleans',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('2.99'),\n",
+ " 178,\n",
+ " Decimal('10.99'),\n",
+ " 'PG-13',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (994,\n",
+ " 'WYOMING STORM',\n",
+ " 'A Awe-Inspiring Panorama of a Robot And a Boat who must Overcome a Feminist in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('4.99'),\n",
+ " 100,\n",
+ " Decimal('29.99'),\n",
+ " 'PG-13',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (995,\n",
+ " 'YENTL IDAHO',\n",
+ " 'A Amazing Display of a Robot And a Astronaut who must Fight a Womanizer in Berlin',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('4.99'),\n",
+ " 86,\n",
+ " Decimal('11.99'),\n",
+ " 'R',\n",
+ " {'Commentaries', 'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (996,\n",
+ " 'YOUNG LANGUAGE',\n",
+ " 'A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 183,\n",
+ " Decimal('9.99'),\n",
+ " 'G',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (997,\n",
+ " 'YOUTH KICK',\n",
+ " 'A Touching Drama of a Teacher And a Cat who must Challenge a Technical Writer in A U-Boat',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 4,\n",
+ " Decimal('0.99'),\n",
+ " 179,\n",
+ " Decimal('14.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (998,\n",
+ " 'ZHIVAGO CORE',\n",
+ " 'A Fateful Yarn of a Composer And a Man who must Face a Boy in The Canadian Rockies',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 6,\n",
+ " Decimal('0.99'),\n",
+ " 105,\n",
+ " Decimal('10.99'),\n",
+ " 'NC-17',\n",
+ " {'Deleted Scenes'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (999,\n",
+ " 'ZOOLANDER FICTION',\n",
+ " 'A Fateful Reflection of a Waitress And a Boat who must Discover a Sumo Wrestler in Ancient China',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 5,\n",
+ " Decimal('2.99'),\n",
+ " 101,\n",
+ " Decimal('28.99'),\n",
+ " 'R',\n",
+ " {'Deleted Scenes', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42)),\n",
+ " (1000,\n",
+ " 'ZORRO ARK',\n",
+ " 'A Intrepid Panorama of a Mad Scientist And a Boy who must Redeem a Boy in A Monastery',\n",
+ " 2006,\n",
+ " 1,\n",
+ " None,\n",
+ " 3,\n",
+ " Decimal('4.99'),\n",
+ " 50,\n",
+ " Decimal('18.99'),\n",
+ " 'NC-17',\n",
+ " {'Behind the Scenes', 'Commentaries', 'Trailers'},\n",
+ " datetime.datetime(2006, 2, 15, 5, 3, 42))]"
+ ]
+ },
+ "execution_count": 8,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "results = cursor.fetchall()\n",
+ "\n",
+ "results"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "['film_id',\n",
+ " 'title',\n",
+ " 'description',\n",
+ " 'release_year',\n",
+ " 'language_id',\n",
+ " 'original_language_id',\n",
+ " 'rental_duration',\n",
+ " 'rental_rate',\n",
+ " 'length',\n",
+ " 'replacement_cost',\n",
+ " 'rating',\n",
+ " 'special_features',\n",
+ " 'last_update']"
+ ]
+ },
+ "execution_count": 11,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "column_names = [item[0] for item in cursor.description]\n",
+ "column_names"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "metadata": {
+ "scrolled": true
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " film_id | \n",
+ " title | \n",
+ " description | \n",
+ " release_year | \n",
+ " language_id | \n",
+ " original_language_id | \n",
+ " rental_duration | \n",
+ " rental_rate | \n",
+ " length | \n",
+ " replacement_cost | \n",
+ " rating | \n",
+ " special_features | \n",
+ " last_update | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " 1 | \n",
+ " ACADEMY DINOSAUR | \n",
+ " A Epic Drama of a Feminist And a Mad Scientist... | \n",
+ " 2006 | \n",
+ " 1 | \n",
+ " None | \n",
+ " 6 | \n",
+ " 0.99 | \n",
+ " 86 | \n",
+ " 20.99 | \n",
+ " PG | \n",
+ " {Behind the Scenes, Deleted Scenes} | \n",
+ " 2006-02-15 05:03:42 | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " 2 | \n",
+ " ACE GOLDFINGER | \n",
+ " A Astounding Epistle of a Database Administrat... | \n",
+ " 2006 | \n",
+ " 1 | \n",
+ " None | \n",
+ " 3 | \n",
+ " 4.99 | \n",
+ " 48 | \n",
+ " 12.99 | \n",
+ " G | \n",
+ " {Trailers, Deleted Scenes} | \n",
+ " 2006-02-15 05:03:42 | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " 3 | \n",
+ " ADAPTATION HOLES | \n",
+ " A Astounding Reflection of a Lumberjack And a ... | \n",
+ " 2006 | \n",
+ " 1 | \n",
+ " None | \n",
+ " 7 | \n",
+ " 2.99 | \n",
+ " 50 | \n",
+ " 18.99 | \n",
+ " NC-17 | \n",
+ " {Trailers, Deleted Scenes} | \n",
+ " 2006-02-15 05:03:42 | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " 4 | \n",
+ " AFFAIR PREJUDICE | \n",
+ " A Fanciful Documentary of a Frisbee And a Lumb... | \n",
+ " 2006 | \n",
+ " 1 | \n",
+ " None | \n",
+ " 5 | \n",
+ " 2.99 | \n",
+ " 117 | \n",
+ " 26.99 | \n",
+ " G | \n",
+ " {Commentaries, Behind the Scenes} | \n",
+ " 2006-02-15 05:03:42 | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " 5 | \n",
+ " AFRICAN EGG | \n",
+ " A Fast-Paced Documentary of a Pastry Chef And ... | \n",
+ " 2006 | \n",
+ " 1 | \n",
+ " None | \n",
+ " 6 | \n",
+ " 2.99 | \n",
+ " 130 | \n",
+ " 22.99 | \n",
+ " G | \n",
+ " {Deleted Scenes} | \n",
+ " 2006-02-15 05:03:42 | \n",
+ "
\n",
+ " \n",
+ " | ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " | 995 | \n",
+ " 996 | \n",
+ " YOUNG LANGUAGE | \n",
+ " A Unbelieveable Yarn of a Boat And a Database ... | \n",
+ " 2006 | \n",
+ " 1 | \n",
+ " None | \n",
+ " 6 | \n",
+ " 0.99 | \n",
+ " 183 | \n",
+ " 9.99 | \n",
+ " G | \n",
+ " {Trailers, Behind the Scenes} | \n",
+ " 2006-02-15 05:03:42 | \n",
+ "
\n",
+ " \n",
+ " | 996 | \n",
+ " 997 | \n",
+ " YOUTH KICK | \n",
+ " A Touching Drama of a Teacher And a Cat who mu... | \n",
+ " 2006 | \n",
+ " 1 | \n",
+ " None | \n",
+ " 4 | \n",
+ " 0.99 | \n",
+ " 179 | \n",
+ " 14.99 | \n",
+ " NC-17 | \n",
+ " {Trailers, Behind the Scenes} | \n",
+ " 2006-02-15 05:03:42 | \n",
+ "
\n",
+ " \n",
+ " | 997 | \n",
+ " 998 | \n",
+ " ZHIVAGO CORE | \n",
+ " A Fateful Yarn of a Composer And a Man who mus... | \n",
+ " 2006 | \n",
+ " 1 | \n",
+ " None | \n",
+ " 6 | \n",
+ " 0.99 | \n",
+ " 105 | \n",
+ " 10.99 | \n",
+ " NC-17 | \n",
+ " {Deleted Scenes} | \n",
+ " 2006-02-15 05:03:42 | \n",
+ "
\n",
+ " \n",
+ " | 998 | \n",
+ " 999 | \n",
+ " ZOOLANDER FICTION | \n",
+ " A Fateful Reflection of a Waitress And a Boat ... | \n",
+ " 2006 | \n",
+ " 1 | \n",
+ " None | \n",
+ " 5 | \n",
+ " 2.99 | \n",
+ " 101 | \n",
+ " 28.99 | \n",
+ " R | \n",
+ " {Trailers, Deleted Scenes} | \n",
+ " 2006-02-15 05:03:42 | \n",
+ "
\n",
+ " \n",
+ " | 999 | \n",
+ " 1000 | \n",
+ " ZORRO ARK | \n",
+ " A Intrepid Panorama of a Mad Scientist And a B... | \n",
+ " 2006 | \n",
+ " 1 | \n",
+ " None | \n",
+ " 3 | \n",
+ " 4.99 | \n",
+ " 50 | \n",
+ " 18.99 | \n",
+ " NC-17 | \n",
+ " {Trailers, Behind the Scenes, Commentaries} | \n",
+ " 2006-02-15 05:03:42 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
1000 rows × 13 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " film_id title \\\n",
+ "0 1 ACADEMY DINOSAUR \n",
+ "1 2 ACE GOLDFINGER \n",
+ "2 3 ADAPTATION HOLES \n",
+ "3 4 AFFAIR PREJUDICE \n",
+ "4 5 AFRICAN EGG \n",
+ ".. ... ... \n",
+ "995 996 YOUNG LANGUAGE \n",
+ "996 997 YOUTH KICK \n",
+ "997 998 ZHIVAGO CORE \n",
+ "998 999 ZOOLANDER FICTION \n",
+ "999 1000 ZORRO ARK \n",
+ "\n",
+ " description release_year \\\n",
+ "0 A Epic Drama of a Feminist And a Mad Scientist... 2006 \n",
+ "1 A Astounding Epistle of a Database Administrat... 2006 \n",
+ "2 A Astounding Reflection of a Lumberjack And a ... 2006 \n",
+ "3 A Fanciful Documentary of a Frisbee And a Lumb... 2006 \n",
+ "4 A Fast-Paced Documentary of a Pastry Chef And ... 2006 \n",
+ ".. ... ... \n",
+ "995 A Unbelieveable Yarn of a Boat And a Database ... 2006 \n",
+ "996 A Touching Drama of a Teacher And a Cat who mu... 2006 \n",
+ "997 A Fateful Yarn of a Composer And a Man who mus... 2006 \n",
+ "998 A Fateful Reflection of a Waitress And a Boat ... 2006 \n",
+ "999 A Intrepid Panorama of a Mad Scientist And a B... 2006 \n",
+ "\n",
+ " language_id original_language_id rental_duration rental_rate length \\\n",
+ "0 1 None 6 0.99 86 \n",
+ "1 1 None 3 4.99 48 \n",
+ "2 1 None 7 2.99 50 \n",
+ "3 1 None 5 2.99 117 \n",
+ "4 1 None 6 2.99 130 \n",
+ ".. ... ... ... ... ... \n",
+ "995 1 None 6 0.99 183 \n",
+ "996 1 None 4 0.99 179 \n",
+ "997 1 None 6 0.99 105 \n",
+ "998 1 None 5 2.99 101 \n",
+ "999 1 None 3 4.99 50 \n",
+ "\n",
+ " replacement_cost rating special_features \\\n",
+ "0 20.99 PG {Behind the Scenes, Deleted Scenes} \n",
+ "1 12.99 G {Trailers, Deleted Scenes} \n",
+ "2 18.99 NC-17 {Trailers, Deleted Scenes} \n",
+ "3 26.99 G {Commentaries, Behind the Scenes} \n",
+ "4 22.99 G {Deleted Scenes} \n",
+ ".. ... ... ... \n",
+ "995 9.99 G {Trailers, Behind the Scenes} \n",
+ "996 14.99 NC-17 {Trailers, Behind the Scenes} \n",
+ "997 10.99 NC-17 {Deleted Scenes} \n",
+ "998 28.99 R {Trailers, Deleted Scenes} \n",
+ "999 18.99 NC-17 {Trailers, Behind the Scenes, Commentaries} \n",
+ "\n",
+ " last_update \n",
+ "0 2006-02-15 05:03:42 \n",
+ "1 2006-02-15 05:03:42 \n",
+ "2 2006-02-15 05:03:42 \n",
+ "3 2006-02-15 05:03:42 \n",
+ "4 2006-02-15 05:03:42 \n",
+ ".. ... \n",
+ "995 2006-02-15 05:03:42 \n",
+ "996 2006-02-15 05:03:42 \n",
+ "997 2006-02-15 05:03:42 \n",
+ "998 2006-02-15 05:03:42 \n",
+ "999 2006-02-15 05:03:42 \n",
+ "\n",
+ "[1000 rows x 13 columns]"
+ ]
+ },
+ "execution_count": 12,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "pd.DataFrame(results, columns = column_names)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ },
{
"cell_type": "markdown",
"metadata": {},
@@ -35,11 +13468,11 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 13,
"metadata": {},
"outputs": [],
"source": [
- "# your code here\n"
+ "import pandas as pd\n"
]
},
{
@@ -51,11 +13484,280 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 15,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " :@computed_region_cbhk_fwbd | \n",
+ " :@computed_region_nnqa_25f4 | \n",
+ " fall | \n",
+ " geolocation | \n",
+ " id | \n",
+ " mass | \n",
+ " name | \n",
+ " nametype | \n",
+ " recclass | \n",
+ " reclat | \n",
+ " reclong | \n",
+ " year | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [6.08333, 50.... | \n",
+ " 1 | \n",
+ " 21.0 | \n",
+ " Aachen | \n",
+ " Valid | \n",
+ " L5 | \n",
+ " 50.77500 | \n",
+ " 6.08333 | \n",
+ " 1880-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [10.23333, 56... | \n",
+ " 2 | \n",
+ " 720.0 | \n",
+ " Aarhus | \n",
+ " Valid | \n",
+ " H6 | \n",
+ " 56.18333 | \n",
+ " 10.23333 | \n",
+ " 1951-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [-113, 54.216... | \n",
+ " 6 | \n",
+ " 107000.0 | \n",
+ " Abee | \n",
+ " Valid | \n",
+ " EH4 | \n",
+ " 54.21667 | \n",
+ " -113.00000 | \n",
+ " 1952-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [-99.9, 16.88... | \n",
+ " 10 | \n",
+ " 1914.0 | \n",
+ " Acapulco | \n",
+ " Valid | \n",
+ " Acapulcoite | \n",
+ " 16.88333 | \n",
+ " -99.90000 | \n",
+ " 1976-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [-64.95, -33.... | \n",
+ " 370 | \n",
+ " 780.0 | \n",
+ " Achiras | \n",
+ " Valid | \n",
+ " L6 | \n",
+ " -33.16667 | \n",
+ " -64.95000 | \n",
+ " 1902-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " | 995 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [79.41667, 13... | \n",
+ " 24009 | \n",
+ " 230.0 | \n",
+ " Tirupati | \n",
+ " Valid | \n",
+ " H6 | \n",
+ " 13.63333 | \n",
+ " 79.41667 | \n",
+ " 1934-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 996 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [-7.61123, 29... | \n",
+ " 54823 | \n",
+ " 7000.0 | \n",
+ " Tissint | \n",
+ " Valid | \n",
+ " Martian (shergottite) | \n",
+ " 29.48195 | \n",
+ " -7.61123 | \n",
+ " 2011-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 997 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [111.53333, -... | \n",
+ " 24011 | \n",
+ " 20000.0 | \n",
+ " Tjabe | \n",
+ " Valid | \n",
+ " H6 | \n",
+ " -7.08333 | \n",
+ " 111.53333 | \n",
+ " 1869-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 998 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [106.58333, -... | \n",
+ " 24012 | \n",
+ " 16500.0 | \n",
+ " Tjerebon | \n",
+ " Valid | \n",
+ " L5 | \n",
+ " -6.66667 | \n",
+ " 106.58333 | \n",
+ " 1922-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 999 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [34.76667, 47... | \n",
+ " 24019 | \n",
+ " 600.0 | \n",
+ " Tomakovka | \n",
+ " Valid | \n",
+ " LL6 | \n",
+ " 47.85000 | \n",
+ " 34.76667 | \n",
+ " 1905-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
1000 rows × 12 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " :@computed_region_cbhk_fwbd :@computed_region_nnqa_25f4 fall \\\n",
+ "0 NaN NaN Fell \n",
+ "1 NaN NaN Fell \n",
+ "2 NaN NaN Fell \n",
+ "3 NaN NaN Fell \n",
+ "4 NaN NaN Fell \n",
+ ".. ... ... ... \n",
+ "995 NaN NaN Fell \n",
+ "996 NaN NaN Fell \n",
+ "997 NaN NaN Fell \n",
+ "998 NaN NaN Fell \n",
+ "999 NaN NaN Fell \n",
+ "\n",
+ " geolocation id mass \\\n",
+ "0 {'type': 'Point', 'coordinates': [6.08333, 50.... 1 21.0 \n",
+ "1 {'type': 'Point', 'coordinates': [10.23333, 56... 2 720.0 \n",
+ "2 {'type': 'Point', 'coordinates': [-113, 54.216... 6 107000.0 \n",
+ "3 {'type': 'Point', 'coordinates': [-99.9, 16.88... 10 1914.0 \n",
+ "4 {'type': 'Point', 'coordinates': [-64.95, -33.... 370 780.0 \n",
+ ".. ... ... ... \n",
+ "995 {'type': 'Point', 'coordinates': [79.41667, 13... 24009 230.0 \n",
+ "996 {'type': 'Point', 'coordinates': [-7.61123, 29... 54823 7000.0 \n",
+ "997 {'type': 'Point', 'coordinates': [111.53333, -... 24011 20000.0 \n",
+ "998 {'type': 'Point', 'coordinates': [106.58333, -... 24012 16500.0 \n",
+ "999 {'type': 'Point', 'coordinates': [34.76667, 47... 24019 600.0 \n",
+ "\n",
+ " name nametype recclass reclat reclong \\\n",
+ "0 Aachen Valid L5 50.77500 6.08333 \n",
+ "1 Aarhus Valid H6 56.18333 10.23333 \n",
+ "2 Abee Valid EH4 54.21667 -113.00000 \n",
+ "3 Acapulco Valid Acapulcoite 16.88333 -99.90000 \n",
+ "4 Achiras Valid L6 -33.16667 -64.95000 \n",
+ ".. ... ... ... ... ... \n",
+ "995 Tirupati Valid H6 13.63333 79.41667 \n",
+ "996 Tissint Valid Martian (shergottite) 29.48195 -7.61123 \n",
+ "997 Tjabe Valid H6 -7.08333 111.53333 \n",
+ "998 Tjerebon Valid L5 -6.66667 106.58333 \n",
+ "999 Tomakovka Valid LL6 47.85000 34.76667 \n",
+ "\n",
+ " year \n",
+ "0 1880-01-01T00:00:00.000 \n",
+ "1 1951-01-01T00:00:00.000 \n",
+ "2 1952-01-01T00:00:00.000 \n",
+ "3 1976-01-01T00:00:00.000 \n",
+ "4 1902-01-01T00:00:00.000 \n",
+ ".. ... \n",
+ "995 1934-01-01T00:00:00.000 \n",
+ "996 2011-01-01T00:00:00.000 \n",
+ "997 1869-01-01T00:00:00.000 \n",
+ "998 1922-01-01T00:00:00.000 \n",
+ "999 1905-01-01T00:00:00.000 \n",
+ "\n",
+ "[1000 rows x 12 columns]"
+ ]
+ },
+ "execution_count": 15,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
- "# your code here\n"
+ "nasa = pd.read_json(\"nasa.json\")\n",
+ "\n",
+ "nasa"
]
},
{
@@ -67,11 +13769,154 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 17,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " :@computed_region_cbhk_fwbd | \n",
+ " :@computed_region_nnqa_25f4 | \n",
+ " fall | \n",
+ " geolocation | \n",
+ " id | \n",
+ " mass | \n",
+ " name | \n",
+ " nametype | \n",
+ " recclass | \n",
+ " reclat | \n",
+ " reclong | \n",
+ " year | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [6.08333, 50.... | \n",
+ " 1 | \n",
+ " 21.0 | \n",
+ " Aachen | \n",
+ " Valid | \n",
+ " L5 | \n",
+ " 50.77500 | \n",
+ " 6.08333 | \n",
+ " 1880-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [10.23333, 56... | \n",
+ " 2 | \n",
+ " 720.0 | \n",
+ " Aarhus | \n",
+ " Valid | \n",
+ " H6 | \n",
+ " 56.18333 | \n",
+ " 10.23333 | \n",
+ " 1951-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [-113, 54.216... | \n",
+ " 6 | \n",
+ " 107000.0 | \n",
+ " Abee | \n",
+ " Valid | \n",
+ " EH4 | \n",
+ " 54.21667 | \n",
+ " -113.00000 | \n",
+ " 1952-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [-99.9, 16.88... | \n",
+ " 10 | \n",
+ " 1914.0 | \n",
+ " Acapulco | \n",
+ " Valid | \n",
+ " Acapulcoite | \n",
+ " 16.88333 | \n",
+ " -99.90000 | \n",
+ " 1976-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Fell | \n",
+ " {'type': 'Point', 'coordinates': [-64.95, -33.... | \n",
+ " 370 | \n",
+ " 780.0 | \n",
+ " Achiras | \n",
+ " Valid | \n",
+ " L6 | \n",
+ " -33.16667 | \n",
+ " -64.95000 | \n",
+ " 1902-01-01T00:00:00.000 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " :@computed_region_cbhk_fwbd :@computed_region_nnqa_25f4 fall \\\n",
+ "0 NaN NaN Fell \n",
+ "1 NaN NaN Fell \n",
+ "2 NaN NaN Fell \n",
+ "3 NaN NaN Fell \n",
+ "4 NaN NaN Fell \n",
+ "\n",
+ " geolocation id mass name \\\n",
+ "0 {'type': 'Point', 'coordinates': [6.08333, 50.... 1 21.0 Aachen \n",
+ "1 {'type': 'Point', 'coordinates': [10.23333, 56... 2 720.0 Aarhus \n",
+ "2 {'type': 'Point', 'coordinates': [-113, 54.216... 6 107000.0 Abee \n",
+ "3 {'type': 'Point', 'coordinates': [-99.9, 16.88... 10 1914.0 Acapulco \n",
+ "4 {'type': 'Point', 'coordinates': [-64.95, -33.... 370 780.0 Achiras \n",
+ "\n",
+ " nametype recclass reclat reclong year \n",
+ "0 Valid L5 50.77500 6.08333 1880-01-01T00:00:00.000 \n",
+ "1 Valid H6 56.18333 10.23333 1951-01-01T00:00:00.000 \n",
+ "2 Valid EH4 54.21667 -113.00000 1952-01-01T00:00:00.000 \n",
+ "3 Valid Acapulcoite 16.88333 -99.90000 1976-01-01T00:00:00.000 \n",
+ "4 Valid L6 -33.16667 -64.95000 1902-01-01T00:00:00.000 "
+ ]
+ },
+ "execution_count": 17,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
- "# your code here\n"
+ "nasa.head()\n"
]
},
{
@@ -85,11 +13930,24 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 18,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Fell 996\n",
+ "Found 4\n",
+ "Name: fall, dtype: int64"
+ ]
+ },
+ "execution_count": 18,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
- "# your code here\n"
+ "nasa[\"fall\"].value_counts()\n"
]
},
{
@@ -101,11 +13959,11 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 20,
"metadata": {},
"outputs": [],
"source": [
- "# your code here\n"
+ "nasa.to_json(\"nasa_output.json\", orient = \"records\")\n"
]
},
{
@@ -123,17 +13981,17 @@
},
{
"cell_type": "code",
- "execution_count": 1,
+ "execution_count": 21,
"metadata": {},
"outputs": [],
"source": [
- "#Your pandas import here:\n",
+ "import pandas as pd\n",
"\n"
]
},
{
"cell_type": "code",
- "execution_count": 7,
+ "execution_count": 22,
"metadata": {},
"outputs": [],
"source": [
@@ -145,11 +14003,225 @@
},
{
"cell_type": "code",
- "execution_count": 8,
+ "execution_count": 27,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " 55 | \n",
+ " 0 | \n",
+ " 81 | \n",
+ " 0.1 | \n",
+ " -6 | \n",
+ " 11 | \n",
+ " 25 | \n",
+ " 88 | \n",
+ " 64 | \n",
+ " 4 | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " 56 | \n",
+ " 0 | \n",
+ " 96 | \n",
+ " 0 | \n",
+ " 52 | \n",
+ " -4 | \n",
+ " 40 | \n",
+ " 44 | \n",
+ " 4 | \n",
+ " 4 | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " 50 | \n",
+ " -1 | \n",
+ " 89 | \n",
+ " -7 | \n",
+ " 50 | \n",
+ " 0 | \n",
+ " 39 | \n",
+ " 40 | \n",
+ " 2 | \n",
+ " 1 | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " 53 | \n",
+ " 9 | \n",
+ " 79 | \n",
+ " 0 | \n",
+ " 42 | \n",
+ " -2 | \n",
+ " 25 | \n",
+ " 37 | \n",
+ " 12 | \n",
+ " 4 | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " 55 | \n",
+ " 2 | \n",
+ " 82 | \n",
+ " 0 | \n",
+ " 54 | \n",
+ " -6 | \n",
+ " 26 | \n",
+ " 28 | \n",
+ " 2 | \n",
+ " 1 | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " 41 | \n",
+ " 0 | \n",
+ " 84 | \n",
+ " 3 | \n",
+ " 38 | \n",
+ " -4 | \n",
+ " 43 | \n",
+ " 45 | \n",
+ " 2 | \n",
+ " 1 | \n",
+ "
\n",
+ " \n",
+ " | ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ " ... | \n",
+ "
\n",
+ " \n",
+ " | 14494 | \n",
+ " 80 | \n",
+ " 0 | \n",
+ " 84 | \n",
+ " 0 | \n",
+ " -36 | \n",
+ " -29 | \n",
+ " 4 | \n",
+ " 120 | \n",
+ " 116 | \n",
+ " 5 | \n",
+ "
\n",
+ " \n",
+ " | 14495 | \n",
+ " 55 | \n",
+ " 0 | \n",
+ " 81 | \n",
+ " 0 | \n",
+ " -20 | \n",
+ " 25 | \n",
+ " 26 | \n",
+ " 102 | \n",
+ " 76 | \n",
+ " 4 | \n",
+ "
\n",
+ " \n",
+ " | 14496 | \n",
+ " 55 | \n",
+ " 0 | \n",
+ " 77 | \n",
+ " 0 | \n",
+ " 12 | \n",
+ " -22 | \n",
+ " 22 | \n",
+ " 65 | \n",
+ " 42 | \n",
+ " 4 | \n",
+ "
\n",
+ " \n",
+ " | 14497 | \n",
+ " 37 | \n",
+ " 0 | \n",
+ " 103 | \n",
+ " 0 | \n",
+ " 18 | \n",
+ " -16 | \n",
+ " 66 | \n",
+ " 85 | \n",
+ " 20 | \n",
+ " 1 | \n",
+ "
\n",
+ " \n",
+ " | 14498 | \n",
+ " 56 | \n",
+ " 2 | \n",
+ " 98 | \n",
+ " 0 | \n",
+ " 52 | \n",
+ " 1 | \n",
+ " 42 | \n",
+ " 46 | \n",
+ " 4 | \n",
+ " 4 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
14499 rows × 10 columns
\n",
+ "
"
+ ],
+ "text/plain": [
+ " 55 0 81 0.1 -6 11 25 88 64 4\n",
+ "0 56 0 96 0 52 -4 40 44 4 4\n",
+ "1 50 -1 89 -7 50 0 39 40 2 1\n",
+ "2 53 9 79 0 42 -2 25 37 12 4\n",
+ "3 55 2 82 0 54 -6 26 28 2 1\n",
+ "4 41 0 84 3 38 -4 43 45 2 1\n",
+ "... .. .. ... ... .. .. .. ... ... ..\n",
+ "14494 80 0 84 0 -36 -29 4 120 116 5\n",
+ "14495 55 0 81 0 -20 25 26 102 76 4\n",
+ "14496 55 0 77 0 12 -22 22 65 42 4\n",
+ "14497 37 0 103 0 18 -16 66 85 20 1\n",
+ "14498 56 2 98 0 52 1 42 46 4 4\n",
+ "\n",
+ "[14499 rows x 10 columns]"
+ ]
+ },
+ "execution_count": 27,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "shuttle = pd.read_csv(\"https://archive.ics.uci.edu/ml/machine-learning-databases/statlog/shuttle/shuttle.tst\", sep=' ')\n",
+ "shuttle"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 33,
"metadata": {},
"outputs": [],
"source": [
- "# Your code here:\n",
+ "shuttle = pd.DataFrame(shuttle, columns = cols)\n",
"\n"
]
},
@@ -162,12 +14234,341 @@
},
{
"cell_type": "code",
- "execution_count": 9,
+ "execution_count": 35,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " time | \n",
+ " rad_flow | \n",
+ " fpv_close | \n",
+ " fpv_open | \n",
+ " high | \n",
+ " bypass | \n",
+ " bpv_close | \n",
+ " bpv_open | \n",
+ " class | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 5 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 6 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 7 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 8 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 9 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 10 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 11 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 12 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 13 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 14 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 15 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 16 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 17 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 18 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 19 | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " time rad_flow fpv_close fpv_open high bypass bpv_close bpv_open \\\n",
+ "0 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "1 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "2 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "3 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "4 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "5 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "6 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "7 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "8 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "9 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "10 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "11 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "12 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "13 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "14 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "15 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "16 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "17 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "18 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "19 NaN NaN NaN NaN NaN NaN NaN NaN \n",
+ "\n",
+ " class \n",
+ "0 NaN \n",
+ "1 NaN \n",
+ "2 NaN \n",
+ "3 NaN \n",
+ "4 NaN \n",
+ "5 NaN \n",
+ "6 NaN \n",
+ "7 NaN \n",
+ "8 NaN \n",
+ "9 NaN \n",
+ "10 NaN \n",
+ "11 NaN \n",
+ "12 NaN \n",
+ "13 NaN \n",
+ "14 NaN \n",
+ "15 NaN \n",
+ "16 NaN \n",
+ "17 NaN \n",
+ "18 NaN \n",
+ "19 NaN "
+ ]
+ },
+ "execution_count": 35,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
- "# Your code here:\n",
- "\n"
+ "shuttle.head()\n",
+ "\n",
+ "# do not know why its all null values"
]
},
{
@@ -179,11 +14580,11 @@
},
{
"cell_type": "code",
- "execution_count": 10,
+ "execution_count": 37,
"metadata": {},
"outputs": [],
"source": [
- "# Your code here:\n",
+ "shuttle.to_csv(\"shuttle.csv\", sep = \",\", index = False)\n",
"\n"
]
},
@@ -200,12 +14601,21 @@
},
{
"cell_type": "code",
- "execution_count": 11,
+ "execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
- "# Your code here:\n",
- "\n"
+ "import pandas as pd"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "\n",
+ "astronauts = pd.read_excel(\"astronauts.xls\")\n"
]
},
{
@@ -217,11 +14627,210 @@
},
{
"cell_type": "code",
- "execution_count": 12,
+ "execution_count": 15,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " Name | \n",
+ " Year | \n",
+ " Group | \n",
+ " Status | \n",
+ " Birth Date | \n",
+ " Birth Place | \n",
+ " Gender | \n",
+ " Alma Mater | \n",
+ " Undergraduate Major | \n",
+ " Graduate Major | \n",
+ " Military Rank | \n",
+ " Military Branch | \n",
+ " Space Flights | \n",
+ " Space Flight (hr) | \n",
+ " Space Walks | \n",
+ " Space Walks (hr) | \n",
+ " Missions | \n",
+ " Death Date | \n",
+ " Death Mission | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " Joseph M. Acaba | \n",
+ " 2004.0 | \n",
+ " 19.0 | \n",
+ " Active | \n",
+ " 1967-05-17 | \n",
+ " Inglewood, CA | \n",
+ " Male | \n",
+ " University of California-Santa Barbara; Univer... | \n",
+ " Geology | \n",
+ " Geology | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " 2 | \n",
+ " 3307 | \n",
+ " 2 | \n",
+ " 13.0 | \n",
+ " STS-119 (Discovery), ISS-31/32 (Soyuz) | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " Loren W. Acton | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " Retired | \n",
+ " 1936-03-07 | \n",
+ " Lewiston, MT | \n",
+ " Male | \n",
+ " Montana State University; University of Colorado | \n",
+ " Engineering Physics | \n",
+ " Solar Physics | \n",
+ " NaN | \n",
+ " NaN | \n",
+ " 1 | \n",
+ " 190 | \n",
+ " 0 | \n",
+ " 0.0 | \n",
+ " STS 51-F (Challenger) | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " James C. Adamson | \n",
+ " 1984.0 | \n",
+ " 10.0 | \n",
+ " Retired | \n",
+ " 1946-03-03 | \n",
+ " Warsaw, NY | \n",
+ " Male | \n",
+ " US Military Academy; Princeton University | \n",
+ " Engineering | \n",
+ " Aerospace Engineering | \n",
+ " Colonel | \n",
+ " US Army (Retired) | \n",
+ " 2 | \n",
+ " 334 | \n",
+ " 0 | \n",
+ " 0.0 | \n",
+ " STS-28 (Columbia), STS-43 (Atlantis) | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " Thomas D. Akers | \n",
+ " 1987.0 | \n",
+ " 12.0 | \n",
+ " Retired | \n",
+ " 1951-05-20 | \n",
+ " St. Louis, MO | \n",
+ " Male | \n",
+ " University of Missouri-Rolla | \n",
+ " Applied Mathematics | \n",
+ " Applied Mathematics | \n",
+ " Colonel | \n",
+ " US Air Force (Retired) | \n",
+ " 4 | \n",
+ " 814 | \n",
+ " 4 | \n",
+ " 29.0 | \n",
+ " STS-41 (Discovery), STS-49 (Endeavor), STS-61 ... | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " Buzz Aldrin | \n",
+ " 1963.0 | \n",
+ " 3.0 | \n",
+ " Retired | \n",
+ " 1930-01-20 | \n",
+ " Montclair, NJ | \n",
+ " Male | \n",
+ " US Military Academy; MIT | \n",
+ " Mechanical Engineering | \n",
+ " Astronautics | \n",
+ " Colonel | \n",
+ " US Air Force (Retired) | \n",
+ " 2 | \n",
+ " 289 | \n",
+ " 2 | \n",
+ " 8.0 | \n",
+ " Gemini 12, Apollo 11 | \n",
+ " NaT | \n",
+ " NaN | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Name Year Group Status Birth Date Birth Place Gender \\\n",
+ "0 Joseph M. Acaba 2004.0 19.0 Active 1967-05-17 Inglewood, CA Male \n",
+ "1 Loren W. Acton NaN NaN Retired 1936-03-07 Lewiston, MT Male \n",
+ "2 James C. Adamson 1984.0 10.0 Retired 1946-03-03 Warsaw, NY Male \n",
+ "3 Thomas D. Akers 1987.0 12.0 Retired 1951-05-20 St. Louis, MO Male \n",
+ "4 Buzz Aldrin 1963.0 3.0 Retired 1930-01-20 Montclair, NJ Male \n",
+ "\n",
+ " Alma Mater Undergraduate Major \\\n",
+ "0 University of California-Santa Barbara; Univer... Geology \n",
+ "1 Montana State University; University of Colorado Engineering Physics \n",
+ "2 US Military Academy; Princeton University Engineering \n",
+ "3 University of Missouri-Rolla Applied Mathematics \n",
+ "4 US Military Academy; MIT Mechanical Engineering \n",
+ "\n",
+ " Graduate Major Military Rank Military Branch Space Flights \\\n",
+ "0 Geology NaN NaN 2 \n",
+ "1 Solar Physics NaN NaN 1 \n",
+ "2 Aerospace Engineering Colonel US Army (Retired) 2 \n",
+ "3 Applied Mathematics Colonel US Air Force (Retired) 4 \n",
+ "4 Astronautics Colonel US Air Force (Retired) 2 \n",
+ "\n",
+ " Space Flight (hr) Space Walks Space Walks (hr) \\\n",
+ "0 3307 2 13.0 \n",
+ "1 190 0 0.0 \n",
+ "2 334 0 0.0 \n",
+ "3 814 4 29.0 \n",
+ "4 289 2 8.0 \n",
+ "\n",
+ " Missions Death Date Death Mission \n",
+ "0 STS-119 (Discovery), ISS-31/32 (Soyuz) NaT NaN \n",
+ "1 STS 51-F (Challenger) NaT NaN \n",
+ "2 STS-28 (Columbia), STS-43 (Atlantis) NaT NaN \n",
+ "3 STS-41 (Discovery), STS-49 (Endeavor), STS-61 ... NaT NaN \n",
+ "4 Gemini 12, Apollo 11 NaT NaN "
+ ]
+ },
+ "execution_count": 15,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
- "# Your code here:\n",
+ "astronauts.head()\n",
"\n"
]
},
@@ -234,11 +14843,33 @@
},
{
"cell_type": "code",
- "execution_count": 13,
+ "execution_count": 16,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "Physics 35\n",
+ "Aerospace Engineering 33\n",
+ "Mechanical Engineering 30\n",
+ "Aeronautical Engineering 28\n",
+ "Electrical Engineering 23\n",
+ " ..\n",
+ "Astronomy 1\n",
+ "Marine Engineering & Nautical Science 1\n",
+ "Philosophy 1\n",
+ "Bioscience 1\n",
+ "Military Science 1\n",
+ "Name: Undergraduate Major, Length: 83, dtype: int64"
+ ]
+ },
+ "execution_count": 16,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
- "# Your code here:\n",
+ "astronauts[\"Undergraduate Major\"].value_counts()\n",
"\n"
]
},
@@ -251,12 +14882,12 @@
},
{
"cell_type": "code",
- "execution_count": 14,
+ "execution_count": 17,
"metadata": {},
"outputs": [],
"source": [
- "# Your code here:\n",
- "\n"
+ "\n",
+ "astronauts.to_csv(\"astronaut.csv\", sep = \"\\t\", index = False)\n"
]
},
{
@@ -281,7 +14912,7 @@
],
"metadata": {
"kernelspec": {
- "display_name": "Python 3",
+ "display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
@@ -295,7 +14926,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
- "version": "3.7.6"
+ "version": "3.10.9"
}
},
"nbformat": 4,
diff --git a/your-code/nasa_output.json b/your-code/nasa_output.json
new file mode 100644
index 0000000..9f214b7
--- /dev/null
+++ b/your-code/nasa_output.json
@@ -0,0 +1 @@
+[{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[6.08333,50.775]},"id":1,"mass":21.0,"name":"Aachen","nametype":"Valid","recclass":"L5","reclat":50.775,"reclong":6.08333,"year":"1880-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.23333,56.18333]},"id":2,"mass":720.0,"name":"Aarhus","nametype":"Valid","recclass":"H6","reclat":56.18333,"reclong":10.23333,"year":"1951-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-113,54.21667]},"id":6,"mass":107000.0,"name":"Abee","nametype":"Valid","recclass":"EH4","reclat":54.21667,"reclong":-113.0,"year":"1952-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-99.9,16.88333]},"id":10,"mass":1914.0,"name":"Acapulco","nametype":"Valid","recclass":"Acapulcoite","reclat":16.88333,"reclong":-99.9,"year":"1976-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-64.95,-33.16667]},"id":370,"mass":780.0,"name":"Achiras","nametype":"Valid","recclass":"L6","reclat":-33.16667,"reclong":-64.95,"year":"1902-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[71.8,32.1]},"id":379,"mass":4239.0,"name":"Adhi Kot","nametype":"Valid","recclass":"EH4","reclat":32.1,"reclong":71.8,"year":"1919-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[95.16667,44.83333]},"id":390,"mass":910.0,"name":"Adzhi-Bogdo (stone)","nametype":"Valid","recclass":"LL3-6","reclat":44.83333,"reclong":95.16667,"year":"1949-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.61667,44.21667]},"id":392,"mass":30000.0,"name":"Agen","nametype":"Valid","recclass":"H5","reclat":44.21667,"reclong":0.61667,"year":"1814-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-65.23333,-31.6]},"id":398,"mass":1620.0,"name":"Aguada","nametype":"Valid","recclass":"L6","reclat":-31.6,"reclong":-65.23333,"year":"1930-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-64.55,-30.86667]},"id":417,"mass":1440.0,"name":"Aguila Blanca","nametype":"Valid","recclass":"L","reclat":-30.86667,"reclong":-64.55,"year":"1920-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-9.57028,16.39806]},"id":423,"mass":1000.0,"name":"Aioun el Atrouss","nametype":"Valid","recclass":"Diogenite-pm","reclat":16.39806,"reclong":-9.57028,"year":"1974-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.38333,19.08333]},"id":424,"mass":24000.0,"name":"A\u00efr","nametype":"Valid","recclass":"L6","reclat":19.08333,"reclong":8.38333,"year":"1925-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[2.33333,50.66667]},"id":425,"mass":null,"name":"Aire-sur-la-Lys","nametype":"Valid","recclass":"Unknown","reclat":50.66667,"reclong":2.33333,"year":"1769-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35.05,29.51667]},"id":426,"mass":779.0,"name":"Akaba","nametype":"Valid","recclass":"L6","reclat":29.51667,"reclong":35.05,"year":"1949-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[77.95,29.71667]},"id":427,"mass":1800.0,"name":"Akbarpur","nametype":"Valid","recclass":"H4","reclat":29.71667,"reclong":77.95,"year":"1838-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.43333,8.91667]},"id":432,"mass":3000.0,"name":"Akwanga","nametype":"Valid","recclass":"H","reclat":8.91667,"reclong":8.43333,"year":"1959-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[42.81667,39.91667]},"id":433,"mass":50000.0,"name":"Akyumak","nametype":"Valid","recclass":"Iron, IVA","reclat":39.91667,"reclong":42.81667,"year":"1981-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[39.51667,24.41667]},"id":446,"mass":160.0,"name":"Al Rais","nametype":"Valid","recclass":"CR2-an","reclat":24.41667,"reclong":39.51667,"year":"1957-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[28.96,13.66033]},"id":447,"mass":700.0,"name":"Al Zarnkh","nametype":"Valid","recclass":"LL5","reclat":13.66033,"reclong":28.96,"year":"2001-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[4.08333,44.11667]},"id":448,"mass":6000.0,"name":"Alais","nametype":"Valid","recclass":"CI1","reclat":44.11667,"reclong":4.08333,"year":"1806-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.01667,44.65]},"id":453,"mass":2000.0,"name":"Albareto","nametype":"Valid","recclass":"L\/LL4","reclat":44.65,"reclong":11.01667,"year":"1766-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[22.66667,2]},"id":454,"mass":625.0,"name":"Alberta","nametype":"Valid","recclass":"L","reclat":2.0,"reclong":22.66667,"year":"1949-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[6.01533,45.82133]},"id":458,"mass":252.0,"name":"Alby sur Ch\u00e9ran","nametype":"Valid","recclass":"Eucrite-mmict","reclat":45.82133,"reclong":6.01533,"year":"2002-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-1.78333,51.78333]},"id":461,"mass":700.0,"name":"Aldsworth","nametype":"Valid","recclass":"LL5","reclat":51.78333,"reclong":-1.78333,"year":"1835-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[37.13333,36.23333]},"id":462,"mass":3200.0,"name":"Aleppo","nametype":"Valid","recclass":"L6","reclat":36.23333,"reclong":37.13333,"year":"1873-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.75,44.88333]},"id":463,"mass":908.0,"name":"Alessandria","nametype":"Valid","recclass":"H5","reclat":44.88333,"reclong":8.75,"year":"1860-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[31.81667,50.95]},"id":465,"mass":9251.0,"name":"Alexandrovsky","nametype":"Valid","recclass":"H4","reclat":50.95,"reclong":31.81667,"year":"1900-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.15,45.26667]},"id":466,"mass":228000.0,"name":"Alfianello","nametype":"Valid","recclass":"L6","reclat":45.26667,"reclong":10.15,"year":"1883-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":50.0,":@computed_region_nnqa_25f4":429.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-85.88333,42.53333]},"id":2276,"mass":32000.0,"name":"Allegan","nametype":"Valid","recclass":"H5","reclat":42.53333,"reclong":-85.88333,"year":"1899-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-105.31667,26.96667]},"id":2278,"mass":2000000.0,"name":"Allende","nametype":"Valid","recclass":"CV3","reclat":26.96667,"reclong":-105.31667,"year":"1969-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[32.41275,20.74575]},"id":48915,"mass":3950.0,"name":"Almahata Sitta","nametype":"Valid","recclass":"Ureilite-an","reclat":20.74575,"reclong":32.41275,"year":"2008-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[44.21556,35.27333]},"id":2284,"mass":6000.0,"name":"Alta'ameem","nametype":"Valid","recclass":"LL5","reclat":35.27333,"reclong":44.21556,"year":"1977-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.25,27.66667]},"id":2290,"mass":6400.0,"name":"Ambapur Nagla","nametype":"Valid","recclass":"H5","reclat":27.66667,"reclong":78.25,"year":"1895-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[85.56667,26.58333]},"id":2294,"mass":2700.0,"name":"Andhara","nametype":"Valid","recclass":"Stone-uncl","reclat":26.58333,"reclong":85.56667,"year":"1880-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":49.0,":@computed_region_nnqa_25f4":1723.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-70.75,44.61667]},"id":2295,"mass":3200.0,"name":"Andover","nametype":"Valid","recclass":"L6","reclat":44.61667,"reclong":-70.75,"year":"1898-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[37.5,48.7]},"id":2296,"mass":600.0,"name":"Andreevka","nametype":"Valid","recclass":"L3","reclat":48.7,"reclong":37.5,"year":"1969-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.86667,20.88333]},"id":2298,"mass":17900.0,"name":"Andura","nametype":"Valid","recclass":"H6","reclat":20.88333,"reclong":76.86667,"year":"1939-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Found","geolocation":{"type":"Point","coordinates":[0,0]},"id":50693,"mass":256.8,"name":"Northwest Africa 5815","nametype":"Valid","recclass":"L5","reclat":0.0,"reclong":0.0,"year":null},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.55,47.46667]},"id":2301,"mass":null,"name":"Angers","nametype":"Valid","recclass":"L6","reclat":47.46667,"reclong":-0.55,"year":"1822-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-44.31667,-22.96667]},"id":2302,"mass":1500.0,"name":"Angra dos Reis (stone)","nametype":"Valid","recclass":"Angrite","reclat":-22.96667,"reclong":-44.31667,"year":"1869-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[39.71667,9.53333]},"id":2304,"mass":6500.0,"name":"Ankober","nametype":"Valid","recclass":"H4","reclat":9.53333,"reclong":39.71667,"year":"1942-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[105.18333,25.15]},"id":2305,"mass":2500.0,"name":"Anlong","nametype":"Valid","recclass":"H5","reclat":25.15,"reclong":105.18333,"year":"1971-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[140.78556,40.81056]},"id":2313,"mass":320.0,"name":"Aomori","nametype":"Valid","recclass":"L6","reclat":40.81056,"reclong":140.78556,"year":"1984-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-2.71667,53.58333]},"id":2318,"mass":15000.0,"name":"Appley Bridge","nametype":"Valid","recclass":"LL6","reclat":53.58333,"reclong":-2.71667,"year":"1914-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[5.38333,43.86667]},"id":2320,"mass":3200.0,"name":"Apt","nametype":"Valid","recclass":"L6","reclat":43.86667,"reclong":5.38333,"year":"1803-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-66,-33]},"id":2325,"mass":810.0,"name":"Arbol Solo","nametype":"Valid","recclass":"H5","reclat":-33.0,"reclong":-66.0,"year":"1954-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":18.0,":@computed_region_nnqa_25f4":2697.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-94.3,38.5]},"id":2329,"mass":5070.0,"name":"Archie","nametype":"Valid","recclass":"H6","reclat":38.5,"reclong":-94.3,"year":"1932-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-60.66667,-31.41667]},"id":2340,"mass":7450.0,"name":"Arroyo Aguiar","nametype":"Valid","recclass":"H5","reclat":-31.41667,"reclong":-60.66667,"year":"1950-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[9.03333,42.45]},"id":2345,"mass":41.0,"name":"Asco","nametype":"Valid","recclass":"H6","reclat":42.45,"reclong":9.03333,"year":"1805-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":23.0,":@computed_region_nnqa_25f4":774.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-97.01,31.805]},"id":48954,"mass":9500.0,"name":"Ash Creek","nametype":"Valid","recclass":"L6","reclat":31.805,"reclong":-97.01,"year":"2009-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.3,52.05]},"id":2346,"mass":1300.0,"name":"Ashdon","nametype":"Valid","recclass":"L6","reclat":52.05,"reclong":0.3,"year":"1923-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[12.55,43.03333]},"id":2353,"mass":2000.0,"name":"Assisi","nametype":"Valid","recclass":"H5","reclat":43.03333,"reclong":12.55,"year":"1886-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[80.625,25.25417]},"id":4883,"mass":1280.0,"name":"Atarra","nametype":"Valid","recclass":"L4","reclat":25.25417,"reclong":80.625,"year":"1920-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-103.66667,20.06667]},"id":4884,"mass":94.2,"name":"Atemajac","nametype":"Valid","recclass":"L6","reclat":20.06667,"reclong":-103.66667,"year":"1896-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":29.0,":@computed_region_nnqa_25f4":3134.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-87,34.75]},"id":4885,"mass":265.0,"name":"Athens","nametype":"Valid","recclass":"LL6","reclat":34.75,"reclong":-87.0,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":20.0,":@computed_region_nnqa_25f4":602.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-96.15,34.31667]},"id":4888,"mass":1384.2,"name":"Atoka","nametype":"Valid","recclass":"L6","reclat":34.31667,"reclong":-96.15,"year":"1945-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[5.16667,44.38333]},"id":4893,"mass":800.0,"name":"Aubres","nametype":"Valid","recclass":"Aubrite","reclat":44.38333,"reclong":5.16667,"year":"1836-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[3.66667,36.16667]},"id":4899,"mass":50000.0,"name":"Aumale","nametype":"Valid","recclass":"L6","reclat":36.16667,"reclong":3.66667,"year":"1865-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[3.23333,44.33333]},"id":4900,"mass":2000.0,"name":"Aumieres","nametype":"Valid","recclass":"L6","reclat":44.33333,"reclong":3.23333,"year":"1842-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.58333,43.08333]},"id":4903,"mass":50000.0,"name":"Ausson","nametype":"Valid","recclass":"L5","reclat":43.08333,"reclong":0.58333,"year":"1858-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-49.95083,-21.46028]},"id":4905,"mass":9330.0,"name":"Avanhandava","nametype":"Valid","recclass":"H4","reclat":-21.46028,"reclong":-49.95083,"year":"1952-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[13.5,46]},"id":4906,"mass":1230.0,"name":"Avce","nametype":"Valid","recclass":"Iron, IIAB","reclat":46.0,"reclong":13.5,"year":"1908-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-103.5,25]},"id":4907,"mass":146.0,"name":"Avilez","nametype":"Valid","recclass":"H","reclat":25.0,"reclong":-103.5,"year":"1855-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[32.83333,2.71667]},"id":4910,"mass":134.0,"name":"Awere","nametype":"Valid","recclass":"L4","reclat":2.71667,"reclong":32.83333,"year":"1968-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":11.0,":@computed_region_nnqa_25f4":1989.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-108,36.8]},"id":4913,"mass":2830.0,"name":"Aztec","nametype":"Valid","recclass":"L6","reclat":36.8,"reclong":-108.0,"year":"1938-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[38,48.6]},"id":4917,"mass":18000.0,"name":"Bachmut","nametype":"Valid","recclass":"L6","reclat":48.6,"reclong":38.0,"year":"1814-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.5,28.48333]},"id":4922,"mass":10322.0,"name":"Bahjoi","nametype":"Valid","recclass":"Iron, IAB-sLL","reclat":28.48333,"reclong":78.5,"year":"1934-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":37.0,":@computed_region_nnqa_25f4":2373.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-82.48333,35.96667]},"id":4925,"mass":3700.0,"name":"Bald Mountain","nametype":"Valid","recclass":"L4","reclat":35.96667,"reclong":-82.48333,"year":"1929-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":32.0,":@computed_region_nnqa_25f4":495.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-88.66667,34.5]},"id":4926,"mass":345.0,"name":"Baldwyn","nametype":"Valid","recclass":"L6","reclat":34.5,"reclong":-88.66667,"year":"1922-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16.38333,5.38333]},"id":4928,"mass":1000.0,"name":"Bali","nametype":"Valid","recclass":"CV3","reclat":5.38333,"reclong":16.38333,"year":"1907-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[101.18333,16.66667]},"id":4934,"mass":16700.0,"name":"Ban Rong Du","nametype":"Valid","recclass":"Iron, ungrouped","reclat":16.66667,"reclong":101.18333,"year":"1993-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[107.6,-6.91667]},"id":4935,"mass":11500.0,"name":"Bandong","nametype":"Valid","recclass":"LL6","reclat":-6.91667,"reclong":107.6,"year":"1871-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.33333,27.7]},"id":4936,"mass":15000.0,"name":"Bansur","nametype":"Valid","recclass":"L6","reclat":27.7,"reclong":76.33333,"year":"1892-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.2,30.4]},"id":4937,"mass":14.0,"name":"Banswal","nametype":"Valid","recclass":"L5","reclat":30.4,"reclong":78.2,"year":"1913-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[106,-6.33333]},"id":4938,"mass":629.0,"name":"Banten","nametype":"Valid","recclass":"CM2","reclat":-6.33333,"reclong":106.0,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.05,43.95]},"id":4942,"mass":6400.0,"name":"Barbotan","nametype":"Valid","recclass":"H5","reclat":43.95,"reclong":-0.05,"year":"1790-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[2.16667,41.36667]},"id":4944,"mass":null,"name":"Barcelona (stone)","nametype":"Valid","recclass":"OC","reclat":41.36667,"reclong":2.16667,"year":"1704-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-2.5,42.38333]},"id":4946,"mass":3200.0,"name":"Barea","nametype":"Valid","recclass":"Mesosiderite-A1","reclat":42.38333,"reclong":-2.5,"year":"1842-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[84.08333,52.73333]},"id":4947,"mass":23.2,"name":"Barnaul","nametype":"Valid","recclass":"H5","reclat":52.73333,"reclong":84.08333,"year":"1904-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[9.1,52]},"id":4948,"mass":17.0,"name":"Barntrup","nametype":"Valid","recclass":"LL4","reclat":52.0,"reclong":9.1,"year":"1886-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.8,31.61667]},"id":4949,"mass":4500.0,"name":"Baroti","nametype":"Valid","recclass":"L6","reclat":31.61667,"reclong":76.8,"year":"1910-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-1.33972,52.56528]},"id":4954,"mass":44000.0,"name":"Barwell","nametype":"Valid","recclass":"L5","reclat":52.56528,"reclong":-1.33972,"year":"1965-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-5.9,15.78333]},"id":44876,"mass":29560.0,"name":"Bassikounou","nametype":"Valid","recclass":"H5","reclat":15.78333,"reclong":-5.9,"year":"2006-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[20.93583,52.03333]},"id":4957,"mass":15500.0,"name":"Baszk\u00f3wka","nametype":"Valid","recclass":"L5","reclat":52.03333,"reclong":20.93583,"year":"1994-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":21.0,":@computed_region_nnqa_25f4":662.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-98.31667,45.41667]},"id":4974,"mass":21000.0,"name":"Bath","nametype":"Valid","recclass":"H4","reclat":45.41667,"reclong":-98.31667,"year":"1892-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":36.0,":@computed_region_nnqa_25f4":1921.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-83.75,38.25]},"id":4975,"mass":86000.0,"name":"Bath Furnace","nametype":"Valid","recclass":"L6","reclat":38.25,"reclong":-83.75,"year":"1902-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":10.0,":@computed_region_nnqa_25f4":2397.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-117.18913,40.66813]},"id":56133,"mass":2900.0,"name":"Battle Mountain","nametype":"Valid","recclass":"L6","reclat":40.66813,"reclong":-117.18913,"year":"2012-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.18333,11.08333]},"id":4976,"mass":1557.0,"name":"Bawku","nametype":"Valid","recclass":"LL5","reclat":11.08333,"reclong":-0.18333,"year":"1989-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":18.0,":@computed_region_nnqa_25f4":2216.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-93.5,36.75]},"id":4977,"mass":611.0,"name":"Baxter","nametype":"Valid","recclass":"L6","reclat":36.75,"reclong":-93.5,"year":"1916-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":17.0,":@computed_region_nnqa_25f4":1285.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-101.2,39.8]},"id":4984,"mass":16000.0,"name":"Beardsley","nametype":"Valid","recclass":"H5","reclat":39.8,"reclong":-101.2,"year":"1929-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-117.33333,51.16667]},"id":4986,"mass":14000.0,"name":"Beaver Creek","nametype":"Valid","recclass":"H5","reclat":51.16667,"reclong":-117.33333,"year":"1893-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-4.1,53.01667]},"id":4993,"mass":794.0,"name":"Beddgelert","nametype":"Valid","recclass":"H5","reclat":53.01667,"reclong":-4.1,"year":"1949-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":23.0,":@computed_region_nnqa_25f4":1978.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-96.46667,33.6]},"id":5005,"mass":375.0,"name":"Bells","nametype":"Valid","recclass":"C2-ung","reclat":33.6,"reclong":-96.46667,"year":"1961-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-64.86667,-32.33333]},"id":5009,"mass":null,"name":"Belville","nametype":"Valid","recclass":"OC","reclat":-32.33333,"reclong":-64.86667,"year":"1937-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[82.91667,25.36667]},"id":5011,"mass":3700.0,"name":"Benares (a)","nametype":"Valid","recclass":"LL4","reclat":25.36667,"reclong":82.91667,"year":"1798-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-8.15,32.25]},"id":30443,"mass":25000.0,"name":"Benguerir","nametype":"Valid","recclass":"LL6","reclat":32.25,"reclong":-8.15,"year":"2004-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.8,32.86667]},"id":5018,"mass":19000.0,"name":"Beni M'hira","nametype":"Valid","recclass":"L6","reclat":32.86667,"reclong":10.8,"year":"2001-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":34.0,":@computed_region_nnqa_25f4":1869.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-89.15,39.08333]},"id":5021,"mass":1770.5,"name":"Benld","nametype":"Valid","recclass":"H6","reclat":39.08333,"reclong":-89.15,"year":"1938-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[28.41667,-26.16667]},"id":5023,"mass":3880.0,"name":"Benoni","nametype":"Valid","recclass":"H6","reclat":-26.16667,"reclong":28.41667,"year":"1943-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-7,30]},"id":5024,"mass":45000.0,"name":"Bensour","nametype":"Valid","recclass":"LL6","reclat":30.0,"reclong":-7.0,"year":"2002-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-67.55,45.95]},"id":5026,"mass":2840.0,"name":"Benton","nametype":"Valid","recclass":"LL6","reclat":45.95,"reclong":-67.55,"year":"1949-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-58.32833,-31.91]},"id":48975,"mass":270.0,"name":"Berduc","nametype":"Valid","recclass":"L6","reclat":-31.91,"reclong":-58.32833,"year":"2008-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-3.65,11.65]},"id":5028,"mass":18000.0,"name":"B\u00e9r\u00e9ba","nametype":"Valid","recclass":"Eucrite-mmict","reclat":11.65,"reclong":-3.65,"year":"1924-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-3.8,41.68333]},"id":5029,"mass":1440.0,"name":"Berlanguillas","nametype":"Valid","recclass":"L6","reclat":41.68333,"reclong":-3.8,"year":"1811-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":9.0,":@computed_region_nnqa_25f4":1072.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-105.02325,40.30583]},"id":47355,"mass":960.0,"name":"Berthoud","nametype":"Valid","recclass":"Eucrite-mmict","reclat":40.30583,"reclong":-105.02325,"year":"2004-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":47.0,":@computed_region_nnqa_25f4":2030.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-73.83333,42.53333]},"id":5032,"mass":13.9,"name":"Bethlehem","nametype":"Valid","recclass":"H","reclat":42.53333,"reclong":-73.83333,"year":"1859-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.23333,43.21667]},"id":5034,"mass":2000.0,"name":"Beuste","nametype":"Valid","recclass":"L5","reclat":43.21667,"reclong":-0.23333,"year":"1859-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35.5,33.88333]},"id":5035,"mass":1100.0,"name":"Beyrout","nametype":"Valid","recclass":"LL3.8","reclat":33.88333,"reclong":35.5,"year":"1921-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[74.83333,20.88333]},"id":5037,"mass":18.0,"name":"Bhagur","nametype":"Valid","recclass":"L6","reclat":20.88333,"reclong":74.83333,"year":"1877-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[73.11528,26.50833]},"id":36591,"mass":678.0,"name":"Bhawad","nametype":"Valid","recclass":"LL6","reclat":26.50833,"reclong":73.11528,"year":"2002-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[71.46667,20.83333]},"id":5039,"mass":100.0,"name":"Bherai","nametype":"Valid","recclass":"L6","reclat":20.83333,"reclong":71.46667,"year":"1893-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[90.65,22.68333]},"id":5040,"mass":1047.0,"name":"Bhola","nametype":"Valid","recclass":"LL3-6","reclat":22.68333,"reclong":90.65,"year":"1940-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[86.9,22.08333]},"id":5041,"mass":2500.0,"name":"Bholghati","nametype":"Valid","recclass":"Howardite","reclat":22.08333,"reclong":86.9,"year":"1905-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[23.2,53.1]},"id":5042,"mass":4000.0,"name":"Bialystok","nametype":"Valid","recclass":"Eucrite-pmict","reclat":53.1,"reclong":23.2,"year":"1827-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[27.16667,50.13333]},"id":5043,"mass":1900.0,"name":"Bielokrynitschie","nametype":"Valid","recclass":"H4","reclat":50.13333,"reclong":27.16667,"year":"1887-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.08333,12.45]},"id":5045,"mass":25000.0,"name":"Bilanga","nametype":"Valid","recclass":"Diogenite","reclat":12.45,"reclong":-0.08333,"year":"1999-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[115.67639,-33.15639]},"id":5051,"mass":488.1,"name":"Binningup","nametype":"Valid","recclass":"H5","reclat":-33.15639,"reclong":115.67639,"year":"1984-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[5.3,13.76667]},"id":5056,"mass":560.0,"name":"Birni N'konni","nametype":"Valid","recclass":"H4","reclat":13.76667,"reclong":5.3,"year":"1923-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":33.0,":@computed_region_nnqa_25f4":657.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-80.28333,34.16667]},"id":5059,"mass":6000.0,"name":"Bishopville","nametype":"Valid","recclass":"Aubrite","reclat":34.16667,"reclong":-80.28333,"year":"1843-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[82.6,25.38333]},"id":5060,"mass":1039.0,"name":"Bishunpur","nametype":"Valid","recclass":"LL3.15","reclat":25.38333,"reclong":82.6,"year":"1895-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[30.16667,49.78333]},"id":5063,"mass":1850.0,"name":"Bjelaja Zerkov","nametype":"Valid","recclass":"H6","reclat":49.78333,"reclong":30.16667,"year":"1796-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[25.8,60.4]},"id":5064,"mass":330000.0,"name":"Bjurb\u00f6le","nametype":"Valid","recclass":"L\/LL4","reclat":60.4,"reclong":25.8,"year":"1899-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":48.0,":@computed_region_nnqa_25f4":2495.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-78.08333,40.91667]},"id":5065,"mass":705.0,"name":"Black Moshannan Park","nametype":"Valid","recclass":"L5","reclat":40.91667,"reclong":-78.08333,"year":"1941-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":20.0,":@computed_region_nnqa_25f4":2164.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-97.33333,36.83333]},"id":5068,"mass":2381.0,"name":"Blackwell","nametype":"Valid","recclass":"L5","reclat":36.83333,"reclong":-97.33333,"year":"1906-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":23.0,":@computed_region_nnqa_25f4":3063.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-98.83333,31.83333]},"id":5071,"mass":5100.0,"name":"Blanket","nametype":"Valid","recclass":"L6","reclat":31.83333,"reclong":-98.83333,"year":"1909-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16.63333,49.36667]},"id":5072,"mass":470.0,"name":"Blansko","nametype":"Valid","recclass":"H6","reclat":49.36667,"reclong":16.63333,"year":"1833-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":34.0,":@computed_region_nnqa_25f4":1795.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-89.00417,40.48]},"id":5076,"mass":67.8,"name":"Bloomington","nametype":"Valid","recclass":"LL6","reclat":40.48,"reclong":-89.00417,"year":"1938-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[115.83333,33.83333]},"id":5090,"mass":7500.0,"name":"Bo Xian","nametype":"Valid","recclass":"LL3.9","reclat":33.83333,"reclong":115.83333,"year":"1977-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-102,23]},"id":5093,"mass":56.0,"name":"Bocas","nametype":"Valid","recclass":"L6","reclat":23.0,"reclong":-102.0,"year":"1804-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.7,12.5]},"id":5097,"mass":8800.0,"name":"Bogou","nametype":"Valid","recclass":"Iron, IAB-MG","reclat":12.5,"reclong":0.7,"year":"1962-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[131.63333,44.55]},"id":5098,"mass":256000.0,"name":"Boguslavka","nametype":"Valid","recclass":"Iron, IIAB","reclat":44.55,"reclong":131.63333,"year":"1916-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.05,44.86667]},"id":5110,"mass":1676.0,"name":"Borgo San Donino","nametype":"Valid","recclass":"LL6","reclat":44.86667,"reclong":10.05,"year":"1808-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.03333,21.95]},"id":5111,"mass":8600.0,"name":"Bori","nametype":"Valid","recclass":"L6","reclat":21.95,"reclong":78.03333,"year":"1894-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[52.48333,54.23333]},"id":5112,"mass":1342.0,"name":"Boriskino","nametype":"Valid","recclass":"CM2","reclat":54.23333,"reclong":52.48333,"year":"1930-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[24.28333,48.15]},"id":5113,"mass":7000.0,"name":"Borkut","nametype":"Valid","recclass":"L5","reclat":48.15,"reclong":24.28333,"year":"1852-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35.86667,55.46667]},"id":5114,"mass":500.0,"name":"Borodino","nametype":"Valid","recclass":"H5","reclat":55.46667,"reclong":35.86667,"year":"1812-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[33.88333,51.33333]},"id":5117,"mass":614.0,"name":"Botschetschki","nametype":"Valid","recclass":"L4","reclat":51.33333,"reclong":33.88333,"year":"1823-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-11.3715,17.71067]},"id":57168,"mass":190.0,"name":"Boumdeid (2003)","nametype":"Valid","recclass":"L6","reclat":17.71067,"reclong":-11.3715,"year":"2003-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-11.34133,17.17493]},"id":57167,"mass":3599.0,"name":"Boumdeid (2011)","nametype":"Valid","recclass":"L6","reclat":17.17493,"reclong":-11.34133,"year":"2011-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-6.33333,54.56667]},"id":5121,"mass":5460.0,"name":"Bovedy","nametype":"Valid","recclass":"L3","reclat":54.56667,"reclong":-6.33333,"year":"1969-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":48.0,":@computed_region_nnqa_25f4":2455.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-80.08333,40.5]},"id":5128,"mass":762.0,"name":"Bradford Woods","nametype":"Valid","recclass":"L","reclat":40.5,"reclong":-80.08333,"year":"1886-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16.3,50.6]},"id":5133,"mass":39000.0,"name":"Braunau","nametype":"Valid","recclass":"Iron, IIAB","reclat":50.6,"reclong":16.3,"year":"1847-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.18361,50.66694]},"id":5134,"mass":1500.0,"name":"Breitscheid","nametype":"Valid","recclass":"H5","reclat":50.66694,"reclong":8.18361,"year":"1956-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[9.1,53.4]},"id":5135,"mass":7250.0,"name":"Bremerv\u00f6rde","nametype":"Valid","recclass":"H\/L3.9","reclat":53.4,"reclong":9.1,"year":"1855-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[59.31667,52.13333]},"id":5140,"mass":219.0,"name":"Brient","nametype":"Valid","recclass":"Eucrite-pmict","reclat":52.13333,"reclong":59.31667,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-112.88333,53.9]},"id":5156,"mass":303000.0,"name":"Bruderheim","nametype":"Valid","recclass":"L6","reclat":53.9,"reclong":-112.88333,"year":"1960-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[64.60035,39.77978]},"id":30448,"mass":5300.0,"name":"Bukhara","nametype":"Valid","recclass":"CV3","reclat":39.77978,"reclong":64.60035,"year":"2001-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":null,"id":5163,"mass":2250.0,"name":"Bulls Run","nametype":"Valid","recclass":"Iron?","reclat":null,"reclong":null,"year":"1964-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[129.19,-31.35]},"id":48653,"mass":324.0,"name":"Bunburra Rockhole","nametype":"Valid","recclass":"Eucrite","reclat":-31.35,"reclong":129.19,"year":"2007-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[9.58333,10.01667]},"id":5165,"mass":357.0,"name":"Bununu","nametype":"Valid","recclass":"Howardite","reclat":10.01667,"reclong":9.58333,"year":"1942-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[48,5]},"id":5169,"mass":120000.0,"name":"Bur-Gheluai","nametype":"Valid","recclass":"H5","reclat":5.0,"reclong":48.0,"year":"1919-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":36.0,":@computed_region_nnqa_25f4":256.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-82.23722,37.62194]},"id":5175,"mass":1504.0,"name":"Burnwell","nametype":"Valid","recclass":"H4-an","reclat":37.62194,"reclong":-82.23722,"year":"1990-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[29.23333,40.2]},"id":5177,"mass":25000.0,"name":"Bursa","nametype":"Valid","recclass":"L6","reclat":40.2,"reclong":29.23333,"year":"1946-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[25.78333,46.45]},"id":5178,"mass":5000.0,"name":"Buschhof","nametype":"Valid","recclass":"L6","reclat":46.45,"reclong":25.78333,"year":"1863-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[82.83333,26.78333]},"id":5181,"mass":1500.0,"name":"Bustee","nametype":"Valid","recclass":"Aubrite","reclat":26.78333,"reclong":82.83333,"year":"1852-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[84.08333,27.08333]},"id":5183,"mass":29000.0,"name":"Butsura","nametype":"Valid","recclass":"H6","reclat":27.08333,"reclong":84.08333,"year":"1861-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-109.84817,52.996]},"id":48654,"mass":41000.0,"name":"Buzzard Coulee","nametype":"Valid","recclass":"H4","reclat":52.996,"reclong":-109.84817,"year":"2008-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-1.16667,37.98333]},"id":5185,"mass":25000.0,"name":"Cabezo de Mayo","nametype":"Valid","recclass":"L\/LL6","reclat":37.98333,"reclong":-1.16667,"year":"1870-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":15.0,":@computed_region_nnqa_25f4":1029.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-93.5,35.5]},"id":5186,"mass":48500.0,"name":"Cabin Creek","nametype":"Valid","recclass":"Iron, IIIAB","reclat":35.5,"reclong":-93.5,"year":"1886-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[20.33333,43.83889]},"id":5187,"mass":212.0,"name":"Cacak","nametype":"Valid","recclass":"OC","reclat":43.83889,"reclong":20.33333,"year":"1919-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-76.51,3.405]},"id":45976,"mass":478.0,"name":"Cali","nametype":"Valid","recclass":"H\/L4","reclat":3.405,"reclong":-76.51,"year":"2007-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[122.33333,11.75]},"id":5200,"mass":2400.0,"name":"Calivo","nametype":"Valid","recclass":"Stone-uncl","reclat":11.75,"reclong":122.33333,"year":"1916-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-40.16667,-7.03333]},"id":5249,"mass":23680.0,"name":"Campos Sales","nametype":"Valid","recclass":"L5","reclat":-7.03333,"reclong":-40.16667,"year":"1991-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[26.6,39.8]},"id":5250,"mass":4000.0,"name":"\u00c7anakkale","nametype":"Valid","recclass":"L6","reclat":39.8,"reclong":26.6,"year":"1964-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[1.66667,41.25]},"id":5251,"mass":945.0,"name":"Ca\u00f1ellas","nametype":"Valid","recclass":"H4","reclat":41.25,"reclong":1.66667,"year":"1861-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-5.15,43.38333]},"id":5252,"mass":34000.0,"name":"Cangas de Onis","nametype":"Valid","recclass":"H5","reclat":43.38333,"reclong":-5.15,"year":"1866-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":9.0,":@computed_region_nnqa_25f4":1448.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-105.24139,38.47028]},"id":5253,"mass":1400.0,"name":"Canon City","nametype":"Valid","recclass":"H6","reclat":38.47028,"reclong":-105.24139,"year":"1973-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":18.0,":@computed_region_nnqa_25f4":2695.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-89.58333,37.26667]},"id":5260,"mass":2300.0,"name":"Cape Girardeau","nametype":"Valid","recclass":"H6","reclat":37.26667,"reclong":-89.58333,"year":"1846-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-64.55,-30.88333]},"id":5264,"mass":750.0,"name":"Capilla del Monte","nametype":"Valid","recclass":"H6","reclat":-30.88333,"reclong":-64.55,"year":"1934-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-69.04389,-16.66444]},"id":45817,"mass":342.0,"name":"Carancas","nametype":"Valid","recclass":"H4-5","reclat":-16.66444,"reclong":-69.04389,"year":"2007-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[27,38.5]},"id":5265,"mass":8.0,"name":"Caratash","nametype":"Valid","recclass":"LL6","reclat":38.5,"reclong":27.0,"year":"1902-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":37.0,":@computed_region_nnqa_25f4":648.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-78.06667,36.08333]},"id":5291,"mass":7300.0,"name":"Castalia","nametype":"Valid","recclass":"H5","reclat":36.08333,"reclong":-78.06667,"year":"1874-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.5,43.35]},"id":5292,"mass":null,"name":"Castel Berardenga","nametype":"Valid","recclass":"Stone-uncl","reclat":43.35,"reclong":11.5,"year":"1791-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":49.0,":@computed_region_nnqa_25f4":414.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-68.75,44.38333]},"id":5293,"mass":94.0,"name":"Castine","nametype":"Valid","recclass":"L6","reclat":44.38333,"reclong":-68.75,"year":"1848-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16.2,39.8]},"id":5295,"mass":15000.0,"name":"Castrovillari","nametype":"Valid","recclass":"Stone-uncl","reclat":39.8,"reclong":16.2,"year":"1583-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":37.0,":@computed_region_nnqa_25f4":637.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-79.25,36.5]},"id":5296,"mass":1360.0,"name":"Caswell County","nametype":"Valid","recclass":"OC","reclat":36.5,"reclong":-79.25,"year":"1810-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-105.23333,26.46667]},"id":5306,"mass":1025.0,"name":"Ceniceros","nametype":"Valid","recclass":"L3.7","reclat":26.46667,"reclong":-105.23333,"year":"1988-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":21.0,":@computed_region_nnqa_25f4":2684.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-96.91667,43.2]},"id":5307,"mass":45.6,"name":"Centerville","nametype":"Valid","recclass":"H5","reclat":43.2,"reclong":-96.91667,"year":"1956-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.3,45.08333]},"id":5308,"mass":6460.0,"name":"Cereseto","nametype":"Valid","recclass":"H5","reclat":45.08333,"reclong":8.3,"year":"1840-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[109.31667,28.53333]},"id":5313,"mass":3700.0,"name":"Chadong","nametype":"Valid","recclass":"L6","reclat":28.53333,"reclong":109.31667,"year":"1998-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[81.66667,25.36667]},"id":5314,"mass":0.5,"name":"Chail","nametype":"Valid","recclass":"H6","reclat":25.36667,"reclong":81.66667,"year":"1814-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[83.48333,25.85]},"id":5315,"mass":8200.0,"name":"Chainpur","nametype":"Valid","recclass":"LL3.4","reclat":25.85,"reclong":83.48333,"year":"1907-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-58.05,-30.78333]},"id":5316,"mass":18300.0,"name":"Chajari","nametype":"Valid","recclass":"L5","reclat":-30.78333,"reclong":-58.05,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.01667,20.26667]},"id":5320,"mass":8800.0,"name":"Chandakapur","nametype":"Valid","recclass":"L5","reclat":20.26667,"reclong":76.01667,"year":"1838-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[79.05,27.28333]},"id":5321,"mass":1100.0,"name":"Chandpur","nametype":"Valid","recclass":"L6","reclat":27.28333,"reclong":79.05,"year":"1885-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[111.75,29.08333]},"id":5322,"mass":1810.0,"name":"Changde","nametype":"Valid","recclass":"H5","reclat":29.08333,"reclong":111.75,"year":"1977-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[1.05,46.68333]},"id":5325,"mass":31500.0,"name":"Chantonnay","nametype":"Valid","recclass":"L6","reclat":46.68333,"reclong":1.05,"year":"1812-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":39.0,":@computed_region_nnqa_25f4":2007.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-87.33333,36.16667]},"id":5328,"mass":4300.0,"name":"Charlotte","nametype":"Valid","recclass":"Iron, IVA","reclat":36.16667,"reclong":-87.33333,"year":"1835-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[1.56667,47.93333]},"id":5329,"mass":27000.0,"name":"Charsonville","nametype":"Valid","recclass":"H6","reclat":47.93333,"reclong":1.56667,"year":"1810-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[75.5,29.48333]},"id":5330,"mass":12000.0,"name":"Charwallas","nametype":"Valid","recclass":"H6","reclat":29.48333,"reclong":75.5,"year":"1834-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[5.36667,47.71667]},"id":5331,"mass":4000.0,"name":"Chassigny","nametype":"Valid","recclass":"Martian (chassignite)","reclat":47.71667,"reclong":5.36667,"year":"1815-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[2.91667,47.93333]},"id":5332,"mass":30000.0,"name":"Ch\u00e2teau-Renard","nametype":"Valid","recclass":"L6","reclat":47.93333,"reclong":2.91667,"year":"1841-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-7.46667,41.93333]},"id":5334,"mass":2945.0,"name":"Chaves","nametype":"Valid","recclass":"Howardite","reclat":41.93333,"reclong":-7.46667,"year":"1925-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[32.5,-3.66667]},"id":5338,"mass":2936.0,"name":"Chela","nametype":"Valid","recclass":"H4","reclat":-3.66667,"reclong":32.5,"year":"1988-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[61.11667,54.81667]},"id":57165,"mass":100000.0,"name":"Chelyabinsk","nametype":"Valid","recclass":"LL5","reclat":54.81667,"reclong":61.11667,"year":"2013-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-5.01472,23.69639]},"id":47347,"mass":100000.0,"name":"Chergach ","nametype":"Valid","recclass":"H5","reclat":23.69639,"reclong":-5.01472,"year":"2007-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[30.1,53.7]},"id":5339,"mass":6000.0,"name":"Chernyi Bor","nametype":"Valid","recclass":"H4","reclat":53.7,"reclong":30.1,"year":"1964-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":33.0,":@computed_region_nnqa_25f4":2582.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-81.88333,35.03333]},"id":5340,"mass":8400.0,"name":"Cherokee Springs","nametype":"Valid","recclass":"LL6","reclat":35.03333,"reclong":-81.88333,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[6.81667,46.55]},"id":5341,"mass":705.0,"name":"Chervettaz","nametype":"Valid","recclass":"L5","reclat":46.55,"reclong":6.81667,"year":"1901-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[34,50.83333]},"id":5342,"mass":1700.0,"name":"Chervony Kut","nametype":"Valid","recclass":"Eucrite-mmict","reclat":50.83333,"reclong":34.0,"year":"1939-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.5,14.5]},"id":5344,"mass":72.0,"name":"Chetrinahatti","nametype":"Valid","recclass":"Stone-uncl","reclat":14.5,"reclong":76.5,"year":"1880-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[101.63333,17.9]},"id":5345,"mass":367.0,"name":"Chiang Khan","nametype":"Valid","recclass":"H6","reclat":17.9,"reclong":101.63333,"year":"1981-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":48.0,":@computed_region_nnqa_25f4":2459.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-79.73333,40.93333]},"id":5349,"mass":303.0,"name":"Chicora","nametype":"Valid","recclass":"LL6","reclat":40.93333,"reclong":-79.73333,"year":"1938-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[33.395,-10.05944]},"id":5355,"mass":3920.0,"name":"Chisenga","nametype":"Valid","recclass":"Iron, IIIAB","reclat":-10.05944,"reclong":33.395,"year":"1988-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[13.96667,-17.35]},"id":5356,"mass":null,"name":"Chitado","nametype":"Valid","recclass":"L6","reclat":-17.35,"reclong":13.96667,"year":"1966-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.97667,47.47083]},"id":5357,"mass":4000.0,"name":"Chitenay","nametype":"Valid","recclass":"L6","reclat":47.47083,"reclong":0.97667,"year":"1978-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[108.1,-6.95]},"id":5364,"mass":1600.0,"name":"Cilimus","nametype":"Valid","recclass":"L5","reclat":-6.95,"reclong":108.1,"year":"1979-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":31.0,":@computed_region_nnqa_25f4":67.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-81.87278,32.1025]},"id":5374,"mass":1455.0,"name":"Claxton","nametype":"Valid","recclass":"L6","reclat":32.1025,"reclong":-81.87278,"year":"1984-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":null,"id":5383,"mass":48.6,"name":"Clohars","nametype":"Valid","recclass":"L4","reclat":null,"reclong":null,"year":"1822-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":41.0,":@computed_region_nnqa_25f4":877.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-90.28333,44.9]},"id":5395,"mass":104000.0,"name":"Colby (Wisconsin)","nametype":"Valid","recclass":"L6","reclat":44.9,"reclong":-90.28333,"year":"1917-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[19.38333,-33.13333]},"id":5397,"mass":5200.0,"name":"Cold Bokkeveld","nametype":"Valid","recclass":"CM2","reclat":-33.13333,"reclong":19.38333,"year":"1838-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":50.0,":@computed_region_nnqa_25f4":356.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-84.50778,43.76111]},"id":5401,"mass":469.0,"name":"Coleman","nametype":"Valid","recclass":"L6","reclat":43.76111,"reclong":-84.50778,"year":"1994-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[12.61667,42.53333]},"id":5403,"mass":5000.0,"name":"Collescipoli","nametype":"Valid","recclass":"H5","reclat":42.53333,"reclong":12.61667,"year":"1890-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-47.55,-19.85]},"id":5418,"mass":20350.0,"name":"Conquista","nametype":"Valid","recclass":"H4","reclat":-19.85,"reclong":-47.55,"year":"1965-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-100.86667,21.16667]},"id":5451,"mass":1200.0,"name":"Cosina","nametype":"Valid","recclass":"H5","reclat":21.16667,"reclong":-100.86667,"year":"1844-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.26667,10.2]},"id":5465,"mass":1460.0,"name":"Cranganore","nametype":"Valid","recclass":"L6","reclat":10.2,"reclong":76.26667,"year":"1917-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":20.0,":@computed_region_nnqa_25f4":2201.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-97.58333,35.95]},"id":5470,"mass":78.4,"name":"Crescent","nametype":"Valid","recclass":"CM2","reclat":35.95,"reclong":-97.58333,"year":"1936-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[27.3,-27.7]},"id":5474,"mass":3650.0,"name":"Cronstad","nametype":"Valid","recclass":"H5","reclat":-27.7,"reclong":27.3,"year":"1877-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":37.0,":@computed_region_nnqa_25f4":2332.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-78.13333,35.63333]},"id":5476,"mass":167.0,"name":"Cross Roads","nametype":"Valid","recclass":"H5","reclat":35.63333,"reclong":-78.13333,"year":"1892-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-6.21667,54.61667]},"id":5477,"mass":4255.0,"name":"Crumlin","nametype":"Valid","recclass":"L5","reclat":54.61667,"reclong":-6.21667,"year":"1902-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":36.0,":@computed_region_nnqa_25f4":1426.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-84.35,36.83333]},"id":5496,"mass":17000.0,"name":"Cumberland Falls","nametype":"Valid","recclass":"Aubrite","reclat":36.83333,"reclong":-84.35,"year":"1919-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":36.0,":@computed_region_nnqa_25f4":244.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-84.25,38.4]},"id":5500,"mass":6000.0,"name":"Cynthiana","nametype":"Valid","recclass":"L\/LL4","reclat":38.4,"reclong":-84.25,"year":"1877-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.83333,35.61667]},"id":5504,"mass":18000.0,"name":"Dahmani","nametype":"Valid","recclass":"LL6","reclat":35.61667,"reclong":8.83333,"year":"1981-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[83.96667,26.91667]},"id":5511,"mass":5650.0,"name":"Dandapur","nametype":"Valid","recclass":"L6","reclat":26.91667,"reclong":83.96667,"year":"1878-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[24.56667,-28.2]},"id":5513,"mass":1064.0,"name":"Daniel's Kuil","nametype":"Valid","recclass":"EL6","reclat":-28.2,"reclong":24.56667,"year":"1868-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":29.0,":@computed_region_nnqa_25f4":103.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-87.06667,34.4]},"id":5514,"mass":2000.0,"name":"Danville","nametype":"Valid","recclass":"L6","reclat":34.4,"reclong":-87.06667,"year":"1868-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.65,49.86667]},"id":6603,"mass":100.0,"name":"Darmstadt","nametype":"Valid","recclass":"H5","reclat":49.86667,"reclong":8.65,"year":"1804-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[59.685,41.98444]},"id":6604,"mass":7000.0,"name":"Dashoguz","nametype":"Valid","recclass":"H5","reclat":41.98444,"reclong":59.685,"year":"1998-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-79.95756,-1.87089]},"id":51559,"mass":6580.0,"name":"Daule","nametype":"Valid","recclass":"L5","reclat":-1.87089,"reclong":-79.95756,"year":"2008-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-80,43]},"id":6621,"mass":340.0,"name":"De Cewsville","nametype":"Valid","recclass":"H6","reclat":43.0,"reclong":-80.0,"year":"1887-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":2491.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-74,40.25]},"id":6634,"mass":28.0,"name":"Deal","nametype":"Valid","recclass":"L6","reclat":40.25,"reclong":-74.0,"year":"1829-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[77.25,28.56667]},"id":6642,"mass":0.8,"name":"Delhi","nametype":"Valid","recclass":"L5","reclat":28.56667,"reclong":77.25,"year":"1897-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[84.76667,51.46667]},"id":6649,"mass":16400.0,"name":"Demina","nametype":"Valid","recclass":"L6","reclat":51.46667,"reclong":84.76667,"year":"1911-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":9.0,":@computed_region_nnqa_25f4":1444.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-104.93056,39.7825]},"id":6660,"mass":230.0,"name":"Denver","nametype":"Valid","recclass":"L6","reclat":39.7825,"reclong":-104.93056,"year":"1967-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[93.86667,26.68333]},"id":6664,"mass":12500.0,"name":"Dergaon","nametype":"Valid","recclass":"H5","reclat":26.68333,"reclong":93.86667,"year":"2001-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[73.61667,25.73333]},"id":6693,"mass":25400.0,"name":"Desuri","nametype":"Valid","recclass":"H6","reclat":25.73333,"reclong":73.61667,"year":"1962-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[81,19]},"id":6694,"mass":12000.0,"name":"Devgaon","nametype":"Valid","recclass":"H3.8","reclat":19.0,"reclong":81.0,"year":"2001-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.525,24.225]},"id":6696,"mass":1140.0,"name":"Devri-Khera","nametype":"Valid","recclass":"L6","reclat":24.225,"reclong":76.525,"year":"1994-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[71.42722,22.37778]},"id":6698,"mass":45000.0,"name":"Dhajala","nametype":"Valid","recclass":"H3.8","reclat":22.37778,"reclong":71.42722,"year":"1976-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[75.6,14.88333]},"id":6699,"mass":1800.0,"name":"Dharwar","nametype":"Valid","recclass":"OC","reclat":14.88333,"reclong":75.6,"year":"1848-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.46667,32.23333]},"id":7640,"mass":32000.0,"name":"Dhurmsala","nametype":"Valid","recclass":"LL6","reclat":32.23333,"reclong":76.46667,"year":"1860-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[27.32997,37.35172]},"id":47350,"mass":3396.0,"name":"Didim","nametype":"Valid","recclass":"H3-5","reclat":37.35172,"reclong":27.32997,"year":"2007-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[18.56667,-33.75]},"id":7642,"mass":1000.0,"name":"Diep River","nametype":"Valid","recclass":"L6","reclat":-33.75,"reclong":18.56667,"year":"1906-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-60.46667,-31.88333]},"id":7649,"mass":400.0,"name":"Distrito Quebracho","nametype":"Valid","recclass":"H4","reclat":-31.88333,"reclong":-60.46667,"year":"1957-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[111.5,-7.5]},"id":7652,"mass":166000.0,"name":"Djati-Pengilon","nametype":"Valid","recclass":"H6","reclat":-7.5,"reclong":111.5,"year":"1884-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[15.05,12.73333]},"id":7656,"mass":3950.0,"name":"Djermaia","nametype":"Valid","recclass":"H","reclat":12.73333,"reclong":15.05,"year":"1961-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[9.55,36.95]},"id":7657,"mass":10000.0,"name":"Djoumine","nametype":"Valid","recclass":"H5-6","reclat":36.95,"reclong":9.55,"year":"1999-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[90.33333,23.5]},"id":7658,"mass":3840.0,"name":"Dokachi","nametype":"Valid","recclass":"H5","reclat":23.5,"reclong":90.33333,"year":"1903-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[25.3,50.75]},"id":7659,"mass":1600.0,"name":"Dolgovoli","nametype":"Valid","recclass":"L6","reclat":50.75,"reclong":25.3,"year":"1864-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[29,40]},"id":7661,"mass":438.0,"name":"Domanitch","nametype":"Valid","recclass":"L5","reclat":40.0,"reclong":29.0,"year":"1907-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[119.03333,45.5]},"id":7706,"mass":128800.0,"name":"Dong Ujimqin Qi","nametype":"Valid","recclass":"Mesosiderite","reclat":45.5,"reclong":119.03333,"year":"1995-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[82.45,21.86667]},"id":7707,"mass":230.0,"name":"Donga Kohrod","nametype":"Valid","recclass":"H6","reclat":21.86667,"reclong":82.45,"year":"1899-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[120.78333,32.91667]},"id":7708,"mass":5500.0,"name":"Dongtai","nametype":"Valid","recclass":"LL6","reclat":32.91667,"reclong":120.78333,"year":"1970-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[112.3,51.2]},"id":7718,"mass":3891.0,"name":"Doroninsk","nametype":"Valid","recclass":"H5-7","reclat":51.2,"reclong":112.3,"year":"1805-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[3.16667,13.05]},"id":7722,"mass":1250.0,"name":"Dosso","nametype":"Valid","recclass":"L6","reclat":13.05,"reclong":3.16667,"year":"1962-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-6.3,32.33333]},"id":7723,"mass":1161.0,"name":"Douar Mghila","nametype":"Valid","recclass":"LL6","reclat":32.33333,"reclong":-6.3,"year":"1932-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[33.91667,-13.66667]},"id":7725,"mass":642.0,"name":"Dowa","nametype":"Valid","recclass":"Stone-uncl","reclat":-13.66667,"reclong":33.91667,"year":"1976-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":39.0,":@computed_region_nnqa_25f4":2115.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-86.5,36.4]},"id":7728,"mass":5000.0,"name":"Drake Creek","nametype":"Valid","recclass":"L6","reclat":36.4,"reclong":-86.5,"year":"1827-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-82.26,42.52]},"id":7731,"mass":47700.0,"name":"Dresden (Ontario)","nametype":"Valid","recclass":"H6","reclat":42.52,"reclong":-82.26,"year":"1939-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[18.44167,42.45833]},"id":7736,"mass":1900.0,"name":"Dubrovnik","nametype":"Valid","recclass":"L3-6","reclat":42.45833,"reclong":18.44167,"year":"1951-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[152.83333,-31.66667]},"id":7743,"mass":30.0,"name":"Dunbogan","nametype":"Valid","recclass":"L6","reclat":-31.66667,"reclong":152.83333,"year":"1999-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-8.03333,52.55]},"id":7745,"mass":2270.0,"name":"Dundrum","nametype":"Valid","recclass":"H5","reclat":52.55,"reclong":-8.03333,"year":"1865-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[128.25,43.33333]},"id":7749,"mass":null,"name":"Dunhua","nametype":"Valid","recclass":"Stone-uncl","reclat":43.33333,"reclong":128.25,"year":"1976-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.63333,30.3]},"id":7750,"mass":13200.0,"name":"Durala","nametype":"Valid","recclass":"L6","reclat":30.3,"reclong":76.63333,"year":"1815-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[39.5,-4]},"id":7752,"mass":577.0,"name":"Duruma","nametype":"Valid","recclass":"L6","reclat":-4.0,"reclong":39.5,"year":"1853-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[127.26667,33.43333]},"id":7754,"mass":2117.0,"name":"Duwun","nametype":"Valid","recclass":"L6","reclat":33.43333,"reclong":127.26667,"year":"1943-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[31.31667,-27.2]},"id":7755,"mass":3230.0,"name":"Dwaleni","nametype":"Valid","recclass":"H4-6","reclat":-27.2,"reclong":31.31667,"year":"1970-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[82,26.25]},"id":7757,"mass":300.0,"name":"Dyalpur","nametype":"Valid","recclass":"Ureilite","reclat":26.25,"reclong":82.0,"year":"1872-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[151,-3]},"id":7758,"mass":188.0,"name":"Dyarrl Island","nametype":"Valid","recclass":"Mesosiderite-A1","reclat":-3.0,"reclong":151.0,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":19.0,":@computed_region_nnqa_25f4":462.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-96.47167,40.78167]},"id":7760,"mass":10000.0,"name":"Eagle","nametype":"Valid","recclass":"EL6","reclat":40.78167,"reclong":-96.47167,"year":"1947-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[15.83333,-17.3]},"id":7774,"mass":2400.0,"name":"Ehole","nametype":"Valid","recclass":"H5","reclat":-17.3,"reclong":15.83333,"year":"1961-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.21667,48.9]},"id":7775,"mass":3000.0,"name":"Eichst\u00e4dt","nametype":"Valid","recclass":"H5","reclat":48.9,"reclong":11.21667,"year":"1785-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[13,56.03333]},"id":7776,"mass":3336.0,"name":"Ekeby","nametype":"Valid","recclass":"H4","reclat":56.03333,"reclong":13.0,"year":"1939-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.78333,28.26667]},"id":7777,"mass":840.0,"name":"Ekh Khera","nametype":"Valid","recclass":"H6","reclat":28.26667,"reclong":78.78333,"year":"1916-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[3.25,34.41667]},"id":7807,"mass":10000.0,"name":"El Idrissia","nametype":"Valid","recclass":"L6","reclat":34.41667,"reclong":3.25,"year":"1989-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-97.37,25.37]},"id":45977,"mass":17226.0,"name":"El Paso de Aguila","nametype":"Valid","recclass":"H5","reclat":25.37,"reclong":-97.37,"year":"1977-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-103.05167,19.96722]},"id":7819,"mass":5000.0,"name":"El Tigre","nametype":"Valid","recclass":"L6","reclat":19.96722,"reclong":-103.05167,"year":"1993-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":9.0,":@computed_region_nnqa_25f4":88.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-104.58817,39.24667]},"id":7822,"mass":680.5,"name":"Elbert","nametype":"Valid","recclass":"LL6","reclat":39.24667,"reclong":-104.58817,"year":"1998-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[12.73333,50.18333]},"id":7823,"mass":107000.0,"name":"Elbogen","nametype":"Valid","recclass":"Iron, IID","reclat":50.18333,"reclong":12.73333,"year":"1400-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[37.66667,47.83333]},"id":7824,"mass":54640.0,"name":"Elenovka","nametype":"Valid","recclass":"L5","reclat":47.83333,"reclong":37.66667,"year":"1951-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[4,51.75]},"id":10019,"mass":1470.0,"name":"Ellemeet","nametype":"Valid","recclass":"Diogenite","reclat":51.75,"reclong":4.0,"year":"1925-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[151.61667,-29.46667]},"id":10033,"mass":127.0,"name":"Emmaville","nametype":"Valid","recclass":"Eucrite-mmict","reclat":-29.46667,"reclong":151.61667,"year":"1900-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[109.5,30.3]},"id":10038,"mass":8000.0,"name":"Enshi","nametype":"Valid","recclass":"H5","reclat":30.3,"reclong":109.5,"year":"1974-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[7.35,47.86667]},"id":10039,"mass":127000.0,"name":"Ensisheim","nametype":"Valid","recclass":"LL6","reclat":47.86667,"reclong":7.35,"year":"1492-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[6.46667,48.18333]},"id":10041,"mass":277.0,"name":"\u00c9pinal","nametype":"Valid","recclass":"H5","reclat":48.18333,"reclong":6.46667,"year":"1822-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[81.89167,19.03333]},"id":10042,"mass":113.0,"name":"Erakot","nametype":"Valid","recclass":"CM2","reclat":19.03333,"reclong":81.89167,"year":"1940-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[44.5,40.3]},"id":10043,"mass":107.2,"name":"Erevan","nametype":"Valid","recclass":"Howardite","reclat":40.3,"reclong":44.5,"year":"1911-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[44.16667,1.16667]},"id":10044,"mass":20000.0,"name":"Ergheo","nametype":"Valid","recclass":"L5","reclat":1.16667,"reclong":44.16667,"year":"1889-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.25,52.21667]},"id":10049,"mass":2250.0,"name":"Erxleben","nametype":"Valid","recclass":"H6","reclat":52.21667,"reclong":11.25,"year":"1812-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-1.1,46.25]},"id":10051,"mass":1500.0,"name":"Esnandes","nametype":"Valid","recclass":"L6","reclat":46.25,"reclong":-1.1,"year":"1837-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[30.83333,2.88333]},"id":10055,"mass":500.0,"name":"Essebi","nametype":"Valid","recclass":"C2-ung","reclat":2.88333,"reclong":30.83333,"year":"1957-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":16.0,":@computed_region_nnqa_25f4":277.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-94.83333,43.41667]},"id":10059,"mass":320000.0,"name":"Estherville","nametype":"Valid","recclass":"Mesosiderite-A3\/4","reclat":43.41667,"reclong":-94.83333,"year":"1879-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":17.0,":@computed_region_nnqa_25f4":1300.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-97.03333,39.75]},"id":10074,"mass":89400.0,"name":"Farmington","nametype":"Valid","recclass":"L5","reclat":39.75,"reclong":-97.03333,"year":"1890-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":37.0,":@computed_region_nnqa_25f4":2439.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-77.53333,35.55]},"id":10075,"mass":56000.0,"name":"Farmville","nametype":"Valid","recclass":"H4","reclat":35.55,"reclong":-77.53333,"year":"1934-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[2.81667,44.38333]},"id":10078,"mass":1500.0,"name":"Favars","nametype":"Valid","recclass":"H5","reclat":44.38333,"reclong":2.81667,"year":"1844-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":15.0,":@computed_region_nnqa_25f4":70.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-94.16667,36.05]},"id":10079,"mass":2360.0,"name":"Fayetteville","nametype":"Valid","recclass":"H4","reclat":36.05,"reclong":-94.16667,"year":"1934-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.45,36.88333]},"id":10080,"mass":380.0,"name":"Feid Chair","nametype":"Valid","recclass":"H4","reclat":36.88333,"reclong":8.45,"year":"1875-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":29.0,":@computed_region_nnqa_25f4":1631.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-87.16667,32.53333]},"id":10081,"mass":3200.0,"name":"Felix","nametype":"Valid","recclass":"CO3.3","reclat":32.53333,"reclong":-87.16667,"year":"1900-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[116.75,34.6]},"id":10086,"mass":82.0,"name":"Fenghsien-Ku","nametype":"Valid","recclass":"H5","reclat":34.6,"reclong":116.75,"year":"1924-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":37.0,":@computed_region_nnqa_25f4":2331.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-81.41667,36.1]},"id":10088,"mass":220.0,"name":"Ferguson","nametype":"Valid","recclass":"OC","reclat":36.1,"reclong":-81.41667,"year":"1889-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[13.75333,43.18111]},"id":10091,"mass":10200.0,"name":"Fermo","nametype":"Valid","recclass":"H3-5","reclat":43.18111,"reclong":13.75333,"year":"1996-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":1.0,":@computed_region_nnqa_25f4":385.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-96.85,47.81667]},"id":10107,"mass":17600.0,"name":"Fisher","nametype":"Valid","recclass":"L6","reclat":47.81667,"reclong":-96.85,"year":"1894-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":23.0,":@computed_region_nnqa_25f4":807.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-97.76667,30.83333]},"id":10111,"mass":3640.0,"name":"Florence","nametype":"Valid","recclass":"H3","reclat":30.83333,"reclong":-97.76667,"year":"1922-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":16.0,":@computed_region_nnqa_25f4":1785.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-93.66667,43.25]},"id":10119,"mass":152000.0,"name":"Forest City","nametype":"Valid","recclass":"H5","reclat":43.25,"reclong":-93.66667,"year":"1890-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[146.85833,-33.35]},"id":10120,"mass":26000.0,"name":"Forest Vale","nametype":"Valid","recclass":"H4","reclat":-33.35,"reclong":146.85833,"year":"1942-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":40.0,":@computed_region_nnqa_25f4":2839.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-78.08333,36.78333]},"id":10123,"mass":6067.0,"name":"Forksville","nametype":"Valid","recclass":"L6","reclat":36.78333,"reclong":-78.08333,"year":"1924-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[7.31667,50.95]},"id":10163,"mass":240.0,"name":"Forsbach","nametype":"Valid","recclass":"H6","reclat":50.95,"reclong":7.31667,"year":"1900-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":31.0,":@computed_region_nnqa_25f4":1470.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-83.96667,33.01667]},"id":10164,"mass":16300.0,"name":"Forsyth","nametype":"Valid","recclass":"L6","reclat":33.01667,"reclong":-83.96667,"year":"1829-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[7,28.25]},"id":10166,"mass":null,"name":"Fort Flatters","nametype":"Valid","recclass":"Stone-uncl","reclat":28.25,"reclong":7.0,"year":"1944-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":29.0,":@computed_region_nnqa_25f4":99.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-87.83333,34.48333]},"id":10177,"mass":650.0,"name":"Frankfort (stone)","nametype":"Valid","recclass":"Howardite","reclat":34.48333,"reclong":-87.83333,"year":"1868-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[113.56694,31.47556]},"id":52412,"mass":23000.0,"name":"Fuhe","nametype":"Valid","recclass":"L5","reclat":31.47556,"reclong":113.56694,"year":"1945-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[130.2,33.18333]},"id":10836,"mass":11620.0,"name":"Fukutomi","nametype":"Valid","recclass":"L5","reclat":33.18333,"reclong":130.2,"year":"1882-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.33333,55.33333]},"id":10838,"mass":null,"name":"F\u00fcnen","nametype":"Valid","recclass":"Stone-uncl","reclat":55.33333,"reclong":10.33333,"year":"1654-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[80.81667,25.95]},"id":10839,"mass":4000.0,"name":"Futtehpur","nametype":"Valid","recclass":"L6","reclat":25.95,"reclong":80.81667,"year":"1822-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[115.9,32.9]},"id":10840,"mass":2500.0,"name":"Fuyang","nametype":"Valid","recclass":"Stone-uncl","reclat":32.9,"reclong":115.9,"year":"1977-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.4,44.3]},"id":10846,"mass":132.7,"name":"Galapian","nametype":"Valid","recclass":"H6","reclat":44.3,"reclong":0.4,"year":"1826-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[12.43333,7.05]},"id":10848,"mass":36.1,"name":"Galim (a)","nametype":"Valid","recclass":"LL6","reclat":7.05,"reclong":12.43333,"year":"1952-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[12.43333,7.05]},"id":10849,"mass":28.0,"name":"Galim (b)","nametype":"Valid","recclass":"EH3\/4-an","reclat":7.05,"reclong":12.43333,"year":"1952-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[30.78333,51.68333]},"id":10850,"mass":5000.0,"name":"Galkiv","nametype":"Valid","recclass":"H4","reclat":51.68333,"reclong":30.78333,"year":"1995-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[68.53333,27.35]},"id":10851,"mass":6400.0,"name":"Gambat","nametype":"Valid","recclass":"L6","reclat":27.35,"reclong":68.53333,"year":"1897-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-2.18333,11.65]},"id":10854,"mass":null,"name":"Gao-Guenie","nametype":"Valid","recclass":"H5","reclat":11.65,"reclong":-2.18333,"year":"1960-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[68.53333,27.88333]},"id":10860,"mass":380.0,"name":"Garhi Yasin","nametype":"Valid","recclass":"Iron, IIE","reclat":27.88333,"reclong":68.53333,"year":"1917-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":13.0,":@computed_region_nnqa_25f4":2985.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-112.13333,41.68333]},"id":10861,"mass":102.0,"name":"Garland","nametype":"Valid","recclass":"Diogenite-pm","reclat":41.68333,"reclong":-112.13333,"year":"1950-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.03333,12.85]},"id":44882,"mass":4162.0,"name":"Gashua","nametype":"Valid","recclass":"L6","reclat":12.85,"reclong":11.03333,"year":"1984-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-2.04167,14.15083]},"id":10866,"mass":null,"name":"Gasseltepaoua","nametype":"Valid","recclass":"H5","reclat":14.15083,"reclong":-2.04167,"year":"2000-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.91667,12.91667]},"id":10870,"mass":725.0,"name":"Geidam","nametype":"Valid","recclass":"H5","reclat":12.91667,"reclong":11.91667,"year":"1950-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[136.88333,35.53333]},"id":10914,"mass":14290.0,"name":"Gifu","nametype":"Valid","recclass":"L6","reclat":35.53333,"reclong":136.88333,"year":"1909-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[13.56667,37.31667]},"id":10917,"mass":18000.0,"name":"Girgenti","nametype":"Valid","recclass":"L6","reclat":37.31667,"reclong":13.56667,"year":"1853-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[9.91667,9.6]},"id":10919,"mass":480.0,"name":"Git-Git","nametype":"Valid","recclass":"L6","reclat":9.6,"reclong":9.91667,"year":"1947-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[6.86667,52.2]},"id":10923,"mass":670.0,"name":"Glanerbrug","nametype":"Valid","recclass":"L\/LL5","reclat":52.2,"reclong":6.86667,"year":"1990-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[107.7,-7.25]},"id":10924,"mass":1303.0,"name":"Glanggang","nametype":"Valid","recclass":"H5-6","reclat":-7.25,"reclong":107.7,"year":"1939-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[37.61667,57.35]},"id":10926,"mass":152000.0,"name":"Glasatovo","nametype":"Valid","recclass":"H4","reclat":57.35,"reclong":37.61667,"year":"1918-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.3,52.45972]},"id":10930,"mass":767.0,"name":"Glatton","nametype":"Valid","recclass":"L6","reclat":52.45972,"reclong":-0.3,"year":"1991-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16.76667,50.66667]},"id":10936,"mass":1750.0,"name":"Gnadenfrei","nametype":"Valid","recclass":"H5","reclat":50.66667,"reclong":16.76667,"year":"1879-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[89.05,24.23333]},"id":10948,"mass":1600.0,"name":"Gopalpur","nametype":"Valid","recclass":"H6","reclat":24.23333,"reclong":89.05,"year":"1865-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[38.08333,48.28333]},"id":10949,"mass":3618.0,"name":"Gorlovka","nametype":"Valid","recclass":"H3.7","reclat":48.28333,"reclong":38.08333,"year":"1974-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[2.25,42.9]},"id":10956,"mass":9000.0,"name":"Granes","nametype":"Valid","recclass":"L6","reclat":42.9,"reclong":2.25,"year":"1964-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11,60.66667]},"id":11196,"mass":45.5,"name":"Grefsheim","nametype":"Valid","recclass":"L5","reclat":60.66667,"reclong":11.0,"year":"1976-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-79.61667,43.2]},"id":50911,"mass":215.0,"name":"Grimsby","nametype":"Valid","recclass":"H5","reclat":43.2,"reclong":-79.61667,"year":"2009-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[45.38333,43.66667]},"id":11206,"mass":3500.0,"name":"Grosnaja","nametype":"Valid","recclass":"CV3","reclat":43.66667,"reclong":45.38333,"year":"1861-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[18.71667,49.26667]},"id":11207,"mass":10500.0,"name":"Gross-Divina","nametype":"Valid","recclass":"H5","reclat":49.26667,"reclong":18.71667,"year":"1837-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[30.58333,46.35]},"id":11208,"mass":8000.0,"name":"Grossliebenthal","nametype":"Valid","recclass":"L6","reclat":46.35,"reclong":30.58333,"year":"1881-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[15.5,51.93333]},"id":11426,"mass":1000.0,"name":"Gr\u00fcneberg","nametype":"Valid","recclass":"H4","reclat":51.93333,"reclong":15.5,"year":"1841-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16.63333,52.86667]},"id":11429,"mass":690.0,"name":"Grzempach","nametype":"Valid","recclass":"H5","reclat":52.86667,"reclong":16.63333,"year":"1910-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-58.61667,-33]},"id":11432,"mass":22000.0,"name":"Gualeguaych\u00fa","nametype":"Valid","recclass":"H6","reclat":-33.0,"reclong":-58.61667,"year":"1932-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[122.76389,39.80417]},"id":11435,"mass":2910.0,"name":"Guangmingshan","nametype":"Valid","recclass":"H5","reclat":39.80417,"reclong":122.76389,"year":"1996-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[105,24.1]},"id":11436,"mass":null,"name":"Guangnan","nametype":"Valid","recclass":"L6","reclat":24.1,"reclong":105.0,"year":"1983-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[118.4,37.1]},"id":11437,"mass":1900.0,"name":"Guangrao","nametype":"Valid","recclass":"L6","reclat":37.1,"reclong":118.4,"year":"1980-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-6.01667,38.73333]},"id":11439,"mass":39000.0,"name":"Guare\u00f1a","nametype":"Valid","recclass":"H6","reclat":38.73333,"reclong":-6.01667,"year":"1892-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[20.23333,43.76667]},"id":11440,"mass":1915.0,"name":"Gu\u00eaa","nametype":"Valid","recclass":"Stone-uncl","reclat":43.76667,"reclong":20.23333,"year":"1891-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.68333,13.5]},"id":11442,"mass":288.0,"name":"Guibga","nametype":"Valid","recclass":"L5","reclat":13.5,"reclong":-0.68333,"year":"1972-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[13.98333,9.91667]},"id":11443,"mass":968.0,"name":"Guidder","nametype":"Valid","recclass":"LL5","reclat":9.91667,"reclong":13.98333,"year":"1949-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.05,22.98333]},"id":11448,"mass":2449.0,"name":"Gujargaon","nametype":"Valid","recclass":"H5","reclat":22.98333,"reclong":76.05,"year":"1982-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.65833,11.49167]},"id":11449,"mass":100000.0,"name":"Gujba","nametype":"Valid","recclass":"CBa","reclat":11.49167,"reclong":11.65833,"year":"1984-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[24.7,42.9]},"id":11450,"mass":5700.0,"name":"Gumoschnik","nametype":"Valid","recclass":"H5","reclat":42.9,"reclong":24.7,"year":"1904-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.56667,13.78333]},"id":11464,"mass":28.0,"name":"Gurram Konda","nametype":"Valid","recclass":"L6","reclat":13.78333,"reclong":78.56667,"year":"1814-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[42.41667,9.36667]},"id":11465,"mass":34650.0,"name":"Gursum","nametype":"Valid","recclass":"H4\/5","reclat":9.36667,"reclong":42.41667,"year":"1981-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.38333,51.91667]},"id":11466,"mass":1000.0,"name":"G\u00fctersloh","nametype":"Valid","recclass":"H3\/4","reclat":51.91667,"reclong":8.38333,"year":"1851-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[127.5,35]},"id":11467,"mass":1320.0,"name":"Gyokukei","nametype":"Valid","recclass":"OC","reclat":35.0,"reclong":127.5,"year":"1930-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[139.33333,35.65]},"id":11468,"mass":0.2,"name":"Hachi-oji","nametype":"Valid","recclass":"H?","reclat":35.65,"reclong":139.33333,"year":"1817-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[3.73333,50.31667]},"id":11472,"mass":9000.0,"name":"Hainaut","nametype":"Valid","recclass":"H3-6","reclat":50.31667,"reclong":3.73333,"year":"1934-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16.23333,57.81667]},"id":11479,"mass":1456.0,"name":"Hallingeberg","nametype":"Valid","recclass":"L3.4","reclat":57.81667,"reclong":16.23333,"year":"1944-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":35.0,":@computed_region_nnqa_25f4":1205.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-86.6,41.38333]},"id":11485,"mass":3710.0,"name":"Hamlet","nametype":"Valid","recclass":"LL4","reclat":41.38333,"reclong":-86.6,"year":"1959-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[82.53333,26.8]},"id":11824,"mass":1000.0,"name":"Haraiya","nametype":"Valid","recclass":"Eucrite-mmict","reclat":26.8,"reclong":82.53333,"year":"1878-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[75.78333,28.38333]},"id":11829,"mass":315.0,"name":"Haripura","nametype":"Valid","recclass":"CM2","reclat":28.38333,"reclong":75.78333,"year":"1921-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":23.0,":@computed_region_nnqa_25f4":2025.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-94.51167,32.675]},"id":11830,"mass":8360.0,"name":"Harleton","nametype":"Valid","recclass":"L6","reclat":32.675,"reclong":-94.51167,"year":"1961-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":35.0,":@computed_region_nnqa_25f4":1855.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-86.16667,38.25]},"id":11842,"mass":680.0,"name":"Harrison County","nametype":"Valid","recclass":"L6","reclat":38.25,"reclong":-86.16667,"year":"1859-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[136.70033,35.2945]},"id":11848,"mass":1110.6,"name":"Hashima","nametype":"Valid","recclass":"H4","reclat":35.2945,"reclong":136.70033,"year":"1910-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.81667,28.95]},"id":11852,"mass":1250.0,"name":"Hassi-Jekna","nametype":"Valid","recclass":"Iron, IAB-sHL","reclat":28.95,"reclong":0.81667,"year":"1890-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-1.51667,51.65]},"id":11855,"mass":29000.0,"name":"Hatford","nametype":"Valid","recclass":"Stone-uncl","reclat":51.65,"reclong":-1.51667,"year":"1628-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[22.06194,60.24556]},"id":11859,"mass":1544.0,"name":"Haver\u00f6","nametype":"Valid","recclass":"Ureilite","reclat":60.24556,"reclong":22.06194,"year":"1971-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[13.78333,55.46667]},"id":11869,"mass":3500.0,"name":"Hedeskoga","nametype":"Valid","recclass":"H5","reclat":55.46667,"reclong":13.78333,"year":"1922-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35.66667,27.33333]},"id":11870,"mass":6100.0,"name":"Hedjaz","nametype":"Valid","recclass":"L3.7-6","reclat":27.33333,"reclong":35.66667,"year":"1910-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-84.1,10]},"id":11875,"mass":1000.0,"name":"Heredia","nametype":"Valid","recclass":"H5","reclat":10.0,"reclong":-84.1,"year":"1857-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[17.66667,59.85]},"id":11878,"mass":20000.0,"name":"Hessle","nametype":"Valid","recclass":"H5","reclat":59.85,"reclong":17.66667,"year":"1869-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[130.43333,33.6]},"id":11883,"mass":750.0,"name":"Higashi-koen","nametype":"Valid","recclass":"H5","reclat":33.6,"reclong":130.43333,"year":"1897-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-4.23333,55.9]},"id":11884,"mass":4500.0,"name":"High Possil","nametype":"Valid","recclass":"L6","reclat":55.9,"reclong":-4.23333,"year":"1804-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[132.38333,34.45]},"id":11889,"mass":414.0,"name":"Hiroshima","nametype":"Valid","recclass":"H5","reclat":34.45,"reclong":132.38333,"year":"2003-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[31.47278,1.345]},"id":44714,"mass":167.7,"name":"Hoima","nametype":"Valid","recclass":"H6","reclat":1.345,"reclong":31.47278,"year":"2003-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[21.2,64.43333]},"id":11893,"mass":305.5,"name":"H\u00f6kmark","nametype":"Valid","recclass":"L4","reclat":64.43333,"reclong":21.2,"year":"1954-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":7.0,":@computed_region_nnqa_25f4":990.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-110.18333,34.9]},"id":11894,"mass":220000.0,"name":"Holbrook","nametype":"Valid","recclass":"L\/LL6","reclat":34.9,"reclong":-110.18333,"year":"1912-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[38.41667,9.06667]},"id":11895,"mass":1415.0,"name":"Holetta","nametype":"Valid","recclass":"Stone-uncl","reclat":9.06667,"reclong":38.41667,"year":"1923-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":16.0,":@computed_region_nnqa_25f4":284.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-91.86667,41.8]},"id":11901,"mass":230000.0,"name":"Homestead","nametype":"Valid","recclass":"L5","reclat":41.8,"reclong":-91.86667,"year":"1875-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":4.0,":@computed_region_nnqa_25f4":1657.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-157.86667,21.3]},"id":11904,"mass":2420.0,"name":"Honolulu","nametype":"Valid","recclass":"L5","reclat":21.3,"reclong":-157.86667,"year":"1825-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[115.5,35.66667]},"id":11913,"mass":180.0,"name":"Hotse","nametype":"Valid","recclass":"L6","reclat":35.66667,"reclong":115.5,"year":"1956-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":17.0,":@computed_region_nnqa_25f4":1293.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-100.45,39.35]},"id":11915,"mass":266.1,"name":"Hoxie","nametype":"Valid","recclass":"OC","reclat":39.35,"reclong":-100.45,"year":"1963-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16.33333,46.1]},"id":11916,"mass":49000.0,"name":"Hraschina","nametype":"Valid","recclass":"Iron, IID","reclat":46.1,"reclong":16.33333,"year":"1751-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[106.63241,26.46469]},"id":54719,"mass":1600.0,"name":"Huaxi","nametype":"Valid","recclass":"H5","reclat":26.46469,"reclong":106.63241,"year":"2010-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.91667,50.3]},"id":11986,"mass":112.0,"name":"Hungen","nametype":"Valid","recclass":"H6","reclat":50.3,"reclong":8.91667,"year":"1877-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[22.68333,61.18333]},"id":11989,"mass":14000.0,"name":"Hvittis","nametype":"Valid","recclass":"EL6","reclat":61.18333,"reclong":22.68333,"year":"1901-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[7.7,52.28333]},"id":11992,"mass":2000.0,"name":"Ibbenb\u00fcren","nametype":"Valid","recclass":"Diogenite","reclat":52.28333,"reclong":7.7,"year":"1870-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-45,-20]},"id":11993,"mass":2500.0,"name":"Ibitira","nametype":"Valid","recclass":"Eucrite-mmict","reclat":-20.0,"reclong":-45.0,"year":"1957-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35,38]},"id":11994,"mass":null,"name":"Ibrisim","nametype":"Valid","recclass":"OC","reclat":38.0,"reclong":35.0,"year":"1949-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[82.93333,58.2]},"id":11995,"mass":3973.0,"name":"Ichkala","nametype":"Valid","recclass":"H6","reclat":58.2,"reclong":82.93333,"year":"1936-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[28.33333,-32.1]},"id":12000,"mass":3457.0,"name":"Idutywa","nametype":"Valid","recclass":"H5","reclat":-32.1,"reclong":28.33333,"year":"1956-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-51.83333,-23.2]},"id":12003,"mass":1200.0,"name":"Iguaracu","nametype":"Valid","recclass":"H5","reclat":-23.2,"reclong":-51.83333,"year":"1977-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[145.36667,-6.03333]},"id":12004,"mass":7330.0,"name":"Ijopega","nametype":"Valid","recclass":"H6","reclat":-6.03333,"reclong":145.36667,"year":"1975-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[46.66667,39.75]},"id":12027,"mass":27000.0,"name":"Indarch","nametype":"Valid","recclass":"EH4","reclat":39.75,"reclong":46.66667,"year":"1891-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":18.0,":@computed_region_nnqa_25f4":525.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-94.4,39.08333]},"id":12028,"mass":880.0,"name":"Independence","nametype":"Valid","recclass":"L6","reclat":39.08333,"reclong":-94.4,"year":"1917-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[112,41]},"id":12037,"mass":3000.0,"name":"Inner Mongolia","nametype":"Valid","recclass":"L6","reclat":41.0,"reclong":112.0,"year":"1963-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-111.3375,53.415]},"id":12039,"mass":4576.0,"name":"Innisfree","nametype":"Valid","recclass":"L5","reclat":53.415,"reclong":-111.3375,"year":"1977-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-54.5,-25.5]},"id":12043,"mass":7000.0,"name":"Ipiranga","nametype":"Valid","recclass":"H6","reclat":-25.5,"reclong":-54.5,"year":"1972-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[33.8,-8.93333]},"id":12049,"mass":1300.0,"name":"Ishinga","nametype":"Valid","recclass":"H","reclat":-8.93333,"reclong":33.8,"year":"1954-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-57.95,-31.18333]},"id":12053,"mass":3050.0,"name":"Isthilart","nametype":"Valid","recclass":"H5","reclat":-31.18333,"reclong":-57.95,"year":"1928-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-44.33333,-3.4]},"id":12056,"mass":2024.0,"name":"Itapicuru-Mirim","nametype":"Valid","recclass":"H5","reclat":-3.4,"reclong":-44.33333,"year":"1879-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-12.95217,26.59083]},"id":12058,"mass":4720.0,"name":"Itqiy","nametype":"Valid","recclass":"EH7-an","reclat":26.59083,"reclong":-12.95217,"year":"1990-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[32.43333,-8.41667]},"id":12063,"mass":704.5,"name":"Ivuna","nametype":"Valid","recclass":"CI1","reclat":-8.41667,"reclong":32.43333,"year":"1938-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[21.9,-32.5]},"id":12065,"mass":48000.0,"name":"Jackalsfontein","nametype":"Valid","recclass":"L6","reclat":-32.5,"reclong":21.9,"year":"1903-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[68.41667,26.75]},"id":12067,"mass":973.0,"name":"Jajh deh Kot Lalu","nametype":"Valid","recclass":"EL6","reclat":26.75,"reclong":68.41667,"year":"1926-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":null,"id":12068,"mass":700.0,"name":"Jalanash","nametype":"Valid","recclass":"Ureilite","reclat":null,"reclong":null,"year":"1990-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[75,31]},"id":12069,"mass":1967.0,"name":"Jalandhar","nametype":"Valid","recclass":"Iron","reclat":31.0,"reclong":75.0,"year":"1621-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[75.33333,18.75]},"id":12072,"mass":22.0,"name":"Jamkheir","nametype":"Valid","recclass":"H6","reclat":18.75,"reclong":75.33333,"year":"1866-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[105.8,39.7]},"id":12074,"mass":20500.0,"name":"Jartai","nametype":"Valid","recclass":"L6","reclat":39.7,"reclong":105.8,"year":"1979-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[20.44167,43.83333]},"id":12078,"mass":34000.0,"name":"Jelica","nametype":"Valid","recclass":"LL6","reclat":43.83333,"reclong":20.44167,"year":"1889-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":null,"id":12079,"mass":450.0,"name":"Jemlapur","nametype":"Valid","recclass":"L6","reclat":null,"reclong":null,"year":"1901-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[14.05217,46.42137]},"id":51589,"mass":3667.0,"name":"Jesenice","nametype":"Valid","recclass":"L6","reclat":46.42137,"reclong":14.05217,"year":"2009-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[72.38333,31.3]},"id":12085,"mass":5900.0,"name":"Jhung","nametype":"Valid","recclass":"L5","reclat":31.3,"reclong":72.38333,"year":"1873-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[104.91667,31.91667]},"id":12086,"mass":222.0,"name":"Jiange","nametype":"Valid","recclass":"H5","reclat":31.91667,"reclong":104.91667,"year":"1964-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[109.5,30.80833]},"id":12087,"mass":600000.0,"name":"Jianshi","nametype":"Valid","recclass":"Iron, IIIAB","reclat":30.80833,"reclong":109.5,"year":"1890-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[126.16667,44.05]},"id":12171,"mass":4000000.0,"name":"Jilin","nametype":"Valid","recclass":"H5","reclat":44.05,"reclong":126.16667,"year":"1976-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[70.31333,22.68]},"id":47362,"mass":100.0,"name":"Jodiya","nametype":"Valid","recclass":"L5","reclat":22.68,"reclong":70.31333,"year":"2006-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[24.4,55.7]},"id":12173,"mass":30.0,"name":"Jodzie","nametype":"Valid","recclass":"Howardite","reclat":55.7,"reclong":24.4,"year":"1877-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":9.0,":@computed_region_nnqa_25f4":1072.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-104.9,40.35]},"id":12198,"mass":40300.0,"name":"Johnstown","nametype":"Valid","recclass":"Diogenite","reclat":40.35,"reclong":-104.9,"year":"1924-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[15.83333,-11.85]},"id":12199,"mass":483.0,"name":"Jolomba","nametype":"Valid","recclass":"LL6","reclat":-11.85,"reclong":15.83333,"year":"1974-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.45,45.43333]},"id":12202,"mass":5000.0,"name":"Jonzac","nametype":"Valid","recclass":"Eucrite-mmict","reclat":45.43333,"reclong":-0.45,"year":"1819-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[115.41667,35.5]},"id":12203,"mass":100000.0,"name":"Juancheng","nametype":"Valid","recclass":"H5","reclat":35.5,"reclong":115.41667,"year":"1997-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.8,12.85]},"id":12207,"mass":680.0,"name":"Judesegeri","nametype":"Valid","recclass":"H6","reclat":12.85,"reclong":76.8,"year":"1876-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[111.2,-7.71667]},"id":12209,"mass":32490.0,"name":"Jumapalo","nametype":"Valid","recclass":"L6","reclat":-7.71667,"reclong":111.2,"year":"1984-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[118.8,35.2]},"id":12210,"mass":950.0,"name":"Junan","nametype":"Valid","recclass":"L6","reclat":35.2,"reclong":118.8,"year":"1976-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-7.27,38.74028]},"id":12213,"mass":25250.0,"name":"Juromenha","nametype":"Valid","recclass":"Iron, IIIAB","reclat":38.74028,"reclong":-7.27,"year":"1968-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[4.3,44.71667]},"id":12214,"mass":91000.0,"name":"Juvinas","nametype":"Valid","recclass":"Eucrite-mmict","reclat":44.71667,"reclong":4.3,"year":"1821-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[21.3,47.35]},"id":12218,"mass":3000.0,"name":"Kaba","nametype":"Valid","recclass":"CV3","reclat":47.35,"reclong":21.3,"year":"1857-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.21667,11.85]},"id":12220,"mass":13400.0,"name":"Kabo","nametype":"Valid","recclass":"H4","reclat":11.85,"reclong":8.21667,"year":"1971-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.33333,27.08333]},"id":12221,"mass":89.0,"name":"Kadonah","nametype":"Valid","recclass":"H6","reclat":27.08333,"reclong":78.33333,"year":"1822-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[79.96667,27.25]},"id":12222,"mass":230.0,"name":"Kaee","nametype":"Valid","recclass":"H5","reclat":27.25,"reclong":79.96667,"year":"1838-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[30.83333,49.86667]},"id":12227,"mass":1900.0,"name":"Kagarlyk","nametype":"Valid","recclass":"L6","reclat":49.86667,"reclong":30.83333,"year":"1908-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[48.3,15]},"id":12228,"mass":2000.0,"name":"Kaidun","nametype":"Valid","recclass":"CR2","reclat":15.0,"reclong":48.3,"year":"1980-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[53.25,55.43333]},"id":12229,"mass":200000.0,"name":"Kainsaz","nametype":"Valid","recclass":"CO3.2","reclat":55.43333,"reclong":53.25,"year":"1937-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.51667,12.38333]},"id":12230,"mass":350.0,"name":"Kakangari","nametype":"Valid","recclass":"K3","reclat":12.38333,"reclong":78.51667,"year":"1890-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[21.66667,45.13333]},"id":12231,"mass":577.0,"name":"Kakowa","nametype":"Valid","recclass":"L6","reclat":45.13333,"reclong":21.66667,"year":"1858-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[29.5,-6.83333]},"id":12232,"mass":950.0,"name":"Kalaba","nametype":"Valid","recclass":"H4","reclat":-6.83333,"reclong":29.5,"year":"1951-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[73.98333,17.83333]},"id":12236,"mass":4500.0,"name":"Kalumbi","nametype":"Valid","recclass":"L6","reclat":17.83333,"reclong":73.98333,"year":"1879-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[81.46667,26.03333]},"id":12238,"mass":2770.0,"name":"Kamalpur","nametype":"Valid","recclass":"L6","reclat":26.03333,"reclong":81.46667,"year":"1942-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[139.95667,36.04167]},"id":12240,"mass":448.0,"name":"Kamiomi","nametype":"Valid","recclass":"H5","reclat":36.04167,"reclong":139.95667,"year":"1913-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[75.8,14.18333]},"id":12241,"mass":1293.0,"name":"Kamsagar","nametype":"Valid","recclass":"L6","reclat":14.18333,"reclong":75.8,"year":"1902-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[65.78333,31.6]},"id":12243,"mass":299.0,"name":"Kandahar (Afghanistan)","nametype":"Valid","recclass":"L6","reclat":31.6,"reclong":65.78333,"year":"1959-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[115.5,-7]},"id":12245,"mass":1630.0,"name":"Kangean","nametype":"Valid","recclass":"H5","reclat":-7.0,"reclong":115.5,"year":"1908-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.3,32.08333]},"id":12246,"mass":400.0,"name":"Kangra Valley","nametype":"Valid","recclass":"H5","reclat":32.08333,"reclong":76.3,"year":"1897-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[33.63333,4.7]},"id":12251,"mass":11355.0,"name":"Kapoeta","nametype":"Valid","recclass":"Howardite","reclat":4.7,"reclong":33.63333,"year":"1942-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[73.22329,20.33916]},"id":47357,"mass":1600.0,"name":"Kaprada","nametype":"Valid","recclass":"L5\/6","reclat":20.33916,"reclong":73.22329,"year":"2004-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[73.36667,42.45]},"id":12253,"mass":3500.0,"name":"Kaptal-Aryk","nametype":"Valid","recclass":"L6","reclat":42.45,"reclong":73.36667,"year":"1937-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[81.01667,47.21667]},"id":12256,"mass":3000.0,"name":"Karakol","nametype":"Valid","recclass":"LL6","reclat":47.21667,"reclong":81.01667,"year":"1840-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35.58333,-3.5]},"id":12258,"mass":2220.0,"name":"Karatu","nametype":"Valid","recclass":"LL6","reclat":-3.5,"reclong":35.58333,"year":"1963-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[7.15,12.9]},"id":12260,"mass":180.0,"name":"Karewar","nametype":"Valid","recclass":"L6","reclat":12.9,"reclong":7.15,"year":"1949-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[67.16667,27.8]},"id":12262,"mass":22000.0,"name":"Karkh","nametype":"Valid","recclass":"L6","reclat":27.8,"reclong":67.16667,"year":"1905-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[71.6,31.58333]},"id":12263,"mass":2950.0,"name":"Karloowala","nametype":"Valid","recclass":"L6","reclat":31.58333,"reclong":71.6,"year":"1955-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[139.91667,-35.08333]},"id":12264,"mass":41730.0,"name":"Karoonda","nametype":"Valid","recclass":"CK4","reclat":-35.08333,"reclong":139.91667,"year":"1930-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[136.76667,35.36667]},"id":12266,"mass":710.0,"name":"Kasamatsu","nametype":"Valid","recclass":"H","reclat":35.36667,"reclong":136.76667,"year":"1938-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[77.58333,29.58333]},"id":30740,"mass":16820.0,"name":"Kasauli","nametype":"Valid","recclass":"H4","reclat":29.58333,"reclong":77.58333,"year":"2003-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.08333,11.33333]},"id":35465,"mass":1500.0,"name":"Katagum","nametype":"Valid","recclass":"L6","reclat":11.33333,"reclong":10.08333,"year":"1999-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[75.81333,25.14333]},"id":47351,"mass":6800.0,"name":"Kavarpura","nametype":"Valid","recclass":"Iron, IIE-an","reclat":25.14333,"reclong":75.81333,"year":"2006-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[31.78,39.26333]},"id":12268,"mass":85000.0,"name":"Kayakent","nametype":"Valid","recclass":"Iron, IIIAB","reclat":39.26333,"reclong":31.78,"year":"1961-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[112.01667,-7.75]},"id":12270,"mass":3300.0,"name":"Kediri","nametype":"Valid","recclass":"L4","reclat":-7.75,"reclong":112.01667,"year":"1940-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[29.41822,36.54194]},"id":53654,"mass":5760.0,"name":"Kemer","nametype":"Valid","recclass":"L4","reclat":36.54194,"reclong":29.41822,"year":"2008-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":23.0,":@computed_region_nnqa_25f4":3190.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-96,29.45]},"id":12275,"mass":6937.0,"name":"Kendleton","nametype":"Valid","recclass":"L4","reclat":29.45,"reclong":-96.0,"year":"1939-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[86.70278,20.4625]},"id":12276,"mass":6669.2,"name":"Kendrapara","nametype":"Valid","recclass":"H4-5","reclat":20.4625,"reclong":86.70278,"year":"2003-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-3.3,48.4]},"id":12282,"mass":5000.0,"name":"Kerilis","nametype":"Valid","recclass":"H5","reclat":48.4,"reclong":-3.3,"year":"1874-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-3.08333,48.11667]},"id":12284,"mass":80000.0,"name":"Kernouve","nametype":"Valid","recclass":"H6","reclat":48.11667,"reclong":-3.08333,"year":"1869-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[141.61667,38.98333]},"id":12286,"mass":135000.0,"name":"Kesen","nametype":"Valid","recclass":"H4","reclat":38.98333,"reclong":141.61667,"year":"1850-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[72.3,29.53333]},"id":12288,"mass":13600.0,"name":"Khairpur","nametype":"Valid","recclass":"EL6","reclat":29.53333,"reclong":72.3,"year":"1873-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[83.11667,25.55]},"id":12289,"mass":3698.0,"name":"Khanpur","nametype":"Valid","recclass":"LL5","reclat":25.55,"reclong":83.11667,"year":"1932-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35.075,50.625]},"id":12291,"mass":1500.0,"name":"Kharkov","nametype":"Valid","recclass":"L6","reclat":50.625,"reclong":35.075,"year":"1787-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[77.88333,26.95]},"id":12294,"mass":450.0,"name":"Kheragur","nametype":"Valid","recclass":"L6","reclat":26.95,"reclong":77.88333,"year":"1860-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[75.81667,28.01667]},"id":12296,"mass":100.0,"name":"Khetri","nametype":"Valid","recclass":"H6","reclat":28.01667,"reclong":75.81667,"year":"1867-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[75.33333,56.75]},"id":12297,"mass":6109.0,"name":"Khmelevka","nametype":"Valid","recclass":"L5","reclat":56.75,"reclong":75.33333,"year":"1929-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[81.53333,25.1]},"id":12298,"mass":9700.0,"name":"Khohar","nametype":"Valid","recclass":"L3.6","reclat":25.1,"reclong":81.53333,"year":"1910-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[36,16]},"id":12299,"mass":3200.0,"name":"Khor Temiki","nametype":"Valid","recclass":"Aubrite","reclat":16.0,"reclong":36.0,"year":"1932-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[28,14]},"id":12300,"mass":100000.0,"name":"Kidairat","nametype":"Valid","recclass":"H6","reclat":14.0,"reclong":28.0,"year":"1983-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.15,54.4]},"id":12301,"mass":737.6,"name":"Kiel","nametype":"Valid","recclass":"L6","reclat":54.4,"reclong":10.15,"year":"1962-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-11.33333,16.58333]},"id":12303,"mass":1500.0,"name":"Kiffa","nametype":"Valid","recclass":"H5","reclat":16.58333,"reclong":-11.33333,"year":"1970-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[138.38333,36.85]},"id":12305,"mass":331.0,"name":"Kijima (1906)","nametype":"Valid","recclass":"Stone-uncl","reclat":36.85,"reclong":138.38333,"year":"1906-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[34,55]},"id":12306,"mass":195.0,"name":"Kikino","nametype":"Valid","recclass":"H6","reclat":55.0,"reclong":34.0,"year":"1809-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[9.8,12.76667]},"id":12307,"mass":19000.0,"name":"Kilabo","nametype":"Valid","recclass":"LL6","reclat":12.76667,"reclong":9.8,"year":"2002-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":41.0,":@computed_region_nnqa_25f4":2971.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-89.6,43.58333]},"id":12308,"mass":772.0,"name":"Kilbourn","nametype":"Valid","recclass":"H5","reclat":43.58333,"reclong":-89.6,"year":"1911-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-7.66667,54.66667]},"id":12309,"mass":140.0,"name":"Killeter","nametype":"Valid","recclass":"H6","reclat":54.66667,"reclong":-7.66667,"year":"1844-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[24.68333,11.63333]},"id":12316,"mass":67.4,"name":"Kingai","nametype":"Valid","recclass":"H6","reclat":11.63333,"reclong":24.68333,"year":"1967-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":23.0,":@computed_region_nnqa_25f4":2018.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-95.95,30.75]},"id":12321,"mass":97.7,"name":"Kirbyville","nametype":"Valid","recclass":"Eucrite-mmict","reclat":30.75,"reclong":-95.95,"year":"1906-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[22.30833,48.16667]},"id":12325,"mass":1550.0,"name":"Kisvars\u00e1ny","nametype":"Valid","recclass":"L6","reclat":48.16667,"reclong":22.30833,"year":"1914-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-80.38333,43.38333]},"id":12326,"mass":202.6,"name":"Kitchener","nametype":"Valid","recclass":"L6","reclat":43.38333,"reclong":-80.38333,"year":"1998-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.8,51.6]},"id":12332,"mass":3250.0,"name":"Klein-Wenden","nametype":"Valid","recclass":"H6","reclat":51.6,"reclong":10.8,"year":"1843-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[22.4,48.9]},"id":12335,"mass":500000.0,"name":"Knyahinya","nametype":"Valid","recclass":"L\/LL5","reclat":48.9,"reclong":22.4,"year":"1866-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[135.16667,34.73333]},"id":12336,"mass":136.0,"name":"Kobe","nametype":"Valid","recclass":"CK4","reclat":34.73333,"reclong":135.16667,"year":"1999-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[133.95,34.3]},"id":12342,"mass":11510.0,"name":"Kokubunji","nametype":"Valid","recclass":"L6","reclat":34.3,"reclong":133.95,"year":"1986-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[139.75,35.73333]},"id":12343,"mass":238.0,"name":"Komagome","nametype":"Valid","recclass":"Iron","reclat":35.73333,"reclong":139.75,"year":"1926-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[26.16667,42.51667]},"id":12344,"mass":90.0,"name":"Konovo","nametype":"Valid","recclass":"LL5","reclat":42.51667,"reclong":26.16667,"year":"1931-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[21.17633,48.76367]},"id":53810,"mass":4300.0,"name":"Ko\u0161ice","nametype":"Valid","recclass":"H5","reclat":48.76367,"reclong":21.17633,"year":"2010-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[7.46472,49.32694]},"id":12353,"mass":16500.0,"name":"Kr\u00e4henberg","nametype":"Valid","recclass":"LL5","reclat":49.32694,"reclong":7.46472,"year":"1869-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[40.9,54.03333]},"id":12355,"mass":2440.0,"name":"Krasnoi-Ugol","nametype":"Valid","recclass":"L6","reclat":54.03333,"reclong":40.9,"year":"1829-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[56.08333,54.33333]},"id":12357,"mass":4000.0,"name":"Krasnyi Klyuch","nametype":"Valid","recclass":"H5","reclat":54.33333,"reclong":56.08333,"year":"1946-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[77,56.8]},"id":12363,"mass":845.2,"name":"Krutikha","nametype":"Valid","recclass":"OC","reclat":56.8,"reclong":77.0,"year":"1906-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[30.76667,47.83333]},"id":12364,"mass":50000.0,"name":"Krymka","nametype":"Valid","recclass":"LL3.2","reclat":47.83333,"reclong":30.76667,"year":"1946-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[31.7,51.15]},"id":12368,"mass":2250.0,"name":"Kukschin","nametype":"Valid","recclass":"L6","reclat":51.15,"reclong":31.7,"year":"1938-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[66.80222,30.73111]},"id":12369,"mass":453.6,"name":"Kulak","nametype":"Valid","recclass":"L5","reclat":30.73111,"reclong":66.80222,"year":"1961-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[33.5,50.75]},"id":12370,"mass":6000.0,"name":"Kuleschovka","nametype":"Valid","recclass":"L6","reclat":50.75,"reclong":33.5,"year":"1811-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[45,41.11667]},"id":12373,"mass":3719.0,"name":"Kulp","nametype":"Valid","recclass":"H6","reclat":41.11667,"reclong":45.0,"year":"1906-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[61.36667,55.78333]},"id":12377,"mass":200000.0,"name":"Kunashak","nametype":"Valid","recclass":"L6","reclat":55.78333,"reclong":61.36667,"year":"1949-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[59.2,42.25]},"id":12379,"mass":1100000.0,"name":"Kunya-Urgench","nametype":"Valid","recclass":"H5","reclat":42.25,"reclong":59.2,"year":"1998-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[138.38333,37.05]},"id":12381,"mass":4460.0,"name":"Kushiike","nametype":"Valid","recclass":"OC","reclat":37.05,"reclong":138.38333,"year":"1920-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.38333,29.68333]},"id":12382,"mass":5.0,"name":"Kusiali","nametype":"Valid","recclass":"L6","reclat":29.68333,"reclong":78.38333,"year":"1860-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[39.3,44.51667]},"id":12383,"mass":23.0,"name":"Kutais","nametype":"Valid","recclass":"H5","reclat":44.51667,"reclong":39.3,"year":"1977-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.03333,10.83333]},"id":12384,"mass":45000.0,"name":"Kuttippuram","nametype":"Valid","recclass":"L6","reclat":10.83333,"reclong":76.03333,"year":"1914-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[75.33333,55.2]},"id":12385,"mass":4047.0,"name":"Kuznetzovo","nametype":"Valid","recclass":"L6","reclat":55.2,"reclong":75.33333,"year":"1932-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[130.63333,32.03333]},"id":12390,"mass":45000.0,"name":"Kyushu","nametype":"Valid","recclass":"L6","reclat":32.03333,"reclong":130.63333,"year":"1886-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[1.75,47.08333]},"id":12392,"mass":2800.0,"name":"La B\u00e9casse","nametype":"Valid","recclass":"L6","reclat":47.08333,"reclong":1.75,"year":"1879-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-101.28333,20.66667]},"id":12394,"mass":399.0,"name":"La Charca","nametype":"Valid","recclass":"OC","reclat":20.66667,"reclong":-101.28333,"year":"1878-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-61.53333,-37.33333]},"id":12395,"mass":2000.0,"name":"La Colina","nametype":"Valid","recclass":"H5","reclat":-37.33333,"reclong":-61.53333,"year":"1924-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-58.16667,-31.23333]},"id":12396,"mass":45000.0,"name":"La Criolla","nametype":"Valid","recclass":"L6","reclat":-31.23333,"reclong":-58.16667,"year":"1985-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[5.58333,44.28333]},"id":12408,"mass":3833.0,"name":"Laborel","nametype":"Valid","recclass":"H5","reclat":44.28333,"reclong":5.58333,"year":"1871-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[82.71667,26.78333]},"id":12433,"mass":900.0,"name":"Lahrauli","nametype":"Valid","recclass":"Ureilite","reclat":26.78333,"reclong":82.71667,"year":"1955-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.63333,48.76667]},"id":12434,"mass":37000.0,"name":"L'Aigle","nametype":"Valid","recclass":"L6","reclat":48.76667,"reclong":0.63333,"year":"1803-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Found","geolocation":null,"id":32531,"mass":9.6,"name":"Cumulus Hills 04075","nametype":"Valid","recclass":"Pallasite","reclat":null,"reclong":null,"year":"2003-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.03333,21.86667]},"id":12435,"mass":212.5,"name":"Lakangaon","nametype":"Valid","recclass":"Eucrite-mmict","reclat":21.86667,"reclong":76.03333,"year":"1910-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.56667,24.45]},"id":12451,"mass":372.0,"name":"Lalitpur","nametype":"Valid","recclass":"L6","reclat":24.45,"reclong":78.56667,"year":"1887-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[1.06667,47.7]},"id":12455,"mass":51700.0,"name":"Lanc\u00e9","nametype":"Valid","recclass":"CO3.5","reclat":47.7,"reclong":1.06667,"year":"1872-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[5.11667,43.75]},"id":12456,"mass":7000.0,"name":"Lancon","nametype":"Valid","recclass":"H6","reclat":43.75,"reclong":5.11667,"year":"1897-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16.73333,58.85]},"id":12461,"mass":2300.0,"name":"L\u00e5nghalsen","nametype":"Valid","recclass":"L6","reclat":58.85,"reclong":16.73333,"year":"1947-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[126.19611,46.24167]},"id":12464,"mass":1282.0,"name":"Lanxi","nametype":"Valid","recclass":"L6","reclat":46.24167,"reclong":126.19611,"year":"1986-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16.23333,47.75]},"id":12465,"mass":7000.0,"name":"Lanzenkirchen","nametype":"Valid","recclass":"L4","reclat":47.75,"reclong":16.23333,"year":"1925-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[115.16667,33.13333]},"id":12466,"mass":14250.0,"name":"Laochenzhen","nametype":"Valid","recclass":"H5","reclat":33.13333,"reclong":115.16667,"year":"1987-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-1.11667,51.9]},"id":12740,"mass":1060.0,"name":"Launton","nametype":"Valid","recclass":"L6","reclat":51.9,"reclong":-1.11667,"year":"1830-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[51.56667,52.45]},"id":12743,"mass":800.0,"name":"Lavrentievka","nametype":"Valid","recclass":"L6","reclat":52.45,"reclong":51.56667,"year":"1938-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.43333,47.16667]},"id":12748,"mass":3000.0,"name":"Le Pressoir","nametype":"Valid","recclass":"H5","reclat":47.16667,"reclong":0.43333,"year":"1845-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.86667,48.53333]},"id":12749,"mass":780.0,"name":"Le Teilleul","nametype":"Valid","recclass":"Howardite","reclat":48.53333,"reclong":-0.86667,"year":"1845-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":20.0,":@computed_region_nnqa_25f4":608.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-99.33333,35.88333]},"id":12755,"mass":51500.0,"name":"Leedey","nametype":"Valid","recclass":"L6","reclat":35.88333,"reclong":-99.33333,"year":"1943-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[28.36667,-25.66667]},"id":12756,"mass":460.0,"name":"Leeuwfontein","nametype":"Valid","recclass":"L6","reclat":-25.66667,"reclong":28.36667,"year":"1912-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-6.96667,52.66667]},"id":12759,"mass":271.4,"name":"Leighlinbridge","nametype":"Valid","recclass":"L6","reclat":52.66667,"reclong":-6.96667,"year":"1999-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":29.0,":@computed_region_nnqa_25f4":1585.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-87.5,34.58333]},"id":12760,"mass":877.0,"name":"Leighton","nametype":"Valid","recclass":"H5","reclat":34.58333,"reclong":-87.5,"year":"1907-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[32.85,52.26667]},"id":12765,"mass":700.0,"name":"Leonovka","nametype":"Valid","recclass":"L6","reclat":52.26667,"reclong":32.85,"year":"1900-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[3.25,48.35]},"id":12769,"mass":125.0,"name":"Les Ormes","nametype":"Valid","recclass":"L6","reclat":48.35,"reclong":3.25,"year":"1857-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[4.73333,50.36667]},"id":12772,"mass":2000.0,"name":"Lesves","nametype":"Valid","recclass":"L6","reclat":50.36667,"reclong":4.73333,"year":"1896-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[26.18333,-26.15]},"id":14646,"mass":4000.0,"name":"Lichtenberg","nametype":"Valid","recclass":"H6","reclat":-26.15,"reclong":26.18333,"year":"1973-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[15.86667,56.65]},"id":14650,"mass":6862.0,"name":"Lillaverke","nametype":"Valid","recclass":"H5","reclat":56.65,"reclong":15.86667,"year":"1930-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-8.78333,52.56667]},"id":14652,"mass":50000.0,"name":"Limerick","nametype":"Valid","recclass":"H5","reclat":52.56667,"reclong":-8.78333,"year":"1813-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[12.9,52.75]},"id":14655,"mass":1862.0,"name":"Linum","nametype":"Valid","recclass":"L6","reclat":52.75,"reclong":12.9,"year":"1854-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[118.98333,31.63333]},"id":14659,"mass":498.0,"name":"Lishui","nametype":"Valid","recclass":"L5","reclat":31.63333,"reclong":118.98333,"year":"1978-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[14.85,50.2]},"id":14661,"mass":12800.0,"name":"Lissa","nametype":"Valid","recclass":"L6","reclat":50.2,"reclong":14.85,"year":"1808-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":18.0,":@computed_region_nnqa_25f4":2171.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-92.08333,37.91667]},"id":14664,"mass":491.0,"name":"Little Piney","nametype":"Valid","recclass":"L5","reclat":37.91667,"reclong":-92.08333,"year":"1839-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[26.43333,56]},"id":14670,"mass":5213.0,"name":"Lixna","nametype":"Valid","recclass":"H4","reclat":56.0,"reclong":26.43333,"year":"1820-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[71.8,29.53333]},"id":14675,"mass":1000.0,"name":"Lodran","nametype":"Valid","recclass":"Lodranite","reclat":29.53333,"reclong":71.8,"year":"1868-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[72.62667,26.96556]},"id":14678,"mass":40000.0,"name":"Lohawat","nametype":"Valid","recclass":"Howardite","reclat":26.96556,"reclong":72.62667,"year":"1994-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":40.0,":@computed_region_nnqa_25f4":2770.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-77.21163,38.70066]},"id":52843,"mass":329.7,"name":"Lorton","nametype":"Valid","recclass":"L6","reclat":38.70066,"reclong":-77.21163,"year":"2010-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.83333,38]},"id":14708,"mass":25.0,"name":"Los Martinez","nametype":"Valid","recclass":"L6","reclat":38.0,"reclong":-0.83333,"year":"1894-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":20.0,":@computed_region_nnqa_25f4":2711.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-95.15,36.00833]},"id":14711,"mass":17000.0,"name":"Lost City","nametype":"Valid","recclass":"H5","reclat":36.00833,"reclong":-95.15,"year":"1970-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":36.0,":@computed_region_nnqa_25f4":1327.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-85.75,38.25]},"id":14716,"mass":1300.0,"name":"Louisville","nametype":"Valid","recclass":"L6","reclat":38.25,"reclong":-85.75,"year":"1977-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[19.91667,52]},"id":14718,"mass":59000.0,"name":"\u0141owicz","nametype":"Valid","recclass":"Mesosiderite-A3","reclat":52.0,"reclong":19.91667,"year":"1935-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[75.15,24.95]},"id":14721,"mass":9241.0,"name":"Lua","nametype":"Valid","recclass":"L5","reclat":24.95,"reclong":75.15,"year":"1926-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.48333,47.85]},"id":14724,"mass":3500.0,"name":"Luc\u00e9","nametype":"Valid","recclass":"L6","reclat":47.85,"reclong":0.48333,"year":"1768-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":31.0,":@computed_region_nnqa_25f4":1567.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-84.76667,32.03333]},"id":14753,"mass":340.0,"name":"Lumpkin","nametype":"Valid","recclass":"L6","reclat":32.03333,"reclong":-84.76667,"year":"1869-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[103.3,24.8]},"id":14754,"mass":2520.0,"name":"Lunan","nametype":"Valid","recclass":"H6","reclat":24.8,"reclong":103.3,"year":"1980-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[13.03333,56.21667]},"id":14755,"mass":11000.0,"name":"Lundsg\u00e5rd","nametype":"Valid","recclass":"L6","reclat":56.21667,"reclong":13.03333,"year":"1889-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[27.7,61.2]},"id":14756,"mass":885.0,"name":"Luotolax","nametype":"Valid","recclass":"Howardite","reclat":61.2,"reclong":27.7,"year":"1813-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[5,46.21667]},"id":14757,"mass":14000.0,"name":"Luponnas","nametype":"Valid","recclass":"H3-5","reclat":46.21667,"reclong":5.0,"year":"1753-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[29.43333,-7.21667]},"id":14759,"mass":null,"name":"Lusaka","nametype":"Valid","recclass":"Unknown","reclat":-7.21667,"reclong":29.43333,"year":"1951-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[97,19]},"id":14764,"mass":540.0,"name":"Mabwe-Khoywa","nametype":"Valid","recclass":"L5","reclat":19.0,"reclong":97.0,"year":"1937-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-36.66667,-5.2]},"id":15370,"mass":1500.0,"name":"Macau","nametype":"Valid","recclass":"H5","reclat":-5.2,"reclong":-36.66667,"year":"1836-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35.24222,-15.21222]},"id":15371,"mass":93200.0,"name":"Machinga","nametype":"Valid","recclass":"L6","reclat":-15.21222,"reclong":35.24222,"year":"1981-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[31.95,-28.83333]},"id":15372,"mass":1995.0,"name":"Macibini","nametype":"Valid","recclass":"Eucrite-pmict","reclat":-28.83333,"reclong":31.95,"year":"1936-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[86.36667,25.91667]},"id":15379,"mass":1000.0,"name":"Madhipura","nametype":"Valid","recclass":"L","reclat":25.91667,"reclong":86.36667,"year":"1950-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[111.53333,-7.75]},"id":15380,"mass":400.0,"name":"Madiun","nametype":"Valid","recclass":"L6","reclat":-7.75,"reclong":111.53333,"year":"1935-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-3.71667,40.41667]},"id":15382,"mass":400.0,"name":"Madrid","nametype":"Valid","recclass":"L6","reclat":40.41667,"reclong":-3.71667,"year":"1896-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-49.93333,-26.16667]},"id":15383,"mass":600.0,"name":"Mafra","nametype":"Valid","recclass":"L3-4","reclat":-26.16667,"reclong":-49.93333,"year":"1941-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[27.51667,37.86667]},"id":15386,"mass":5000.0,"name":"Magnesia","nametype":"Valid","recclass":"Iron, IAB-sHL","reclat":37.86667,"reclong":27.51667,"year":"1899-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[31.65,-19.48333]},"id":15387,"mass":666.6,"name":"Magombedze","nametype":"Valid","recclass":"H3-5","reclat":-19.48333,"reclong":31.65,"year":"1990-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[95.78333,27.66667]},"id":47361,"mass":70500.0,"name":"Mahadevpur","nametype":"Valid","recclass":"H4\/5","reclat":27.66667,"reclong":95.78333,"year":"2007-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[9.38333,12.83333]},"id":30751,"mass":4629.0,"name":"Maigatari-Danduma","nametype":"Valid","recclass":"H5\/6","reclat":12.83333,"reclong":9.38333,"year":"2004-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":11.0,":@computed_region_nnqa_25f4":611.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-104,32.21667]},"id":15393,"mass":150.0,"name":"Malaga","nametype":"Valid","recclass":"OC","reclat":32.21667,"reclong":-104.0,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[31.75,9.5]},"id":15394,"mass":2000.0,"name":"Malakal","nametype":"Valid","recclass":"L5","reclat":9.5,"reclong":31.75,"year":"1970-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[33.51667,-3.13333]},"id":15395,"mass":470.0,"name":"Malampaka","nametype":"Valid","recclass":"H","reclat":-3.13333,"reclong":33.51667,"year":"1930-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-63.23333,-28.93333]},"id":15397,"mass":null,"name":"Malotas","nametype":"Valid","recclass":"H5","reclat":-28.93333,"reclong":-63.23333,"year":"1931-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[26.76667,-29.45]},"id":15400,"mass":807.0,"name":"Malvern","nametype":"Valid","recclass":"Eucrite-pmict","reclat":-29.45,"reclong":26.76667,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[62.08333,45.21667]},"id":15401,"mass":1000.0,"name":"Mamra Springs","nametype":"Valid","recclass":"L6","reclat":45.21667,"reclong":62.08333,"year":"1927-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[86.7,23.05]},"id":15402,"mass":1700.0,"name":"Manbhoom","nametype":"Valid","recclass":"LL6","reclat":23.05,"reclong":86.7,"year":"1863-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.1,20.96667]},"id":15403,"mass":50.0,"name":"Manegaon","nametype":"Valid","recclass":"Diogenite","reclat":20.96667,"reclong":76.1,"year":"1843-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[31.6,-17.65]},"id":15405,"mass":22300.0,"name":"Mangwendi","nametype":"Valid","recclass":"LL6","reclat":-17.65,"reclong":31.6,"year":"1934-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[44.63333,45.81667]},"id":15409,"mass":3555.0,"name":"Manych","nametype":"Valid","recclass":"LL3.4","reclat":45.81667,"reclong":44.63333,"year":"1951-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[72.08333,34.23333]},"id":15414,"mass":4500.0,"name":"Mardan","nametype":"Valid","recclass":"H5","reclat":34.23333,"reclong":72.08333,"year":"1948-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":null,"id":15418,"mass":114.0,"name":"Maria Linden","nametype":"Valid","recclass":"L4","reclat":null,"reclong":null,"year":"1925-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":19.0,":@computed_region_nnqa_25f4":471.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-99.38333,42.71667]},"id":15419,"mass":340.0,"name":"Mariaville","nametype":"Valid","recclass":"Iron","reclat":42.71667,"reclong":-99.38333,"year":"1898-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.46745,54.76183]},"id":48973,"mass":25.81,"name":"Maribo","nametype":"Valid","recclass":"CM2","reclat":54.76183,"reclong":11.46745,"year":"2009-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[29.25,4.66667]},"id":15421,"mass":3200.0,"name":"Maridi","nametype":"Valid","recclass":"H6","reclat":4.66667,"reclong":29.25,"year":"1941-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-49.93333,-22.25]},"id":15422,"mass":2500.0,"name":"Marilia","nametype":"Valid","recclass":"H4","reclat":-22.25,"reclong":-49.93333,"year":"1971-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":16.0,":@computed_region_nnqa_25f4":287.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-91.6,41.9]},"id":15424,"mass":28400.0,"name":"Marion (Iowa)","nametype":"Valid","recclass":"L6","reclat":41.9,"reclong":-91.6,"year":"1847-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[30.5,61.5]},"id":15426,"mass":45000.0,"name":"Marjalahti","nametype":"Valid","recclass":"Pallasite, PMG","reclat":61.5,"reclong":30.5,"year":"1902-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.15,44.5]},"id":15429,"mass":3000.0,"name":"Marmande","nametype":"Valid","recclass":"L5","reclat":44.5,"reclong":0.15,"year":"1848-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[48.1,-14.2]},"id":15430,"mass":6000.0,"name":"Maromandia","nametype":"Valid","recclass":"L6","reclat":-14.2,"reclong":48.1,"year":"2002-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":39.0,":@computed_region_nnqa_25f4":2740.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-84.1,35.8]},"id":15436,"mass":1443.0,"name":"Maryville","nametype":"Valid","recclass":"L6","reclat":35.8,"reclong":-84.1,"year":"1983-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[1.86667,45.36667]},"id":15438,"mass":1000.0,"name":"Mascombes","nametype":"Valid","recclass":"L6","reclat":45.36667,"reclong":1.86667,"year":"1836-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0,0]},"id":53653,"mass":24.54,"name":"Mason Gully","nametype":"Valid","recclass":"H5","reclat":0.0,"reclong":0.0,"year":"2010-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[12.61667,48.13333]},"id":15443,"mass":1600.0,"name":"M\u00e4ssing","nametype":"Valid","recclass":"Howardite","reclat":48.13333,"reclong":12.61667,"year":"1803-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[13.13333,48.18333]},"id":15446,"mass":19000.0,"name":"Mauerkirchen","nametype":"Valid","recclass":"L6","reclat":48.18333,"reclong":13.13333,"year":"1768-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[57,-20]},"id":15447,"mass":220.0,"name":"Mauritius","nametype":"Valid","recclass":"L6","reclat":-20.0,"reclong":57.0,"year":"1801-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[12.08333,8.96667]},"id":15451,"mass":4850.0,"name":"Mayo Belwa","nametype":"Valid","recclass":"Aubrite","reclat":8.96667,"reclong":12.08333,"year":"1974-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-101.68333,24.68333]},"id":15453,"mass":4000.0,"name":"Mazapil","nametype":"Valid","recclass":"Iron, IAB-sLL","reclat":24.68333,"reclong":-101.68333,"year":"1885-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[30,-1.21667]},"id":15454,"mass":4975.0,"name":"Maziba","nametype":"Valid","recclass":"L6","reclat":-1.21667,"reclong":30.0,"year":"1942-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[34.16667,1.06667]},"id":15455,"mass":150000.0,"name":"Mbale","nametype":"Valid","recclass":"L5\/6","reclat":1.06667,"reclong":34.16667,"year":"1992-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-67.5,-27.25]},"id":15467,"mass":31.0,"name":"Medanitos","nametype":"Valid","recclass":"Eucrite-cm","reclat":-27.25,"reclong":-67.5,"year":"1953-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[77.8,29.01667]},"id":15469,"mass":22.0,"name":"Meerut","nametype":"Valid","recclass":"H5","reclat":29.01667,"reclong":77.8,"year":"1861-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[106.88333,-6.23333]},"id":15470,"mass":24750.0,"name":"Meester-Cornelis","nametype":"Valid","recclass":"H5","reclat":-6.23333,"reclong":106.88333,"year":"1915-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[13.15,53.18333]},"id":15485,"mass":10500.0,"name":"Menow","nametype":"Valid","recclass":"H4","reclat":53.18333,"reclong":13.15,"year":"1862-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[7.21817,46.81867]},"id":15486,"mass":28.9,"name":"Menziswyl","nametype":"Valid","recclass":"L5","reclat":46.81867,"reclong":7.21817,"year":"1903-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[12.06667,55.05]},"id":15489,"mass":4000.0,"name":"Mern","nametype":"Valid","recclass":"L6","reclat":55.05,"reclong":12.06667,"year":"1878-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[37.66667,0]},"id":15491,"mass":6000.0,"name":"Meru","nametype":"Valid","recclass":"LL6","reclat":0.0,"reclong":37.66667,"year":"1945-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[81.98333,25.48333]},"id":15492,"mass":71400.0,"name":"Merua","nametype":"Valid","recclass":"H5","reclat":25.48333,"reclong":81.98333,"year":"1920-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[15.56667,38.18333]},"id":15495,"mass":2405.0,"name":"Messina","nametype":"Valid","recclass":"L5","reclat":38.18333,"reclong":15.56667,"year":"1955-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.1,50.58333]},"id":16626,"mass":870.0,"name":"Meuselbach","nametype":"Valid","recclass":"L6","reclat":50.58333,"reclong":11.1,"year":"1897-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[3.25,45.76667]},"id":16627,"mass":1300.0,"name":"Mezel","nametype":"Valid","recclass":"L6","reclat":45.76667,"reclong":3.25,"year":"1949-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[25.73333,46.5]},"id":16628,"mass":22700.0,"name":"Mez\u00f6-Madaras","nametype":"Valid","recclass":"L3.7","reclat":46.5,"reclong":25.73333,"year":"1852-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[83.61667,25.9]},"id":16629,"mass":350.0,"name":"Mhow","nametype":"Valid","recclass":"L6","reclat":25.9,"reclong":83.61667,"year":"1827-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[111.7,34.8]},"id":16631,"mass":1100.0,"name":"Mianchi","nametype":"Valid","recclass":"H5","reclat":34.8,"reclong":111.7,"year":"1980-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-1.16667,54.56667]},"id":16632,"mass":1600.0,"name":"Middlesbrough","nametype":"Valid","recclass":"L6","reclat":54.56667,"reclong":-1.16667,"year":"1881-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":41.0,":@computed_region_nnqa_25f4":2996.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-90.36556,42.9075]},"id":52090,"mass":3584.0,"name":"Mifflin","nametype":"Valid","recclass":"L5","reclat":42.9075,"reclong":-90.36556,"year":"2010-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[30.96667,48.06667]},"id":16634,"mass":8000.0,"name":"Mighei","nametype":"Valid","recclass":"CM2","reclat":48.06667,"reclong":30.96667,"year":"1889-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[133.22,35.56833]},"id":16635,"mass":6380.0,"name":"Mihonoseki","nametype":"Valid","recclass":"L6","reclat":35.56833,"reclong":133.22,"year":"1992-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[17.53333,46.23333]},"id":16636,"mass":224.2,"name":"Mike","nametype":"Valid","recclass":"L6","reclat":46.23333,"reclong":17.53333,"year":"1944-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16.1,46.18333]},"id":16640,"mass":10000.0,"name":"Milena","nametype":"Valid","recclass":"L6","reclat":46.18333,"reclong":16.1,"year":"1842-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[120.36667,-26.45]},"id":16643,"mass":330000.0,"name":"Millbillillie","nametype":"Valid","recclass":"Eucrite-mmict","reclat":-26.45,"reclong":120.36667,"year":"1960-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":15.0,":@computed_region_nnqa_25f4":11.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-92.05,35.4]},"id":16645,"mass":16700.0,"name":"Miller (Arkansas)","nametype":"Valid","recclass":"H5","reclat":35.4,"reclong":-92.05,"year":"1930-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[136.93333,35.07833]},"id":16692,"mass":1040.0,"name":"Minamino","nametype":"Valid","recclass":"L","reclat":35.07833,"reclong":136.93333,"year":"1632-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[14.7,37.28333]},"id":16696,"mass":42.0,"name":"Mineo","nametype":"Valid","recclass":"Pallasite","reclat":37.28333,"reclong":14.7,"year":"1826-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[120.66667,32.33333]},"id":16697,"mass":5500.0,"name":"Min-Fan-Zhun","nametype":"Valid","recclass":"LL6","reclat":32.33333,"reclong":120.66667,"year":"1952-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16.6,47.7]},"id":16700,"mass":550.0,"name":"Minnichhof","nametype":"Valid","recclass":"OC","reclat":47.7,"reclong":16.6,"year":"1905-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[83.25,25.68333]},"id":16701,"mass":8510.0,"name":"Mirzapur","nametype":"Valid","recclass":"L5","reclat":25.68333,"reclong":83.25,"year":"1910-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[23,56.66667]},"id":16703,"mass":5800.0,"name":"Misshof","nametype":"Valid","recclass":"H5","reclat":56.66667,"reclong":23.0,"year":"1890-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[5.93333,61.73333]},"id":16707,"mass":100.7,"name":"Mjelleim","nametype":"Valid","recclass":"H","reclat":61.73333,"reclong":5.93333,"year":"1898-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[24.03333,46.8]},"id":16709,"mass":300000.0,"name":"Mocs","nametype":"Valid","recclass":"L5-6","reclat":46.8,"reclong":24.03333,"year":"1882-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":17.0,":@computed_region_nnqa_25f4":1290.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-101.1,38.5]},"id":16711,"mass":35000.0,"name":"Modoc (1905)","nametype":"Valid","recclass":"L6","reclat":38.5,"reclong":-101.1,"year":"1905-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[174.4,-39.63333]},"id":16713,"mass":4500.0,"name":"Mokoia","nametype":"Valid","recclass":"CV3","reclat":-39.63333,"reclong":174.4,"year":"1908-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-1.16667,38.11667]},"id":16715,"mass":144000.0,"name":"Molina","nametype":"Valid","recclass":"H5","reclat":38.11667,"reclong":-1.16667,"year":"1858-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[26.46667,-31.25]},"id":16717,"mass":150.0,"name":"Molteno","nametype":"Valid","recclass":"Howardite","reclat":-31.25,"reclong":26.46667,"year":"1953-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":23.0,":@computed_region_nnqa_25f4":2957.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-102.85833,31.60833]},"id":16719,"mass":2587.0,"name":"Monahans (1998)","nametype":"Valid","recclass":"H5","reclat":31.60833,"reclong":-102.85833,"year":"1998-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":37.0,":@computed_region_nnqa_25f4":636.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-80.5,35.25]},"id":16720,"mass":8600.0,"name":"Monroe","nametype":"Valid","recclass":"H4","reclat":35.25,"reclong":-80.5,"year":"1849-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-8.25,38.01667]},"id":16725,"mass":4885.0,"name":"Monte das Fortes","nametype":"Valid","recclass":"L5","reclat":38.01667,"reclong":-8.25,"year":"1950-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[13.35,43.26667]},"id":16726,"mass":3130.0,"name":"Monte Milone","nametype":"Valid","recclass":"L5","reclat":43.26667,"reclong":13.35,"year":"1846-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[1.9625,43.39056]},"id":16727,"mass":149000.0,"name":"Montferr\u00e9","nametype":"Valid","recclass":"H5","reclat":43.39056,"reclong":1.9625,"year":"1923-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[1.58333,47.63333]},"id":16729,"mass":500.0,"name":"Montlivault","nametype":"Valid","recclass":"L6","reclat":47.63333,"reclong":1.58333,"year":"1838-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[27.35,-15.96667]},"id":16733,"mass":null,"name":"Monze","nametype":"Valid","recclass":"L6","reclat":-15.96667,"reclong":27.35,"year":"1950-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":37.0,":@computed_region_nnqa_25f4":2431.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-79.38333,35.41667]},"id":16736,"mass":1880.0,"name":"Moore County","nametype":"Valid","recclass":"Eucrite-cm","reclat":35.41667,"reclong":-79.38333,"year":"1913-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-8.33333,52.45]},"id":16737,"mass":3520.0,"name":"Mooresfort","nametype":"Valid","recclass":"H5","reclat":52.45,"reclong":-8.33333,"year":"1810-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[145.6,-40.975]},"id":16738,"mass":8887.5,"name":"Moorleah","nametype":"Valid","recclass":"L6","reclat":-40.975,"reclong":145.6,"year":"1930-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.83333,28.78333]},"id":16740,"mass":70.0,"name":"Moradabad","nametype":"Valid","recclass":"L6","reclat":28.78333,"reclong":78.83333,"year":"1808-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[18.53333,49.6]},"id":16742,"mass":633.0,"name":"Mor\u00e1vka","nametype":"Valid","recclass":"H5","reclat":49.6,"reclong":18.53333,"year":"2000-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[5.13333,44.6]},"id":16747,"mass":1300.0,"name":"Mornans","nametype":"Valid","recclass":"H5","reclat":44.6,"reclong":5.13333,"year":"1875-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.7,59.43333]},"id":36592,"mass":3763.0,"name":"Moss","nametype":"Valid","recclass":"CO3.6","reclat":59.43333,"reclong":10.7,"year":"2006-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[77.33333,26.83333]},"id":16759,"mass":1500.0,"name":"Moti-ka-nagla","nametype":"Valid","recclass":"H6","reclat":26.83333,"reclong":77.33333,"year":"1868-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.5,45.2]},"id":16762,"mass":9150.0,"name":"Motta di Conti","nametype":"Valid","recclass":"H4","reclat":45.2,"reclong":8.5,"year":"1868-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[141.7,-29.8]},"id":16766,"mass":11300.0,"name":"Mount Browne","nametype":"Valid","recclass":"H6","reclat":-29.8,"reclong":141.7,"year":"1902-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[4.8,18.7]},"id":16804,"mass":110000.0,"name":"Mount Tazerzait","nametype":"Valid","recclass":"L5","reclat":18.7,"reclong":4.8,"year":"1991-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[6.86667,44.08333]},"id":16805,"mass":17000.0,"name":"Mount Vaisi","nametype":"Valid","recclass":"Stone-uncl","reclat":44.08333,"reclong":6.86667,"year":"1637-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[33.5,-11.5]},"id":16820,"mass":1100.0,"name":"Mtola","nametype":"Valid","recclass":"Stone-uncl","reclat":-11.5,"reclong":33.5,"year":"1944-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[77.01667,12.63333]},"id":16841,"mass":4400.0,"name":"Muddoor","nametype":"Valid","recclass":"L5","reclat":12.63333,"reclong":77.01667,"year":"1865-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[80.83333,9.33333]},"id":16851,"mass":25.5,"name":"Mulletiwu","nametype":"Valid","recclass":"L","reclat":9.33333,"reclong":80.83333,"year":"1795-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[90.21667,24.5]},"id":16874,"mass":4703.0,"name":"Muraid","nametype":"Valid","recclass":"L6","reclat":24.5,"reclong":90.21667,"year":"1924-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[145.2,-36.61667]},"id":16875,"mass":100000.0,"name":"Murchison","nametype":"Valid","recclass":"CM2","reclat":-36.61667,"reclong":145.2,"year":"1969-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":36.0,":@computed_region_nnqa_25f4":237.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-88.1,36.6]},"id":16882,"mass":12600.0,"name":"Murray","nametype":"Valid","recclass":"CM2","reclat":36.6,"reclong":-88.1,"year":"1950-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[85.53333,26.13333]},"id":16885,"mass":1245.0,"name":"Muzaffarpur","nametype":"Valid","recclass":"Iron, IAB-sHL","reclat":26.13333,"reclong":85.53333,"year":"1964-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[72.63333,23.05]},"id":16887,"mass":null,"name":"Myhee Caunta","nametype":"Valid","recclass":"OC","reclat":23.05,"reclong":72.63333,"year":"1842-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[1,12]},"id":16889,"mass":8165.0,"name":"Nadiabondi","nametype":"Valid","recclass":"H5","reclat":12.0,"reclong":1.0,"year":"1956-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[140.06167,38.12167]},"id":16890,"mass":1810.0,"name":"Nagai","nametype":"Valid","recclass":"L6","reclat":38.12167,"reclong":140.06167,"year":"1922-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.21667,26.98333]},"id":16892,"mass":20.0,"name":"Nagaria","nametype":"Valid","recclass":"Eucrite-cm","reclat":26.98333,"reclong":78.21667,"year":"1875-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[19.5,49.16667]},"id":16893,"mass":6100.0,"name":"Nagy-Borov\u00e9","nametype":"Valid","recclass":"L5","reclat":49.16667,"reclong":19.5,"year":"1895-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[30.35,31.31667]},"id":16898,"mass":10000.0,"name":"Nakhla","nametype":"Valid","recclass":"Martian (nakhlite)","reclat":31.31667,"reclong":30.35,"year":"1911-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[100.08333,13.73333]},"id":16899,"mass":23200.0,"name":"Nakhon Pathom","nametype":"Valid","recclass":"L6","reclat":13.73333,"reclong":100.08333,"year":"1923-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[79.2,12.28333]},"id":16902,"mass":4500.0,"name":"Nammianthal","nametype":"Valid","recclass":"H5","reclat":12.28333,"reclong":79.2,"year":"1886-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[103.5,35.66667]},"id":16903,"mass":52900.0,"name":"Nan Yang Pao","nametype":"Valid","recclass":"L6","reclat":35.66667,"reclong":103.5,"year":"1917-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":45.0,":@computed_region_nnqa_25f4":419.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-77.16667,38.41667]},"id":16904,"mass":7500.0,"name":"Nanjemoy","nametype":"Valid","recclass":"H6","reclat":38.41667,"reclong":-77.16667,"year":"1825-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[121.8,32.11667]},"id":16907,"mass":529.0,"name":"Nantong","nametype":"Valid","recclass":"H6","reclat":32.11667,"reclong":121.8,"year":"1984-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[77,19.25]},"id":16908,"mass":17000.0,"name":"Naoki","nametype":"Valid","recclass":"H6","reclat":19.25,"reclong":77.0,"year":"1928-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[51.5,33.75]},"id":16909,"mass":2700.0,"name":"Naragh","nametype":"Valid","recclass":"H6","reclat":33.75,"reclong":51.5,"year":"1974-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[150.68889,-34.05]},"id":16912,"mass":367.5,"name":"Narellan","nametype":"Valid","recclass":"L6","reclat":-34.05,"reclong":150.68889,"year":"1928-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[12.51667,42.51667]},"id":16914,"mass":null,"name":"Narni","nametype":"Valid","recclass":"Stone-uncl","reclat":42.51667,"reclong":12.51667,"year":"0921-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[165.9,-21.73333]},"id":16922,"mass":347.0,"name":"Nassirah","nametype":"Valid","recclass":"H4","reclat":-21.73333,"reclong":165.9,"year":"1936-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":null,"id":16923,"mass":1.4,"name":"Natal","nametype":"Valid","recclass":"Stone-uncl","reclat":null,"reclong":null,"year":"1973-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[83.66667,21.25]},"id":16927,"mass":105.0,"name":"Nawapali","nametype":"Valid","recclass":"CM2","reclat":21.25,"reclong":83.66667,"year":"1890-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[136.46528,36.44917]},"id":16934,"mass":420.0,"name":"Neagari","nametype":"Valid","recclass":"L6","reclat":36.44917,"reclong":136.46528,"year":"1995-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[83.48333,18.68333]},"id":16935,"mass":4500.0,"name":"Nedagolla","nametype":"Valid","recclass":"Iron, ungrouped","reclat":18.68333,"reclong":83.48333,"year":"1870-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35.33333,9.5]},"id":16941,"mass":2450.0,"name":"Nejo","nametype":"Valid","recclass":"L6","reclat":9.5,"reclong":35.33333,"year":"1970-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[21.5,56.5]},"id":16945,"mass":10250.0,"name":"Nerft","nametype":"Valid","recclass":"L6","reclat":56.5,"reclong":21.5,"year":"1864-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.80833,47.525]},"id":16950,"mass":6189.0,"name":"Neuschwanstein","nametype":"Valid","recclass":"EL6","reclat":47.525,"reclong":10.80833,"year":"2002-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":38.0,":@computed_region_nnqa_25f4":2615.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-81.76667,40]},"id":16953,"mass":230000.0,"name":"New Concord","nametype":"Valid","recclass":"L6","reclat":40.0,"reclong":-81.76667,"year":"1860-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35.68333,15.36667]},"id":16954,"mass":12000.0,"name":"New Halfa","nametype":"Valid","recclass":"L4","reclat":15.36667,"reclong":35.68333,"year":"1994-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":22.0,":@computed_region_nnqa_25f4":1667.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-90.10976,29.94718]},"id":16960,"mass":19256.0,"name":"New Orleans","nametype":"Valid","recclass":"H5","reclat":29.94718,"reclong":-90.10976,"year":"2003-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[111.41667,-7.45]},"id":16966,"mass":1393.0,"name":"Ngawi","nametype":"Valid","recclass":"LL3.6","reclat":-7.45,"reclong":111.41667,"year":"1883-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-4.38333,13.85]},"id":16968,"mass":37500.0,"name":"N'Goureyma","nametype":"Valid","recclass":"Iron, ungrouped","reclat":13.85,"reclong":-4.38333,"year":"1900-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-1.43333,49.03333]},"id":16970,"mass":null,"name":"Nicorps","nametype":"Valid","recclass":"Stone-uncl","reclat":49.03333,"reclong":-1.43333,"year":"1750-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":null,"id":16974,"mass":3.3,"name":"Niger (L6)","nametype":"Valid","recclass":"L6","reclat":null,"reclong":null,"year":"1967-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":null,"id":16975,"mass":3.3,"name":"Niger (LL6)","nametype":"Valid","recclass":"LL6","reclat":null,"reclong":null,"year":"1967-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.63333,52.45]},"id":16976,"mass":3996.0,"name":"Nikolaevka","nametype":"Valid","recclass":"H4","reclat":52.45,"reclong":78.63333,"year":"1935-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[37.33333,56.11667]},"id":16977,"mass":6000.0,"name":"Nikolskoe","nametype":"Valid","recclass":"L4","reclat":56.11667,"reclong":37.33333,"year":"1954-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[121.48333,29.86667]},"id":16980,"mass":14250.0,"name":"Ningbo","nametype":"Valid","recclass":"Iron, IVA","reclat":29.86667,"reclong":121.48333,"year":"1975-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[105.90667,32.925]},"id":16981,"mass":4610.0,"name":"Ningqiang","nametype":"Valid","recclass":"C3-ung","reclat":32.925,"reclong":105.90667,"year":"1983-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[131.56667,34.2]},"id":16982,"mass":467.0,"name":"Nio","nametype":"Valid","recclass":"H3-4","reclat":34.2,"reclong":131.56667,"year":"1897-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[30.7,-28.56667]},"id":16983,"mass":17200.0,"name":"N'Kandhla","nametype":"Valid","recclass":"Iron, IID","reclat":-28.56667,"reclong":30.7,"year":"1912-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":49.0,":@computed_region_nnqa_25f4":1683.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-69.48333,44.08333]},"id":16984,"mass":2300.0,"name":"Nobleborough","nametype":"Valid","recclass":"Eucrite-pmict","reclat":44.08333,"reclong":-69.48333,"year":"1823-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":35.0,":@computed_region_nnqa_25f4":2238.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-86.055,40.08528]},"id":16985,"mass":483.7,"name":"Noblesville","nametype":"Valid","recclass":"H4-6","reclat":40.08528,"reclong":-86.055,"year":"1991-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[130.75,33.725]},"id":16988,"mass":472.0,"name":"Nogata","nametype":"Valid","recclass":"L6","reclat":33.725,"reclong":130.75,"year":"0861-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-59.83333,-32.36667]},"id":16989,"mass":4000.0,"name":"Nogoya","nametype":"Valid","recclass":"CM2","reclat":-32.36667,"reclong":-59.83333,"year":"1879-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":15.0,":@computed_region_nnqa_25f4":10.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-92.26667,36.21667]},"id":16994,"mass":1050.0,"name":"Norfork","nametype":"Valid","recclass":"Iron, IIIAB","reclat":36.21667,"reclong":-92.26667,"year":"1918-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":17.0,":@computed_region_nnqa_25f4":1252.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-99.86667,39.68333]},"id":17922,"mass":1100000.0,"name":"Norton County","nametype":"Valid","recclass":"Aubrite","reclat":39.68333,"reclong":-99.86667,"year":"1948-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.52722,45.29167]},"id":17930,"mass":177.0,"name":"Noventa Vicentina","nametype":"Valid","recclass":"H4","reclat":45.29167,"reclong":11.52722,"year":"1971-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[46,54.81667]},"id":17933,"mass":1900.0,"name":"Novo-Urei","nametype":"Valid","recclass":"Ureilite","reclat":54.81667,"reclong":46.0,"year":"1886-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[31.33333,58.55]},"id":17934,"mass":null,"name":"Novy-Ergi","nametype":"Valid","recclass":"Stone-uncl","reclat":58.55,"reclong":31.33333,"year":"1662-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[22,56]},"id":17935,"mass":1001.0,"name":"Novy-Projekt","nametype":"Valid","recclass":"OC","reclat":56.0,"reclong":22.0,"year":"1908-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[102.46667,42.91667]},"id":17936,"mass":250.0,"name":"Noyan-Bogdo","nametype":"Valid","recclass":"L6","reclat":42.91667,"reclong":102.46667,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-102.13333,24.3]},"id":17938,"mass":50000.0,"name":"Nuevo Mercurio","nametype":"Valid","recclass":"H5","reclat":24.3,"reclong":-102.13333,"year":"1978-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.75,41.63333]},"id":17959,"mass":5000.0,"name":"Nulles","nametype":"Valid","recclass":"H6","reclat":41.63333,"reclong":0.75,"year":"1851-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[141.86667,43.33333]},"id":17960,"mass":363.0,"name":"Numakai","nametype":"Valid","recclass":"H4","reclat":43.33333,"reclong":141.86667,"year":"1925-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[94.91667,21.20833]},"id":17969,"mass":737.6,"name":"Nyaung","nametype":"Valid","recclass":"Iron, IIIAB","reclat":21.20833,"reclong":94.91667,"year":"1939-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[22.025,47.55]},"id":17970,"mass":1100.0,"name":"Nyir\u00e1brany","nametype":"Valid","recclass":"LL5","reclat":47.55,"reclong":22.025,"year":"1914-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[55.26667,57.78333]},"id":17979,"mass":500000.0,"name":"Ochansk","nametype":"Valid","recclass":"H4","reclat":57.78333,"reclong":55.26667,"year":"1887-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.05,52.28333]},"id":17988,"mass":1400.0,"name":"Oesede","nametype":"Valid","recclass":"H5","reclat":52.28333,"reclong":8.05,"year":"1927-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[23,58.5]},"id":17989,"mass":6000.0,"name":"Oesel","nametype":"Valid","recclass":"L6","reclat":58.5,"reclong":23.0,"year":"1855-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[22.03333,47.88333]},"id":17990,"mass":3750.0,"name":"Ofeh\u00e9rt\u00f3","nametype":"Valid","recclass":"L6","reclat":47.88333,"reclong":22.03333,"year":"1900-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[130.2,33.28333]},"id":17994,"mass":14360.0,"name":"Ogi","nametype":"Valid","recclass":"H6","reclat":33.28333,"reclong":130.2,"year":"1741-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[23.58333,46.06667]},"id":17995,"mass":16250.0,"name":"Ohaba","nametype":"Valid","recclass":"H5","reclat":46.06667,"reclong":23.58333,"year":"1857-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.5,6.75]},"id":17996,"mass":7700.0,"name":"Ohuma","nametype":"Valid","recclass":"L5","reclat":6.75,"reclong":8.5,"year":"1963-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-5.4,38.18333]},"id":17997,"mass":5850.0,"name":"Ojuelos Altos","nametype":"Valid","recclass":"L6","reclat":38.18333,"reclong":-5.4,"year":"1926-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[139.21667,36.18333]},"id":17998,"mass":194.0,"name":"Okabe","nametype":"Valid","recclass":"H5","reclat":36.18333,"reclong":139.21667,"year":"1958-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[135.2,35.08333]},"id":18000,"mass":4742.0,"name":"Okano","nametype":"Valid","recclass":"Iron, IIAB","reclat":35.08333,"reclong":135.2,"year":"1904-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[25.5,50.83333]},"id":18002,"mass":12000.0,"name":"Okniny","nametype":"Valid","recclass":"LL6","reclat":50.83333,"reclong":25.5,"year":"1834-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8.16667,52.95]},"id":18009,"mass":16570.0,"name":"Oldenburg (1930)","nametype":"Valid","recclass":"L6","reclat":52.95,"reclong":8.16667,"year":"1930-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.03333,39]},"id":18012,"mass":null,"name":"Oliva-Gandia","nametype":"Valid","recclass":"Stone-uncl","reclat":39.0,"reclong":-0.03333,"year":"1520-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-7.06667,38.71667]},"id":18013,"mass":150000.0,"name":"Olivenza","nametype":"Valid","recclass":"LL5","reclat":38.71667,"reclong":-7.06667,"year":"1924-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-2.1,39.56667]},"id":18015,"mass":40000.0,"name":"Olmedilla de Alarc\u00f3n","nametype":"Valid","recclass":"H5","reclat":39.56667,"reclong":-2.1,"year":"1929-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[161.80833,64.02]},"id":18019,"mass":250000.0,"name":"Omolon","nametype":"Valid","recclass":"Pallasite, PMG","reclat":64.02,"reclong":161.80833,"year":"1981-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[1.38333,43.88333]},"id":18026,"mass":14000.0,"name":"Orgueil","nametype":"Valid","recclass":"CI1","reclat":43.88333,"reclong":1.38333,"year":"1864-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":30.0,":@computed_region_nnqa_25f4":1078.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-81.36222,28.5475]},"id":34489,"mass":180.0,"name":"Orlando","nametype":"Valid","recclass":"Eucrite","reclat":28.5475,"reclong":-81.36222,"year":"2004-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[6.15,47.11667]},"id":18030,"mass":6000.0,"name":"Ornans","nametype":"Valid","recclass":"CO3.4","reclat":47.11667,"reclong":6.15,"year":"1868-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[8,48.5]},"id":18033,"mass":4500.0,"name":"Ortenau","nametype":"Valid","recclass":"Stone-uncl","reclat":48.5,"reclong":8.0,"year":"1671-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[12.93333,42.13333]},"id":18034,"mass":3400.0,"name":"Orvinio","nametype":"Valid","recclass":"H6","reclat":42.13333,"reclong":12.93333,"year":"1872-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[9.4,58.88333]},"id":18042,"mass":246.0,"name":"Oter\u00f8y","nametype":"Valid","recclass":"L6","reclat":58.88333,"reclong":9.4,"year":"1928-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[140.35,38.4]},"id":18045,"mass":6510.0,"name":"Otomi","nametype":"Valid","recclass":"H","reclat":38.4,"reclong":140.35,"year":"1867-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":17.0,":@computed_region_nnqa_25f4":1947.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-95.21667,38.6]},"id":18046,"mass":840.0,"name":"Ottawa","nametype":"Valid","recclass":"LL6","reclat":38.6,"reclong":-95.21667,"year":"1896-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.08,12.9]},"id":56729,"mass":4440.0,"name":"Ouadangou","nametype":"Valid","recclass":"L5","reclat":12.9,"reclong":0.08,"year":"2003-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-6.57717,30.18]},"id":18050,"mass":1215.5,"name":"Oued el Hadjar","nametype":"Valid","recclass":"LL6","reclat":30.18,"reclong":-6.57717,"year":"1986-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-13.1,24.3]},"id":31282,"mass":17000.0,"name":"Oum Dreyga","nametype":"Valid","recclass":"H3-5","reclat":24.3,"reclong":-13.1,"year":"2003-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-8.28,37.60833]},"id":18052,"mass":20000.0,"name":"Ourique","nametype":"Valid","recclass":"H4","reclat":37.60833,"reclong":-8.28,"year":"1998-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16,-18]},"id":18055,"mass":121.5,"name":"Ovambo","nametype":"Valid","recclass":"L6","reclat":-18.0,"reclong":16.0,"year":"1900-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-5.86667,43.4]},"id":18058,"mass":205.0,"name":"Oviedo","nametype":"Valid","recclass":"H5","reclat":43.4,"reclong":-5.86667,"year":"1856-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[28.83333,51.33333]},"id":18062,"mass":null,"name":"Owrucz","nametype":"Valid","recclass":"OC","reclat":51.33333,"reclong":28.83333,"year":"1775-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-99.3,21.05]},"id":18068,"mass":3400.0,"name":"Pacula","nametype":"Valid","recclass":"L6","reclat":21.05,"reclong":-99.3,"year":"1881-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[25,55.66667]},"id":18069,"mass":3858.0,"name":"Padvarninkai","nametype":"Valid","recclass":"Eucrite-mmict","reclat":55.66667,"reclong":25.0,"year":"1929-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[120.45583,17.74333]},"id":18072,"mass":515.0,"name":"Paitan","nametype":"Valid","recclass":"H6","reclat":17.74333,"reclong":120.45583,"year":"1910-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":32.0,":@computed_region_nnqa_25f4":503.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-89.71667,32.31667]},"id":18073,"mass":null,"name":"Palahatchie","nametype":"Valid","recclass":"OC","reclat":32.31667,"reclong":-89.71667,"year":"1910-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-65.1,-23.11667]},"id":18074,"mass":1430.0,"name":"Palca de Aparzo","nametype":"Valid","recclass":"L5","reclat":-23.11667,"reclong":-65.1,"year":"1988-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[118.61667,43.48333]},"id":18077,"mass":18000.0,"name":"Palinshih","nametype":"Valid","recclass":"Iron","reclat":43.48333,"reclong":118.61667,"year":"1914-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":18.0,":@computed_region_nnqa_25f4":2122.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-91.5,39.8]},"id":18079,"mass":135.0,"name":"Palmyra","nametype":"Valid","recclass":"L3","reclat":39.8,"reclong":-91.5,"year":"1926-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":4.0,":@computed_region_nnqa_25f4":1657.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-157.78333,21.3]},"id":18082,"mass":682.0,"name":"Palolo Valley","nametype":"Valid","recclass":"H5","reclat":21.3,"reclong":-157.78333,"year":"1949-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Found","geolocation":null,"id":32591,"mass":69.5,"name":"Dominion Range 03239","nametype":"Valid","recclass":"L6","reclat":null,"reclong":null,"year":"2002-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[120.7,15.08333]},"id":18093,"mass":10500.0,"name":"Pampanga","nametype":"Valid","recclass":"L5","reclat":15.08333,"reclong":120.7,"year":"1859-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[124.28333,8.06667]},"id":18098,"mass":2130.0,"name":"Pantar","nametype":"Valid","recclass":"H5","reclat":8.06667,"reclong":124.28333,"year":"1938-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":15.0,":@computed_region_nnqa_25f4":1023.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-90.5,36.06667]},"id":18101,"mass":408000.0,"name":"Paragould","nametype":"Valid","recclass":"LL5","reclat":36.06667,"reclong":-90.5,"year":"1930-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-40.7,-6.23333]},"id":18102,"mass":2000.0,"name":"Parambu","nametype":"Valid","recclass":"LL5","reclat":-6.23333,"reclong":-40.7,"year":"1967-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-51.66667,-19.13333]},"id":18103,"mass":100000.0,"name":"Paranaiba","nametype":"Valid","recclass":"L6","reclat":-19.13333,"reclong":-51.66667,"year":"1956-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":34.0,":@computed_region_nnqa_25f4":1863.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-87.67917,41.48472]},"id":18106,"mass":18000.0,"name":"Park Forest","nametype":"Valid","recclass":"L5","reclat":41.48472,"reclong":-87.67917,"year":"2003-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.35,9.23333]},"id":18108,"mass":77600.0,"name":"Parnallee","nametype":"Valid","recclass":"LL3.6","reclat":9.23333,"reclong":78.35,"year":"1857-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[85.4,26.2]},"id":18109,"mass":800.0,"name":"Parsa","nametype":"Valid","recclass":"EH3","reclat":26.2,"reclong":85.4,"year":"1942-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":11.0,":@computed_region_nnqa_25f4":1994.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-103.4,36.21667]},"id":18110,"mass":5100.0,"name":"Pasamonte","nametype":"Valid","recclass":"Eucrite-pmict","reclat":36.21667,"reclong":-103.4,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[82.05,20.93694]},"id":18112,"mass":4375.0,"name":"Patora","nametype":"Valid","recclass":"H6","reclat":20.93694,"reclong":82.05,"year":"1969-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-48.56667,-19.53333]},"id":18116,"mass":2121.0,"name":"Patrimonio","nametype":"Valid","recclass":"L6","reclat":-19.53333,"reclong":-48.56667,"year":"1950-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[14.96667,38.13333]},"id":18118,"mass":12.0,"name":"Patti","nametype":"Valid","recclass":"Iron","reclat":38.13333,"reclong":14.96667,"year":"1922-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[91.18333,23.15]},"id":18171,"mass":37350.0,"name":"Patwar","nametype":"Valid","recclass":"Mesosiderite-A1","reclat":23.15,"reclong":91.18333,"year":"1935-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[25.51667,43.46667]},"id":18173,"mass":2968.0,"name":"Pavel","nametype":"Valid","recclass":"H5","reclat":43.46667,"reclong":25.51667,"year":"1966-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[77.03333,52.3]},"id":18175,"mass":142.5,"name":"Pavlodar (stone)","nametype":"Valid","recclass":"H5","reclat":52.3,"reclong":77.03333,"year":"1938-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35.98333,48.53333]},"id":18176,"mass":40000.0,"name":"Pavlograd","nametype":"Valid","recclass":"L6","reclat":48.53333,"reclong":35.98333,"year":"1826-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[43,52.03333]},"id":18177,"mass":2000.0,"name":"Pavlovka","nametype":"Valid","recclass":"Howardite","reclat":52.03333,"reclong":43.0,"year":"1882-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-3.54217,11.33367]},"id":18179,"mass":null,"name":"P\u00ea","nametype":"Valid","recclass":"L6","reclat":11.33367,"reclong":-3.54217,"year":"1989-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-117.93333,56.13333]},"id":18180,"mass":45760.0,"name":"Peace River","nametype":"Valid","recclass":"L6","reclat":56.13333,"reclong":-117.93333,"year":"1963-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[9.25,51.66667]},"id":18181,"mass":117.8,"name":"Peckelsheim","nametype":"Valid","recclass":"Diogenite-pm","reclat":51.66667,"reclong":9.25,"year":"1953-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":47.0,":@computed_region_nnqa_25f4":2185.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-73.91667,41.28333]},"id":18782,"mass":12570.0,"name":"Peekskill","nametype":"Valid","recclass":"H6","reclat":41.28333,"reclong":-73.91667,"year":"1992-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":23.0,":@computed_region_nnqa_25f4":3062.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-103.11667,30.125]},"id":18786,"mass":70000.0,"name":"Pe\u00f1a Blanca Spring","nametype":"Valid","recclass":"Aubrite","reclat":30.125,"reclong":-103.11667,"year":"1946-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35.5,-10.66667]},"id":18792,"mass":165.0,"name":"Peramiho","nametype":"Valid","recclass":"Eucrite-mmict","reclat":-10.66667,"reclong":35.5,"year":"1899-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[91,23.325]},"id":18793,"mass":23474.0,"name":"Perpeti","nametype":"Valid","recclass":"L6","reclat":23.325,"reclong":91.0,"year":"1935-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-3.43333,56.4]},"id":18797,"mass":2.0,"name":"Perth","nametype":"Valid","recclass":"LL5","reclat":56.4,"reclong":-3.43333,"year":"1830-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[39.43333,56.63333]},"id":18798,"mass":66000.0,"name":"Pervomaisky","nametype":"Valid","recclass":"L6","reclat":56.63333,"reclong":39.43333,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[66.08333,55.5]},"id":18799,"mass":3393.0,"name":"Pesyanoe","nametype":"Valid","recclass":"Aubrite","reclat":55.5,"reclong":66.08333,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.42,14.052]},"id":18800,"mass":189.0,"name":"P\u00e9t\u00e8lkol\u00e9","nametype":"Valid","recclass":"H5","reclat":14.052,"reclong":0.42,"year":"1995-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":39.0,":@computed_region_nnqa_25f4":2017.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-86.63333,35.3]},"id":18801,"mass":1800.0,"name":"Petersburg","nametype":"Valid","recclass":"Eucrite-pmict","reclat":35.3,"reclong":-86.63333,"year":"1855-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-7.33333,53.53333]},"id":18804,"mass":null,"name":"Pettiswood","nametype":"Valid","recclass":"Stone-uncl","reclat":53.53333,"reclong":-7.33333,"year":"1779-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":17.0,":@computed_region_nnqa_25f4":1255.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-99.25,40]},"id":18808,"mass":57900.0,"name":"Phillips County (stone)","nametype":"Valid","recclass":"L6","reclat":40.0,"reclong":-99.25,"year":"1901-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[108.58333,11.25]},"id":18809,"mass":500.0,"name":"Phu Hong","nametype":"Valid","recclass":"H4","reclat":11.25,"reclong":108.58333,"year":"1887-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[105.48333,12]},"id":18811,"mass":7800.0,"name":"Phum Sambo","nametype":"Valid","recclass":"H4","reclat":12.0,"reclong":105.48333,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[108.1,15.71667]},"id":18812,"mass":11000.0,"name":"Phuoc-Binh","nametype":"Valid","recclass":"L5","reclat":15.71667,"reclong":108.1,"year":"1941-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.50222,44.24417]},"id":18813,"mass":13.1,"name":"Piancaldoli","nametype":"Valid","recclass":"LL3.4","reclat":44.24417,"reclong":11.50222,"year":"1968-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-6.23333,41.36667]},"id":18816,"mass":null,"name":"Picote","nametype":"Valid","recclass":"Stone-uncl","reclat":41.36667,"reclong":-6.23333,"year":"1843-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[25.73333,58.66667]},"id":18822,"mass":23250.0,"name":"Pillistfer","nametype":"Valid","recclass":"EL6","reclat":58.66667,"reclong":25.73333,"year":"1863-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[73.94167,26.03472]},"id":18831,"mass":42000.0,"name":"Piplia Kalan","nametype":"Valid","recclass":"Eucrite-mmict","reclat":26.03472,"reclong":73.94167,"year":"1996-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[18.71667,-32.86667]},"id":18832,"mass":37.0,"name":"Piquetberg","nametype":"Valid","recclass":"H","reclat":-32.86667,"reclong":18.71667,"year":"1881-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[88.45,25.8]},"id":18834,"mass":842.0,"name":"Pirgunje","nametype":"Valid","recclass":"L6","reclat":25.8,"reclong":88.45,"year":"1882-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76,29.58333]},"id":18835,"mass":1161.0,"name":"Pirthalla","nametype":"Valid","recclass":"H6","reclat":29.58333,"reclong":76.0,"year":"1884-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":31.0,":@computed_region_nnqa_25f4":207.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-83.51667,31.95]},"id":18837,"mass":3760.0,"name":"Pitts","nametype":"Valid","recclass":"Iron, IAB-ung","reclat":31.95,"reclong":-83.51667,"year":"1921-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":23.0,":@computed_region_nnqa_25f4":2018.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-96.11667,30.7]},"id":18846,"mass":2085.0,"name":"Plantersville","nametype":"Valid","recclass":"H6","reclat":30.7,"reclong":-96.11667,"year":"1930-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[26.70972,45.275]},"id":51706,"mass":6913.0,"name":"Ple\u015fcoi","nametype":"Valid","recclass":"L5-6","reclat":45.275,"reclong":26.70972,"year":"2008-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[14.11667,50.53333]},"id":18849,"mass":39.0,"name":"Ploschkovitz","nametype":"Valid","recclass":"L5","reclat":50.53333,"reclong":14.11667,"year":"1723-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[104.91667,11.58333]},"id":18851,"mass":96.0,"name":"Pnompehn","nametype":"Valid","recclass":"L6","reclat":11.58333,"reclong":104.91667,"year":"1868-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Found","geolocation":null,"id":32592,"mass":290.9,"name":"Dominion Range 03240","nametype":"Valid","recclass":"LL5","reclat":null,"reclong":null,"year":"2002-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[12.13333,50.93333]},"id":18853,"mass":3000.0,"name":"Pohlitz","nametype":"Valid","recclass":"L5","reclat":50.93333,"reclong":12.13333,"year":"1819-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[82.66667,26.71667]},"id":18858,"mass":350.0,"name":"Pokhra","nametype":"Valid","recclass":"H5","reclat":26.71667,"reclong":82.66667,"year":"1866-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[14.015,66.34833]},"id":18860,"mass":253.6,"name":"Pollen","nametype":"Valid","recclass":"CM2","reclat":66.34833,"reclong":14.015,"year":"1942-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-4.31944,53.03639]},"id":18865,"mass":157.0,"name":"Pontlyfni","nametype":"Valid","recclass":"Winonaite","reclat":53.03639,"reclong":-4.31944,"year":"1931-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":11.0,":@computed_region_nnqa_25f4":1987.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-103.295,34.175]},"id":18874,"mass":71400.0,"name":"Portales Valley","nametype":"Valid","recclass":"H6","reclat":34.175,"reclong":-103.295,"year":"1998-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-8,38.5]},"id":18876,"mass":4500.0,"name":"Portugal","nametype":"Valid","recclass":"Stone-uncl","reclat":38.5,"reclong":-8.0,"year":"1796-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[118.5,31.41667]},"id":18879,"mass":665.0,"name":"Po-wang Chen","nametype":"Valid","recclass":"LL","reclat":31.41667,"reclong":118.5,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[13.94083,48.3025]},"id":18883,"mass":2125.0,"name":"Prambachkirchen","nametype":"Valid","recclass":"L6","reclat":48.3025,"reclong":13.94083,"year":"1932-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[14.03333,49.66667]},"id":18887,"mass":5555.0,"name":"Pribram","nametype":"Valid","recclass":"H5","reclat":49.66667,"reclong":14.03333,"year":"1959-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":38.0,":@computed_region_nnqa_25f4":2566.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-83.85,39.11667]},"id":18888,"mass":900.0,"name":"Pricetown","nametype":"Valid","recclass":"L6","reclat":39.11667,"reclong":-83.85,"year":"1893-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-3.51667,39.35]},"id":45984,"mass":500.0,"name":"Puerto L\u00e1pice","nametype":"Valid","recclass":"Eucrite-br","reclat":39.35,"reclong":-3.51667,"year":"2007-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[75.18333,23.36667]},"id":18899,"mass":560.0,"name":"Pulsora","nametype":"Valid","recclass":"H5","reclat":23.36667,"reclong":75.18333,"year":"1863-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[21.26667,52.76667]},"id":18901,"mass":250000.0,"name":"Pultusk","nametype":"Valid","recclass":"H5","reclat":52.76667,"reclong":21.26667,"year":"1868-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.95,13.33333]},"id":18902,"mass":100.0,"name":"Punganaru","nametype":"Valid","recclass":"Stone-uncl","reclat":13.33333,"reclong":78.95,"year":"1811-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-53.05,-29.03333]},"id":18905,"mass":300000.0,"name":"Putinga","nametype":"Valid","recclass":"L6","reclat":-29.03333,"reclong":-53.05,"year":"1937-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[121.5,32.08333]},"id":18907,"mass":1275.0,"name":"Qidong","nametype":"Valid","recclass":"L\/LL5","reclat":32.08333,"reclong":121.5,"year":"1982-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[106.46667,26.53333]},"id":18908,"mass":2600.0,"name":"Qingzhen","nametype":"Valid","recclass":"EH3","reclat":26.53333,"reclong":106.46667,"year":"1976-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[28.7,-30.11667]},"id":22357,"mass":7000.0,"name":"Queen's Mercy","nametype":"Valid","recclass":"H6","reclat":-30.11667,"reclong":28.7,"year":"1925-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[95.18333,17.76667]},"id":22358,"mass":6045.0,"name":"Quenggouk","nametype":"Valid","recclass":"H4","reclat":17.76667,"reclong":95.18333,"year":"1857-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.66667,39]},"id":22360,"mass":10750.0,"name":"Quesa","nametype":"Valid","recclass":"Iron, IAB-ung","reclat":39.0,"reclong":-0.66667,"year":"1898-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[126.13333,44.61667]},"id":22361,"mass":17450.0,"name":"Quija","nametype":"Valid","recclass":"H","reclat":44.61667,"reclong":126.13333,"year":"1990-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.25,46.6]},"id":22363,"mass":65.0,"name":"Quincay","nametype":"Valid","recclass":"L6","reclat":46.6,"reclong":0.25,"year":"1851-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-65.45,-26.66667]},"id":22368,"mass":5000.0,"name":"Raco","nametype":"Valid","recclass":"H5","reclat":-26.66667,"reclong":-65.45,"year":"1957-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.465,27.72528]},"id":22371,"mass":10200.0,"name":"Raghunathpura","nametype":"Valid","recclass":"Iron, IIAB","reclat":27.72528,"reclong":76.465,"year":"1986-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[70.2,28.225]},"id":31302,"mass":67225.0,"name":"Rahimyar Khan","nametype":"Valid","recclass":"L5","reclat":28.225,"reclong":70.2,"year":"1983-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[37.03333,52.98333]},"id":22376,"mass":9000.0,"name":"Rakovka","nametype":"Valid","recclass":"L6","reclat":52.98333,"reclong":37.03333,"year":"1878-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[82.9,26.45]},"id":22384,"mass":3766.0,"name":"Ramnagar","nametype":"Valid","recclass":"L6","reclat":26.45,"reclong":82.9,"year":"1940-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[87.76667,24.16667]},"id":22385,"mass":100.0,"name":"Rampurhat","nametype":"Valid","recclass":"LL","reclat":24.16667,"reclong":87.76667,"year":"1916-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[6.93333,51.88333]},"id":22386,"mass":4682.0,"name":"Ramsdorf","nametype":"Valid","recclass":"L6","reclat":51.88333,"reclong":6.93333,"year":"1958-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[87.08333,23.98333]},"id":22387,"mass":290.4,"name":"Ranchapur","nametype":"Valid","recclass":"H4","reclat":23.98333,"reclong":87.08333,"year":"1917-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-100.81667,19.86667]},"id":22390,"mass":300.0,"name":"Rancho de la Presa","nametype":"Valid","recclass":"H5","reclat":19.86667,"reclong":-100.81667,"year":"1899-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[72.01667,25.38333]},"id":22392,"mass":3224.5,"name":"Rangala","nametype":"Valid","recclass":"L6","reclat":25.38333,"reclong":72.01667,"year":"1937-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[115.7,38.2]},"id":22394,"mass":4910.0,"name":"Raoyang","nametype":"Valid","recclass":"L6","reclat":38.2,"reclong":115.7,"year":"1919-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[50.15,26.66667]},"id":22395,"mass":6.1,"name":"Ras Tanura","nametype":"Valid","recclass":"H6","reclat":26.66667,"reclong":50.15,"year":"1961-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[26.53333,43.5]},"id":22396,"mass":24700.0,"name":"Rasgrad","nametype":"Valid","recclass":"Stone-uncl","reclat":43.5,"reclong":26.53333,"year":"1740-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[17.98333,52.2]},"id":22398,"mass":910.0,"name":"Ratyn","nametype":"Valid","recclass":"Stone-uncl","reclat":52.2,"reclong":17.98333,"year":"1880-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":8.0,":@computed_region_nnqa_25f4":1391.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-119.75812,38.13742]},"id":53502,"mass":18.41,"name":"Red Canyon Lake","nametype":"Valid","recclass":"H5","reclat":38.13742,"reclong":-119.75812,"year":"2007-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-5.33333,42.475]},"id":22584,"mass":17300.0,"name":"Reliegos","nametype":"Valid","recclass":"L5","reclat":42.475,"reclong":-5.33333,"year":"1947-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[111.36667,-6.73333]},"id":22585,"mass":10000.0,"name":"Rembang","nametype":"Valid","recclass":"Iron, IVA","reclat":-6.73333,"reclong":111.36667,"year":"1919-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.28333,44.76667]},"id":22586,"mass":1000.0,"name":"Renazzo","nametype":"Valid","recclass":"CR2","reclat":44.76667,"reclong":11.28333,"year":"1824-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-65.28333,-32.75]},"id":22587,"mass":300.0,"name":"Renca","nametype":"Valid","recclass":"L5","reclat":-32.75,"reclong":-65.28333,"year":"1925-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[116.13333,38.66667]},"id":22589,"mass":355.0,"name":"Renqiu","nametype":"Valid","recclass":"L6","reclat":38.66667,"reclong":116.13333,"year":"1916-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[45.66667,48.6]},"id":22590,"mass":7000.0,"name":"Repeev Khutor","nametype":"Valid","recclass":"Iron, IIF","reclat":48.6,"reclong":45.66667,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-118.95,51.33333]},"id":22592,"mass":1.0,"name":"Revelstoke","nametype":"Valid","recclass":"CI1","reclat":51.33333,"reclong":-118.95,"year":"1965-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[76.66667,28.2]},"id":22593,"mass":3332.0,"name":"Rewari","nametype":"Valid","recclass":"L6","reclat":28.2,"reclong":76.66667,"year":"1929-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":37.0,":@computed_region_nnqa_25f4":2388.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-83.03333,35.03333]},"id":22597,"mass":668.0,"name":"Rich Mountain","nametype":"Valid","recclass":"L6","reclat":35.03333,"reclong":-83.03333,"year":"1903-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-66.15,-44.11667]},"id":24140,"mass":20000.0,"name":"Uzcudun","nametype":"Valid","recclass":"L","reclat":-44.11667,"reclong":-66.15,"year":"1948-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":3.0,":@computed_region_nnqa_25f4":569.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-102.31667,46.88333]},"id":22599,"mass":90000.0,"name":"Richardton","nametype":"Valid","recclass":"H5","reclat":46.88333,"reclong":-102.31667,"year":"1918-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":23.0,":@computed_region_nnqa_25f4":2885.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-99.03333,31.25]},"id":22602,"mass":1900.0,"name":"Richland Springs","nametype":"Valid","recclass":"OC","reclat":31.25,"reclong":-99.03333,"year":"1980-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":40.0,":@computed_region_nnqa_25f4":2764.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-77.5,37.46667]},"id":22603,"mass":1800.0,"name":"Richmond","nametype":"Valid","recclass":"LL5","reclat":37.46667,"reclong":-77.5,"year":"1828-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-49.8,-26.1]},"id":22611,"mass":1310.0,"name":"Rio Negro","nametype":"Valid","recclass":"L4","reclat":-26.1,"reclong":-49.8,"year":"1934-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[9.51667,45.48333]},"id":22614,"mass":103.3,"name":"Rivolta de Bassi","nametype":"Valid","recclass":"Stone-uncl","reclat":45.48333,"reclong":9.51667,"year":"1491-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":35.0,":@computed_region_nnqa_25f4":150.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-86.28333,41.08333]},"id":22637,"mass":340.0,"name":"Rochester","nametype":"Valid","recclass":"H6","reclat":41.08333,"reclong":-86.28333,"year":"1876-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[150.51667,-23.38333]},"id":22640,"mass":1641.0,"name":"Rockhampton","nametype":"Valid","recclass":"Stone-uncl","reclat":-23.38333,"reclong":150.51667,"year":"1895-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.55,42.3]},"id":22641,"mass":400.0,"name":"Roda","nametype":"Valid","recclass":"Diogenite","reclat":42.3,"reclong":0.55,"year":"1871-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.8,50.35]},"id":22642,"mass":2900.0,"name":"Rodach","nametype":"Valid","recclass":"Stone-uncl","reclat":50.35,"reclong":10.8,"year":"1775-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":50.0,":@computed_region_nnqa_25f4":361.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-83.95,44.51667]},"id":22766,"mass":10600.0,"name":"Rose City","nametype":"Valid","recclass":"H5","reclat":44.51667,"reclong":-83.95,"year":"1921-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-2.51667,52.76667]},"id":22773,"mass":3500.0,"name":"Rowton","nametype":"Valid","recclass":"Iron, IIIAB","reclat":52.76667,"reclong":-2.51667,"year":"1876-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[29.83333,-1.45]},"id":22780,"mass":465.5,"name":"Ruhobobo","nametype":"Valid","recclass":"L6","reclat":-1.45,"reclong":29.83333,"year":"1976-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[36.53333,0.26667]},"id":22782,"mass":67.0,"name":"Rumuruti","nametype":"Valid","recclass":"R3.8-6","reclat":0.26667,"reclong":36.53333,"year":"1934-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[38.76667,-10.26667]},"id":22783,"mass":6000.0,"name":"Rupota","nametype":"Valid","recclass":"L4-6","reclat":-10.26667,"reclong":38.76667,"year":"1949-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[34.5,51.13333]},"id":22791,"mass":13000.0,"name":"Ryechki","nametype":"Valid","recclass":"L5","reclat":51.13333,"reclong":34.5,"year":"1914-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[82.08333,27.43333]},"id":22792,"mass":1250.0,"name":"Sabetmahet","nametype":"Valid","recclass":"H5","reclat":27.43333,"reclong":82.08333,"year":"1855-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[91.66667,23.08333]},"id":22793,"mass":478.0,"name":"Sabrum","nametype":"Valid","recclass":"LL6","reclat":23.08333,"reclong":91.66667,"year":"1999-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[14.88333,51.53333]},"id":22796,"mass":null,"name":"Sagan","nametype":"Valid","recclass":"Stone-uncl","reclat":51.53333,"reclong":14.88333,"year":"1636-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[1.38333,43.73333]},"id":23101,"mass":14000.0,"name":"Saint-Sauveur","nametype":"Valid","recclass":"EH5","reclat":43.73333,"reclong":1.38333,"year":"1914-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.23333,45.3]},"id":23102,"mass":271000.0,"name":"Saint-S\u00e9verin","nametype":"Valid","recclass":"LL6","reclat":45.3,"reclong":0.23333,"year":"1966-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[136.3,35.66667]},"id":23103,"mass":4180.0,"name":"Sakauchi","nametype":"Valid","recclass":"Iron","reclat":35.66667,"reclong":136.3,"year":"1913-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":12.0,":@computed_region_nnqa_25f4":2409.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-122.96944,44.97917]},"id":23107,"mass":61.4,"name":"Salem","nametype":"Valid","recclass":"L6","reclat":44.97917,"reclong":-122.96944,"year":"1981-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[4.63333,46.05]},"id":23111,"mass":9000.0,"name":"Salles","nametype":"Valid","recclass":"L5","reclat":46.05,"reclong":4.63333,"year":"1798-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.05,52.75]},"id":23114,"mass":43.0,"name":"Salzwedel","nametype":"Valid","recclass":"LL5","reclat":52.75,"reclong":11.05,"year":"1985-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[74.86667,25.66667]},"id":23115,"mass":2462.0,"name":"Samelia","nametype":"Valid","recclass":"Iron, IIIAB","reclat":25.66667,"reclong":74.86667,"year":"1921-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":8.0,":@computed_region_nnqa_25f4":1174.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-117.6625,33.48472]},"id":23128,"mass":56.0,"name":"San Juan Capistrano","nametype":"Valid","recclass":"H6","reclat":33.48472,"reclong":-117.6625,"year":"1973-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[13,43.66667]},"id":31315,"mass":237.0,"name":"San Michele","nametype":"Valid","recclass":"L6","reclat":43.66667,"reclong":13.0,"year":"2002-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-71.4,-31.01667]},"id":23130,"mass":282.0,"name":"San Pedro de Quiles","nametype":"Valid","recclass":"L6","reclat":-31.01667,"reclong":-71.4,"year":"1956-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-100.65,19.76667]},"id":34063,"mass":460.0,"name":"San Pedro Jacuaro","nametype":"Valid","recclass":"LL6","reclat":19.76667,"reclong":-100.65,"year":"1968-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-51.86667,-29.2]},"id":23161,"mass":400.0,"name":"Santa Barbara","nametype":"Valid","recclass":"L4","reclat":-29.2,"reclong":-51.86667,"year":"1873-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-99.33333,24.16667]},"id":23164,"mass":60.0,"name":"Santa Cruz","nametype":"Valid","recclass":"CM2","reclat":24.16667,"reclong":-99.33333,"year":"1939-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-61.7,-33.9]},"id":23165,"mass":5500.0,"name":"Santa Isabel","nametype":"Valid","recclass":"L6","reclat":-33.9,"reclong":-61.7,"year":"1924-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-68.489444,-31.535556]},"id":50909,"mass":4000.0,"name":"Santa Lucia (2008)","nametype":"Valid","recclass":"L6","reclat":-31.535556,"reclong":-68.489444,"year":"2008-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-49.38056,-20.81]},"id":23171,"mass":927.0,"name":"S\u00e3o Jose do Rio Preto","nametype":"Valid","recclass":"H4","reclat":-20.81,"reclong":-49.38056,"year":"1962-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[46.55,52.55]},"id":23176,"mass":200000.0,"name":"Saratov","nametype":"Valid","recclass":"L4","reclat":52.55,"reclong":46.55,"year":"1918-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[137.78333,34.71667]},"id":23187,"mass":695.0,"name":"Sasagase","nametype":"Valid","recclass":"H","reclat":34.71667,"reclong":137.78333,"year":"1688-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.85,43.15]},"id":23188,"mass":4000.0,"name":"Sauguis","nametype":"Valid","recclass":"L6","reclat":43.15,"reclong":-0.85,"year":"1868-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[29.86667,47.21667]},"id":23190,"mass":2500.0,"name":"Savtschenskoje","nametype":"Valid","recclass":"LL4","reclat":47.21667,"reclong":29.86667,"year":"1894-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[139.4,35.86667]},"id":23192,"mass":430.0,"name":"Sayama","nametype":"Valid","recclass":"CM2","reclat":35.86667,"reclong":139.4,"year":"1986-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[17.56667,49.23333]},"id":23455,"mass":412.0,"name":"Sazovice","nametype":"Valid","recclass":"L5","reclat":49.23333,"reclong":17.56667,"year":"1934-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[15.05,53.35]},"id":23457,"mass":7000.0,"name":"Schellin","nametype":"Valid","recclass":"L","reclat":53.35,"reclong":15.05,"year":"1715-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":47.0,":@computed_region_nnqa_25f4":2142.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-73.95028,42.86083]},"id":23458,"mass":283.3,"name":"Schenectady","nametype":"Valid","recclass":"H5","reclat":42.86083,"reclong":-73.95028,"year":"1968-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.46667,48.11667]},"id":23460,"mass":8000.0,"name":"Sch\u00f6nenberg","nametype":"Valid","recclass":"L6","reclat":48.11667,"reclong":10.46667,"year":"1846-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":49.0,":@computed_region_nnqa_25f4":1727.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-69.2,44.36667]},"id":23472,"mass":5400.0,"name":"Searsmont","nametype":"Valid","recclass":"H5","reclat":44.36667,"reclong":-69.2,"year":"1871-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[27.13333,38.3]},"id":23473,"mass":240.0,"name":"Sedik\u00f6y","nametype":"Valid","recclass":"L6","reclat":38.3,"reclong":27.13333,"year":"1917-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[84.78333,26.75]},"id":23476,"mass":6930.0,"name":"Segowlie","nametype":"Valid","recclass":"LL6","reclat":26.75,"reclong":84.78333,"year":"1853-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[107.33333,-7.23333]},"id":23481,"mass":1590.0,"name":"Selakopi","nametype":"Valid","recclass":"H5","reclat":-7.23333,"reclong":107.33333,"year":"1939-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[4.98333,22.83333]},"id":23483,"mass":150.0,"name":"Seldebourak","nametype":"Valid","recclass":"H5","reclat":22.83333,"reclong":4.98333,"year":"1947-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[79,22.25]},"id":23487,"mass":691.0,"name":"Semarkona","nametype":"Valid","recclass":"LL3.00","reclat":22.25,"reclong":79.0,"year":"1940-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-0.05,41.71667]},"id":23495,"mass":4000.0,"name":"Sena","nametype":"Valid","recclass":"H4","reclat":41.71667,"reclong":-0.05,"year":"1773-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[140.51167,39.43833]},"id":23496,"mass":866.0,"name":"Senboku","nametype":"Valid","recclass":"H6","reclat":39.43833,"reclong":140.51167,"year":"1993-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[79.50083,21.68389]},"id":23500,"mass":20000.0,"name":"Seoni","nametype":"Valid","recclass":"H6","reclat":21.68389,"reclong":79.50083,"year":"1966-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[23.56667,41.05]},"id":23501,"mass":8500.0,"name":"Seres","nametype":"Valid","recclass":"H4","reclat":41.05,"reclong":23.56667,"year":"1818-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-36.76667,-8.38333]},"id":23502,"mass":1800.0,"name":"Serra de Mag\u00e9","nametype":"Valid","recclass":"Eucrite-cm","reclat":-8.38333,"reclong":-36.76667,"year":"1923-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-44.21667,-19.46667]},"id":23504,"mass":350.0,"name":"Sete Lagoas","nametype":"Valid","recclass":"H4","reclat":-19.46667,"reclong":-44.21667,"year":"1908-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-6,37.41667]},"id":23508,"mass":180.0,"name":"Sevilla","nametype":"Valid","recclass":"LL4","reclat":37.41667,"reclong":-6.0,"year":"1862-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[36.6,50.61667]},"id":23509,"mass":101000.0,"name":"Sevrukovo","nametype":"Valid","recclass":"L5","reclat":50.61667,"reclong":36.6,"year":"1874-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.71667,34.75]},"id":23512,"mass":7000.0,"name":"Sfax","nametype":"Valid","recclass":"L6","reclat":34.75,"reclong":10.71667,"year":"1989-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[87.3,23.1]},"id":23521,"mass":4000.0,"name":"Shalka","nametype":"Valid","recclass":"Diogenite","reclat":23.1,"reclong":87.3,"year":"1850-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":40.0,":@computed_region_nnqa_25f4":921.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-76.7,37.83333]},"id":23525,"mass":1265.0,"name":"Sharps","nametype":"Valid","recclass":"H3.4","reclat":37.83333,"reclong":-76.7,"year":"1921-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-80.16667,44.05]},"id":23529,"mass":18600.0,"name":"Shelburne","nametype":"Valid","recclass":"L5","reclat":44.05,"reclong":-80.16667,"year":"1904-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[84.83333,24.55]},"id":23530,"mass":5000.0,"name":"Shergotty","nametype":"Valid","recclass":"Martian (shergottite)","reclat":24.55,"reclong":84.83333,"year":"1865-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[120.06667,33.65]},"id":23531,"mass":605.0,"name":"Sheyang","nametype":"Valid","recclass":"L6","reclat":33.65,"reclong":120.06667,"year":"1976-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[87.5775,25.85]},"id":23534,"mass":3679.7,"name":"Shikarpur","nametype":"Valid","recclass":"L6","reclat":25.85,"reclong":87.5775,"year":"1921-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[125.66667,43.5]},"id":23582,"mass":3900.0,"name":"Shuangyang","nametype":"Valid","recclass":"H5","reclat":43.5,"reclong":125.66667,"year":"1971-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[74.83333,33.71667]},"id":23583,"mass":5000.0,"name":"Shupiyan","nametype":"Valid","recclass":"H6","reclat":33.71667,"reclong":74.83333,"year":"1912-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[90.16667,24.33333]},"id":23584,"mass":3200.0,"name":"Shytal","nametype":"Valid","recclass":"L6","reclat":24.33333,"reclong":90.16667,"year":"1863-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[11.6,43.11667]},"id":23586,"mass":3700.0,"name":"Siena","nametype":"Valid","recclass":"LL5","reclat":43.11667,"reclong":11.6,"year":"1794-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[134.65333,46.16]},"id":23593,"mass":23000000.0,"name":"Sikhote-Alin","nametype":"Valid","recclass":"Iron, IIAB","reclat":46.16,"reclong":134.65333,"year":"1947-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-101.38333,20.93333]},"id":23594,"mass":1710.0,"name":"Silao","nametype":"Valid","recclass":"H5","reclat":20.93333,"reclong":-101.38333,"year":"1995-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[27.26667,44.11667]},"id":55584,"mass":0.15,"name":"Silistra","nametype":"Valid","recclass":"Achondrite-ung","reclat":44.11667,"reclong":27.26667,"year":"1917-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[7.53333,49.98333]},"id":23603,"mass":1222.0,"name":"Simmern","nametype":"Valid","recclass":"H5","reclat":49.98333,"reclong":7.53333,"year":"1920-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[32.48333,30.9]},"id":23606,"mass":1455.0,"name":"Sinai","nametype":"Valid","recclass":"L6","reclat":30.9,"reclong":32.48333,"year":"1916-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[69.55,26.21667]},"id":23611,"mass":8400.0,"name":"Sindhri","nametype":"Valid","recclass":"H5","reclat":26.21667,"reclong":69.55,"year":"1901-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[9.2,39.3]},"id":23613,"mass":2000.0,"name":"Sinnai","nametype":"Valid","recclass":"H6","reclat":39.3,"reclong":9.2,"year":"1956-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":19.0,":@computed_region_nnqa_25f4":2351.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-103.66667,42.58333]},"id":23614,"mass":4100.0,"name":"Sioux County","nametype":"Valid","recclass":"Eucrite-mmict","reclat":42.58333,"reclong":-103.66667,"year":"1933-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[82.58333,20.91667]},"id":23616,"mass":1600.0,"name":"Sitathali","nametype":"Valid","recclass":"H5","reclat":20.91667,"reclong":82.58333,"year":"1875-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[36.13583,39.82467]},"id":23617,"mass":40000.0,"name":"Sivas","nametype":"Valid","recclass":"H6","reclat":39.82467,"reclong":36.13583,"year":"1989-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[119.86667,32.43333]},"id":23619,"mass":630.0,"name":"Sixiangkou","nametype":"Valid","recclass":"L5","reclat":32.43333,"reclong":119.86667,"year":"1989-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.86667,59.73333]},"id":23621,"mass":850.0,"name":"Ski","nametype":"Valid","recclass":"L6","reclat":59.73333,"reclong":10.86667,"year":"1848-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[15.6,45.68333]},"id":23626,"mass":1708.0,"name":"Slavetic","nametype":"Valid","recclass":"H5","reclat":45.68333,"reclong":15.6,"year":"1868-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35,55]},"id":23645,"mass":2750.0,"name":"Slobodka","nametype":"Valid","recclass":"L4","reclat":55.0,"reclong":35.0,"year":"1818-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[84.06667,27.13333]},"id":23660,"mass":72.9,"name":"Soheria","nametype":"Valid","recclass":"OC","reclat":27.13333,"reclong":84.06667,"year":"1960-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[21.86667,43.66667]},"id":23661,"mass":80000.0,"name":"Soko-Banja","nametype":"Valid","recclass":"LL4","reclat":43.66667,"reclong":21.86667,"year":"1877-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[1.73333,47.36667]},"id":23663,"mass":54.0,"name":"Sologne","nametype":"Valid","recclass":"H5","reclat":47.36667,"reclong":1.73333,"year":"1860-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[22.005,54.00883]},"id":53829,"mass":1066.0,"name":"So\u0142tmany","nametype":"Valid","recclass":"L6","reclat":54.00883,"reclong":22.005,"year":"2011-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[135.33333,35.16667]},"id":23667,"mass":17100.0,"name":"Sone","nametype":"Valid","recclass":"H5","reclat":35.16667,"reclong":135.33333,"year":"1866-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[125,45.25]},"id":23668,"mass":36900.0,"name":"Songyuan","nametype":"Valid","recclass":"L6","reclat":45.25,"reclong":125.0,"year":"1993-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[23.5,44.41667]},"id":23670,"mass":958.0,"name":"Sopot","nametype":"Valid","recclass":"OC","reclat":44.41667,"reclong":23.5,"year":"1927-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[33.63333,1.7]},"id":23671,"mass":2050.0,"name":"Soroti","nametype":"Valid","recclass":"Iron, ungrouped","reclat":1.7,"reclong":33.63333,"year":"1945-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[0.05,44.75]},"id":23081,"mass":360.0,"name":"St. Caprais-de-Quinsac","nametype":"Valid","recclass":"L6","reclat":44.75,"reclong":0.05,"year":"1883-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-1.5,46.95]},"id":23082,"mass":5500.0,"name":"St. Christophe-la-Chartreuse","nametype":"Valid","recclass":"L6","reclat":46.95,"reclong":-1.5,"year":"1841-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[3.75,51.05]},"id":23083,"mass":700.0,"name":"St. Denis Westrem","nametype":"Valid","recclass":"L6","reclat":51.05,"reclong":3.75,"year":"1855-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-1.15,48.01667]},"id":23087,"mass":4000.0,"name":"St. Germain-du-Pinel","nametype":"Valid","recclass":"H6","reclat":48.01667,"reclong":-1.15,"year":"1890-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":18.0,":@computed_region_nnqa_25f4":2223.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-90.23333,38.7]},"id":23089,"mass":1000.0,"name":"St. Louis","nametype":"Valid","recclass":"H4","reclat":38.7,"reclong":-90.23333,"year":"1950-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[27.41667,-32.01667]},"id":23090,"mass":13780.0,"name":"St. Mark's","nametype":"Valid","recclass":"EH5","reclat":-32.01667,"reclong":27.41667,"year":"1903-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":45.0,":@computed_region_nnqa_25f4":424.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-76.38333,38.16667]},"id":23091,"mass":24.3,"name":"St. Mary's County","nametype":"Valid","recclass":"LL3.3","reclat":38.16667,"reclong":-76.38333,"year":"1919-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[3.93333,48.45]},"id":23092,"mass":8300.0,"name":"St. Mesmin","nametype":"Valid","recclass":"LL6","reclat":48.45,"reclong":3.93333,"year":"1866-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[27.2,61.65]},"id":23093,"mass":17000.0,"name":"St. Michel","nametype":"Valid","recclass":"L6","reclat":61.65,"reclong":27.2,"year":"1910-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[2.95,43.43333]},"id":23097,"mass":134.3,"name":"St.-Chinian","nametype":"Valid","recclass":"L6","reclat":43.43333,"reclong":2.95,"year":"1959-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[14.95,59.93333]},"id":23712,"mass":34000.0,"name":"St\u00e4lldalen","nametype":"Valid","recclass":"H5","reclat":59.93333,"reclong":14.95,"year":"1876-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[15.56667,49.28333]},"id":23713,"mass":52000.0,"name":"Stannern","nametype":"Valid","recclass":"Eucrite-mmict","reclat":49.28333,"reclong":15.56667,"year":"1808-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[41.98333,45.05]},"id":23717,"mass":1500.0,"name":"Stavropol","nametype":"Valid","recclass":"L6","reclat":45.05,"reclong":41.98333,"year":"1857-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[3,50.76667]},"id":23099,"mass":4960.0,"name":"Ste. Marguerite","nametype":"Valid","recclass":"H4","reclat":50.76667,"reclong":3.0,"year":"1962-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[55.98333,53.66667]},"id":23724,"mass":325000.0,"name":"Sterlitamak","nametype":"Valid","recclass":"Iron, IIIAB","reclat":53.66667,"reclong":55.98333,"year":"1990-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[9.05,52.53333]},"id":23726,"mass":null,"name":"Stolzenau","nametype":"Valid","recclass":"Stone-uncl","reclat":52.53333,"reclong":9.05,"year":"1647-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":24.0,":@computed_region_nnqa_25f4":1040.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-73.13333,41.2]},"id":23728,"mass":50.0,"name":"Stratford","nametype":"Valid","recclass":"L6","reclat":41.2,"reclong":-73.13333,"year":"1974-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-3.25,56.58333]},"id":23729,"mass":13400.0,"name":"Strathmore","nametype":"Valid","recclass":"L6","reclat":56.58333,"reclong":-3.25,"year":"1917-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-3.95,50.38333]},"id":23732,"mass":10400.0,"name":"Stretchleigh","nametype":"Valid","recclass":"Stone-uncl","reclat":50.38333,"reclong":-3.95,"year":"1623-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-72.97806,45.96861]},"id":23733,"mass":25400.0,"name":"St-Robert","nametype":"Valid","recclass":"H5","reclat":45.96861,"reclong":-72.97806,"year":"1994-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":15.0,":@computed_region_nnqa_25f4":955.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-90.66667,36.48333]},"id":23736,"mass":3500.0,"name":"Success","nametype":"Valid","recclass":"L6","reclat":36.48333,"reclong":-90.66667,"year":"1924-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[16.26333,50.53806]},"id":23737,"mass":815.3,"name":"Suchy Dul","nametype":"Valid","recclass":"L6","reclat":50.53806,"reclong":16.26333,"year":"1969-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[113.46667,31.61667]},"id":23738,"mass":260000.0,"name":"Suizhou","nametype":"Valid","recclass":"L6","reclat":31.61667,"reclong":113.46667,"year":"1986-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[78.03333,12.66667]},"id":48951,"mass":110000.0,"name":"Sulagiri","nametype":"Valid","recclass":"LL6","reclat":12.66667,"reclong":78.03333,"year":"2008-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[84.28333,25.93333]},"id":23741,"mass":1710.5,"name":"Sultanpur","nametype":"Valid","recclass":"L\/LL6","reclat":25.93333,"reclong":84.28333,"year":"1916-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[133.16667,44.86667]},"id":23745,"mass":637.0,"name":"Sungach","nametype":"Valid","recclass":"H5","reclat":44.86667,"reclong":133.16667,"year":"1935-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[84.21667,26.71667]},"id":23760,"mass":7235.0,"name":"Supuhee","nametype":"Valid","recclass":"H6","reclat":26.71667,"reclong":84.21667,"year":"1865-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":8.0,":@computed_region_nnqa_25f4":1187.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-120.90806,38.80389]},"id":55529,"mass":992.5,"name":"Sutter's Mill","nametype":"Valid","recclass":"C","reclat":38.80389,"reclong":-120.90806,"year":"2012-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":29.0,":@computed_region_nnqa_25f4":1637.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-86.2945,33.18836]},"id":23773,"mass":5560.0,"name":"Sylacauga","nametype":"Valid","recclass":"H4","reclat":33.18836,"reclong":-86.2945,"year":"1954-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[14.65,49.4]},"id":23776,"mass":7540.0,"name":"Tabor","nametype":"Valid","recclass":"H5","reclat":49.4,"reclong":14.65,"year":"1753-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[5.41667,36.18333]},"id":23778,"mass":9000.0,"name":"Tadjera","nametype":"Valid","recclass":"L5","reclat":36.18333,"reclong":5.41667,"year":"1867-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-134.20139,59.70444]},"id":23782,"mass":10000.0,"name":"Tagish Lake","nametype":"Valid","recclass":"C2-ung","reclat":59.70444,"reclong":-134.20139,"year":"2000-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[137.305,34.72]},"id":23784,"mass":1000.0,"name":"Tahara","nametype":"Valid","recclass":"H4\/5","reclat":34.72,"reclong":137.305,"year":"1991-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[134.9,35.38333]},"id":23789,"mass":720.0,"name":"Takenouchi","nametype":"Valid","recclass":"H5","reclat":35.38333,"reclong":134.9,"year":"1880-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":null,"id":23791,"mass":1421.0,"name":"Talampaya","nametype":"Valid","recclass":"Eucrite-cm","reclat":null,"reclong":null,"year":"1995-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[112.76667,-7.75]},"id":23795,"mass":10500.0,"name":"Tambakwatu","nametype":"Valid","recclass":"L6","reclat":-7.75,"reclong":112.76667,"year":"1975-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-7.015,31.16333]},"id":48691,"mass":100000.0,"name":"Tamdakht","nametype":"Valid","recclass":"H5","reclat":31.16333,"reclong":-7.015,"year":"2008-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[136.23333,35.43333]},"id":23801,"mass":905.0,"name":"Tan\u00e9","nametype":"Valid","recclass":"L5","reclat":35.43333,"reclong":136.23333,"year":"1918-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[122.9,45.4]},"id":23873,"mass":3850.0,"name":"Taonan","nametype":"Valid","recclass":"L5","reclat":45.4,"reclong":122.9,"year":"1965-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[10.41667,32.95]},"id":23884,"mass":12000.0,"name":"Tatahouine","nametype":"Valid","recclass":"Diogenite","reclat":32.95,"reclong":10.41667,"year":"1931-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[43.73333,19.38333]},"id":23885,"mass":2500.0,"name":"Tathlith","nametype":"Valid","recclass":"L6","reclat":19.38333,"reclong":43.73333,"year":"1967-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[44.45,35.13333]},"id":23887,"mass":6000.0,"name":"Tauk","nametype":"Valid","recclass":"L6","reclat":35.13333,"reclong":44.45,"year":"1929-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[23.5,46.71667]},"id":23888,"mass":21000.0,"name":"Tauti","nametype":"Valid","recclass":"L6","reclat":46.71667,"reclong":23.5,"year":"1937-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[142.95,-25.73333]},"id":23897,"mass":160000.0,"name":"Tenham","nametype":"Valid","recclass":"L6","reclat":-25.73333,"reclong":142.95,"year":"1879-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[26.95,58.03333]},"id":23898,"mass":28500.0,"name":"Tennasilm","nametype":"Valid","recclass":"L4","reclat":58.03333,"reclong":26.95,"year":"1872-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[70.6,33.4]},"id":23908,"mass":342.0,"name":"Thal","nametype":"Valid","recclass":"H6","reclat":33.4,"reclong":70.6,"year":"1950-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[37.15028,-1.00278]},"id":54493,"mass":14200.0,"name":"Thika","nametype":"Valid","recclass":"L6","reclat":-1.00278,"reclong":37.15028,"year":"2011-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[27.58333,-29.33333]},"id":23976,"mass":45300.0,"name":"Thuathe","nametype":"Valid","recclass":"H4\/5","reclat":-29.33333,"reclong":27.58333,"year":"2002-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[118.99,32.94667]},"id":23984,"mass":2232.0,"name":"Tianzhang","nametype":"Valid","recclass":"H5","reclat":32.94667,"reclong":118.99,"year":"1986-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[17.11667,49.6]},"id":23989,"mass":28000.0,"name":"Tieschitz","nametype":"Valid","recclass":"H\/L3.6","reclat":49.6,"reclong":17.11667,"year":"1878-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":34.0,":@computed_region_nnqa_25f4":1762.0,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-89.68333,38.2]},"id":23998,"mass":74800.0,"name":"Tilden","nametype":"Valid","recclass":"L6","reclat":38.2,"reclong":-89.68333,"year":"1927-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[1.53333,14.25]},"id":23999,"mass":3000.0,"name":"Tillaberi","nametype":"Valid","recclass":"L6","reclat":14.25,"reclong":1.53333,"year":"1970-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[35.2,54.5]},"id":24004,"mass":65500.0,"name":"Timochin","nametype":"Valid","recclass":"H5","reclat":54.5,"reclong":35.2,"year":"1807-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[79.41667,13.63333]},"id":24009,"mass":230.0,"name":"Tirupati","nametype":"Valid","recclass":"H6","reclat":13.63333,"reclong":79.41667,"year":"1934-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[-7.61123,29.48195]},"id":54823,"mass":7000.0,"name":"Tissint","nametype":"Valid","recclass":"Martian (shergottite)","reclat":29.48195,"reclong":-7.61123,"year":"2011-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[111.53333,-7.08333]},"id":24011,"mass":20000.0,"name":"Tjabe","nametype":"Valid","recclass":"H6","reclat":-7.08333,"reclong":111.53333,"year":"1869-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[106.58333,-6.66667]},"id":24012,"mass":16500.0,"name":"Tjerebon","nametype":"Valid","recclass":"L5","reclat":-6.66667,"reclong":106.58333,"year":"1922-01-01T00:00:00.000"},{":@computed_region_cbhk_fwbd":null,":@computed_region_nnqa_25f4":null,"fall":"Fell","geolocation":{"type":"Point","coordinates":[34.76667,47.85]},"id":24019,"mass":600.0,"name":"Tomakovka","nametype":"Valid","recclass":"LL6","reclat":47.85,"reclong":34.76667,"year":"1905-01-01T00:00:00.000"}]
\ No newline at end of file
diff --git a/your-code/shuttle.csv b/your-code/shuttle.csv
new file mode 100644
index 0000000..0def376
--- /dev/null
+++ b/your-code/shuttle.csv
@@ -0,0 +1,14500 @@
+time,rad_flow,fpv_close,fpv_open,high,bypass,bpv_close,bpv_open,class
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,
+,,,,,,,,