summaryrefslogtreecommitdiff
path: root/Data Explorartion/Lego Analysis
diff options
context:
space:
mode:
Diffstat (limited to 'Data Explorartion/Lego Analysis')
-rw-r--r--Data Explorartion/Lego Analysis/.ipynb_checkpoints/lego_analysis-checkpoint.ipynb1885
-rw-r--r--Data Explorartion/Lego Analysis/lego_analysis.ipynb1880
-rw-r--r--Data Explorartion/Lego Analysis/lego_sets.csv11987
-rw-r--r--Data Explorartion/Lego Analysis/parent_themes.csv112
-rw-r--r--Data Explorartion/Lego Analysis/sets.csv11867
-rw-r--r--Data Explorartion/Lego Analysis/themes.csv615
6 files changed, 28346 insertions, 0 deletions
diff --git a/Data Explorartion/Lego Analysis/.ipynb_checkpoints/lego_analysis-checkpoint.ipynb b/Data Explorartion/Lego Analysis/.ipynb_checkpoints/lego_analysis-checkpoint.ipynb
new file mode 100644
index 0000000..424f9d8
--- /dev/null
+++ b/Data Explorartion/Lego Analysis/.ipynb_checkpoints/lego_analysis-checkpoint.ipynb
@@ -0,0 +1,1885 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "dc": {
+ "key": "3"
+ },
+ "deletable": false,
+ "editable": false,
+ "run_control": {
+ "frozen": true
+ },
+ "tags": [
+ "context"
+ ]
+ },
+ "source": [
+ "## # Introduction\n",
+ "<p><img src=\"https://assets.datacamp.com/production/project_981/img/lego_unsplash.jpg\" alt=\"A picture of Lego characters!\"></p>\n",
+ "<h3 id=\"letslookatlegosets\">Let's look at Lego sets!</h3>\n",
+ "<p>Lego is a household name across the world, supported by a diverse toy line, hit movies, and a series of successful video games. In this project, we are going to explore a key development in the history of Lego: the introduction of licensed sets such as Star Wars, Super Heroes, and Harry Potter.</p>\n",
+ "<p>It may not be widely known, but Lego has had its share of ups and downs since its inception in the early 20th century. This includes a particularly rough period in the late 90s. As described in <a href=\"https://www.businessinsider.com/how-lego-made-a-huge-turnaround-2014-2?r=US&IR=T\">this article</a>, Lego was only able to survive due to a successful internal brand (Bionicle) and the introduction of its first licensed series: Star Wars. In the instructions panel are the two questions you will need to answer to complete this project.</p>\n",
+ "<p>Before diving into our analysis though, let's become familiar with the two datasets that will help you with this project:<br><br></p>\n",
+ "<div style=\"background-color: #ebf4f7; color: #595959; text-align:left; vertical-align: middle; padding: 15px 25px 15px 25px; line-height: 1.6;\">\n",
+ " <div style=\"font-size:20px\"><b>datasets/lego_sets.csv</b></div>\n",
+ "<ul>\n",
+ " <li><b>set_num:</b> A code that is unique to each set in the dataset. <b><i>This column is critical, and a missing value indicates the set is a duplicate or invalid!</i></b></li>\n",
+ " <li><b>set_name:</b> A name for every set in the dataset (note that this can be the same for different sets).</li>\n",
+ " <li><b>year:</b> The date the set was released.</li>\n",
+ " <li><b>num_parts:</b> The number of parts contained in the set.<b><i> This column is not central to our analyses, so missing values are acceptable.</i></b></li>\n",
+ " <li><b>theme_name:</b> The name of the sub-theme of the set.</li>\n",
+ " <li><b>parent_theme:</b> The name of the parent theme the set belongs to. Matches the `name` column of the `parent_themes` csv file.</li>\n",
+ "</ul>\n",
+ "\n",
+ "<div style=\"font-size:20px\"><b>datasets/parent_themes.csv</b></div>\n",
+ "<ul>\n",
+ " <li><b>id:</b> A code that is unique to every theme.</li>\n",
+ " <li><b>name:</b> The name of the parent theme.</li>\n",
+ " <li><b>is_licensed:</b> A Boolean column specifying whether the theme is a licensed theme.</li>\n",
+ "</ul>\n",
+ " </div>\n",
+ "<p>From here on out, it will be your task to explore and manipulate the existing data until you are able to answer the two questions described in the instructions panel. Feel free to add as many cells as necessary. Finally, remember that you are only tested on your answer, not on the methods you use to arrive at the answer!</p>\n",
+ "<p><em><strong>Note:</strong> If you haven't completed a DataCamp project before you should check out the <a href=\"https://projects.datacamp.com/projects/33\">Intro to Projects</a> first to learn about the interface. In this project, you also need to know your way around <code>pandas</code> DataFrames and it's recommended that you take a look at the course <a href=\"https://www.datacamp.com/courses/data-manipulation-with-pandas\">Data Manipulation with pandas</a>.</em></p>"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Importing Libraries"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 66,
+ "metadata": {
+ "dc": {
+ "key": "3"
+ },
+ "tags": [
+ "sample_code"
+ ]
+ },
+ "outputs": [],
+ "source": [
+ "# Use this cell to begin your analyses, and add as many cells as you would like!\n",
+ "import pandas as pd"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Load Datasets"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 67,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df = pd.read_csv('~/Projects/Data Explorartion/Lego Analysis/lego_sets.csv')\n",
+ "theme = pd.read_csv('~/Projects/Data Explorartion/Lego Analysis/parent_themes.csv')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 68,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>00-1</td>\n",
+ " <td>Weetabix Castle</td>\n",
+ " <td>1970</td>\n",
+ " <td>471.0</td>\n",
+ " <td>Castle</td>\n",
+ " <td>Legoland</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>0011-2</td>\n",
+ " <td>Town Mini-Figures</td>\n",
+ " <td>1978</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Town</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>0011-3</td>\n",
+ " <td>Castle 2 for 1 Bonus Offer</td>\n",
+ " <td>1987</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Lion Knights</td>\n",
+ " <td>Castle</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>0012-1</td>\n",
+ " <td>Space Mini-Figures</td>\n",
+ " <td>1979</td>\n",
+ " <td>12.0</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Space</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>0013-1</td>\n",
+ " <td>Space Mini-Figures</td>\n",
+ " <td>1979</td>\n",
+ " <td>12.0</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Space</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name year num_parts theme_name \\\n",
+ "0 00-1 Weetabix Castle 1970 471.0 Castle \n",
+ "1 0011-2 Town Mini-Figures 1978 NaN Supplemental \n",
+ "2 0011-3 Castle 2 for 1 Bonus Offer 1987 NaN Lion Knights \n",
+ "3 0012-1 Space Mini-Figures 1979 12.0 Supplemental \n",
+ "4 0013-1 Space Mini-Figures 1979 12.0 Supplemental \n",
+ "\n",
+ " parent_theme \n",
+ "0 Legoland \n",
+ "1 Town \n",
+ "2 Castle \n",
+ "3 Space \n",
+ "4 Space "
+ ]
+ },
+ "execution_count": 68,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 69,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>id</th>\n",
+ " <th>name</th>\n",
+ " <th>is_licensed</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>1</td>\n",
+ " <td>Technic</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>22</td>\n",
+ " <td>Creator</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>50</td>\n",
+ " <td>Town</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>112</td>\n",
+ " <td>Racers</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>126</td>\n",
+ " <td>Space</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " id name is_licensed\n",
+ "0 1 Technic False\n",
+ "1 22 Creator False\n",
+ "2 50 Town False\n",
+ "3 112 Racers False\n",
+ "4 126 Space False"
+ ]
+ },
+ "execution_count": 69,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "theme.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Explorartory Data Analysis"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Task 1. What percentage of all licensed sets over released were Star Wars themed?"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 70,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "set_num 153\n",
+ "name 153\n",
+ "year 0\n",
+ "num_parts 5060\n",
+ "theme_name 153\n",
+ "parent_theme 0\n",
+ "dtype: int64"
+ ]
+ },
+ "execution_count": 70,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.isnull().sum()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 71,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df_na = df.dropna(subset=['set_num'])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 72,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>id</th>\n",
+ " <th>name_y</th>\n",
+ " <th>is_licensed</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>00-1</td>\n",
+ " <td>Weetabix Castle</td>\n",
+ " <td>1970</td>\n",
+ " <td>471.0</td>\n",
+ " <td>Castle</td>\n",
+ " <td>Legoland</td>\n",
+ " <td>411</td>\n",
+ " <td>Legoland</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>0011-2</td>\n",
+ " <td>Town Mini-Figures</td>\n",
+ " <td>1978</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Town</td>\n",
+ " <td>50</td>\n",
+ " <td>Town</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>0011-3</td>\n",
+ " <td>Castle 2 for 1 Bonus Offer</td>\n",
+ " <td>1987</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Lion Knights</td>\n",
+ " <td>Castle</td>\n",
+ " <td>186</td>\n",
+ " <td>Castle</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>0012-1</td>\n",
+ " <td>Space Mini-Figures</td>\n",
+ " <td>1979</td>\n",
+ " <td>12.0</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Space</td>\n",
+ " <td>126</td>\n",
+ " <td>Space</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>0013-1</td>\n",
+ " <td>Space Mini-Figures</td>\n",
+ " <td>1979</td>\n",
+ " <td>12.0</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Space</td>\n",
+ " <td>126</td>\n",
+ " <td>Space</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name_x year num_parts theme_name \\\n",
+ "0 00-1 Weetabix Castle 1970 471.0 Castle \n",
+ "1 0011-2 Town Mini-Figures 1978 NaN Supplemental \n",
+ "2 0011-3 Castle 2 for 1 Bonus Offer 1987 NaN Lion Knights \n",
+ "3 0012-1 Space Mini-Figures 1979 12.0 Supplemental \n",
+ "4 0013-1 Space Mini-Figures 1979 12.0 Supplemental \n",
+ "\n",
+ " parent_theme id name_y is_licensed \n",
+ "0 Legoland 411 Legoland False \n",
+ "1 Town 50 Town False \n",
+ "2 Castle 186 Castle False \n",
+ "3 Space 126 Space False \n",
+ "4 Space 126 Space False "
+ ]
+ },
+ "execution_count": 72,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "dfm = df_na.merge(theme, left_on='parent_theme', right_on='name')\n",
+ "dfm.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 73,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "<class 'pandas.core.frame.DataFrame'>\n",
+ "RangeIndex: 11833 entries, 0 to 11832\n",
+ "Data columns (total 9 columns):\n",
+ " # Column Non-Null Count Dtype \n",
+ "--- ------ -------------- ----- \n",
+ " 0 set_num 11833 non-null object \n",
+ " 1 name_x 11833 non-null object \n",
+ " 2 year 11833 non-null int64 \n",
+ " 3 num_parts 6835 non-null float64\n",
+ " 4 theme_name 11833 non-null object \n",
+ " 5 parent_theme 11833 non-null object \n",
+ " 6 id 11833 non-null int64 \n",
+ " 7 name_y 11833 non-null object \n",
+ " 8 is_licensed 11833 non-null bool \n",
+ "dtypes: bool(1), float64(1), int64(2), object(5)\n",
+ "memory usage: 751.2+ KB\n"
+ ]
+ }
+ ],
+ "source": [
+ "dfm.info()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 74,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>00-1</td>\n",
+ " <td>Weetabix Castle</td>\n",
+ " <td>1970</td>\n",
+ " <td>471.0</td>\n",
+ " <td>Castle</td>\n",
+ " <td>Legoland</td>\n",
+ " <td>411</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>0011-2</td>\n",
+ " <td>Town Mini-Figures</td>\n",
+ " <td>1978</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Town</td>\n",
+ " <td>50</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>0011-3</td>\n",
+ " <td>Castle 2 for 1 Bonus Offer</td>\n",
+ " <td>1987</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Lion Knights</td>\n",
+ " <td>Castle</td>\n",
+ " <td>186</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>0012-1</td>\n",
+ " <td>Space Mini-Figures</td>\n",
+ " <td>1979</td>\n",
+ " <td>12.0</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Space</td>\n",
+ " <td>126</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>0013-1</td>\n",
+ " <td>Space Mini-Figures</td>\n",
+ " <td>1979</td>\n",
+ " <td>12.0</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Space</td>\n",
+ " <td>126</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name_x year num_parts theme_name \\\n",
+ "0 00-1 Weetabix Castle 1970 471.0 Castle \n",
+ "1 0011-2 Town Mini-Figures 1978 NaN Supplemental \n",
+ "2 0011-3 Castle 2 for 1 Bonus Offer 1987 NaN Lion Knights \n",
+ "3 0012-1 Space Mini-Figures 1979 12.0 Supplemental \n",
+ "4 0013-1 Space Mini-Figures 1979 12.0 Supplemental \n",
+ "\n",
+ " parent_theme id is_licensed \n",
+ "0 Legoland 411 False \n",
+ "1 Town 50 False \n",
+ "2 Castle 186 False \n",
+ "3 Space 126 False \n",
+ "4 Space 126 False "
+ ]
+ },
+ "execution_count": 74,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "dfm.drop(columns='name_y', inplace=True)\n",
+ "dfm.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 75,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>44</th>\n",
+ " <td>10018-1</td>\n",
+ " <td>Darth Maul</td>\n",
+ " <td>2001</td>\n",
+ " <td>1868.0</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>45</th>\n",
+ " <td>10019-1</td>\n",
+ " <td>Rebel Blockade Runner - UCS</td>\n",
+ " <td>2001</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>54</th>\n",
+ " <td>10026-1</td>\n",
+ " <td>Naboo Starfighter - UCS</td>\n",
+ " <td>2002</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>57</th>\n",
+ " <td>10030-1</td>\n",
+ " <td>Imperial Star Destroyer - UCS</td>\n",
+ " <td>2002</td>\n",
+ " <td>3115.0</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>95</th>\n",
+ " <td>10075-1</td>\n",
+ " <td>Spider-Man Action Pack</td>\n",
+ " <td>2002</td>\n",
+ " <td>25.0</td>\n",
+ " <td>Spider-Man</td>\n",
+ " <td>Super Heroes</td>\n",
+ " <td>482</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name_x year num_parts \\\n",
+ "44 10018-1 Darth Maul 2001 1868.0 \n",
+ "45 10019-1 Rebel Blockade Runner - UCS 2001 NaN \n",
+ "54 10026-1 Naboo Starfighter - UCS 2002 NaN \n",
+ "57 10030-1 Imperial Star Destroyer - UCS 2002 3115.0 \n",
+ "95 10075-1 Spider-Man Action Pack 2002 25.0 \n",
+ "\n",
+ " theme_name parent_theme id is_licensed \n",
+ "44 Star Wars Star Wars 158 True \n",
+ "45 Star Wars Episode 4/5/6 Star Wars 158 True \n",
+ "54 Star Wars Episode 1 Star Wars 158 True \n",
+ "57 Star Wars Episode 4/5/6 Star Wars 158 True \n",
+ "95 Spider-Man Super Heroes 482 True "
+ ]
+ },
+ "execution_count": 75,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "licensed = dfm[dfm['is_licensed']]\n",
+ "licensed.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 76,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>44</th>\n",
+ " <td>10018-1</td>\n",
+ " <td>Darth Maul</td>\n",
+ " <td>2001</td>\n",
+ " <td>1868.0</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>45</th>\n",
+ " <td>10019-1</td>\n",
+ " <td>Rebel Blockade Runner - UCS</td>\n",
+ " <td>2001</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>54</th>\n",
+ " <td>10026-1</td>\n",
+ " <td>Naboo Starfighter - UCS</td>\n",
+ " <td>2002</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>57</th>\n",
+ " <td>10030-1</td>\n",
+ " <td>Imperial Star Destroyer - UCS</td>\n",
+ " <td>2002</td>\n",
+ " <td>3115.0</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>116</th>\n",
+ " <td>10123-1</td>\n",
+ " <td>Cloud City</td>\n",
+ " <td>2003</td>\n",
+ " <td>707.0</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name_x year num_parts \\\n",
+ "44 10018-1 Darth Maul 2001 1868.0 \n",
+ "45 10019-1 Rebel Blockade Runner - UCS 2001 NaN \n",
+ "54 10026-1 Naboo Starfighter - UCS 2002 NaN \n",
+ "57 10030-1 Imperial Star Destroyer - UCS 2002 3115.0 \n",
+ "116 10123-1 Cloud City 2003 707.0 \n",
+ "\n",
+ " theme_name parent_theme id is_licensed \n",
+ "44 Star Wars Star Wars 158 True \n",
+ "45 Star Wars Episode 4/5/6 Star Wars 158 True \n",
+ "54 Star Wars Episode 1 Star Wars 158 True \n",
+ "57 Star Wars Episode 4/5/6 Star Wars 158 True \n",
+ "116 Star Wars Episode 4/5/6 Star Wars 158 True "
+ ]
+ },
+ "execution_count": 76,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "star_wars = licensed[licensed['parent_theme']=='Star Wars']\n",
+ "star_wars.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 77,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "(609, 8)"
+ ]
+ },
+ "execution_count": 77,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "star_wars.shape"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 78,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "51"
+ ]
+ },
+ "execution_count": 78,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "the_force = int(star_wars.shape[0]/licensed.shape[0]*100)\n",
+ "the_force"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 79,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Task 1. Answer: 51%\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(f'Task 1. Answer: {the_force}%')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Task 2. In which year was Star Wars not the most popular licensed theme (in terms of number of sets released that year)?"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 80,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>44</th>\n",
+ " <td>10018-1</td>\n",
+ " <td>Darth Maul</td>\n",
+ " <td>2001</td>\n",
+ " <td>1868.0</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>45</th>\n",
+ " <td>10019-1</td>\n",
+ " <td>Rebel Blockade Runner - UCS</td>\n",
+ " <td>2001</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>54</th>\n",
+ " <td>10026-1</td>\n",
+ " <td>Naboo Starfighter - UCS</td>\n",
+ " <td>2002</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>57</th>\n",
+ " <td>10030-1</td>\n",
+ " <td>Imperial Star Destroyer - UCS</td>\n",
+ " <td>2002</td>\n",
+ " <td>3115.0</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>95</th>\n",
+ " <td>10075-1</td>\n",
+ " <td>Spider-Man Action Pack</td>\n",
+ " <td>2002</td>\n",
+ " <td>25.0</td>\n",
+ " <td>Spider-Man</td>\n",
+ " <td>Super Heroes</td>\n",
+ " <td>482</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name_x year num_parts \\\n",
+ "44 10018-1 Darth Maul 2001 1868.0 \n",
+ "45 10019-1 Rebel Blockade Runner - UCS 2001 NaN \n",
+ "54 10026-1 Naboo Starfighter - UCS 2002 NaN \n",
+ "57 10030-1 Imperial Star Destroyer - UCS 2002 3115.0 \n",
+ "95 10075-1 Spider-Man Action Pack 2002 25.0 \n",
+ "\n",
+ " theme_name parent_theme id is_licensed \n",
+ "44 Star Wars Star Wars 158 True \n",
+ "45 Star Wars Episode 4/5/6 Star Wars 158 True \n",
+ "54 Star Wars Episode 1 Star Wars 158 True \n",
+ "57 Star Wars Episode 4/5/6 Star Wars 158 True \n",
+ "95 Spider-Man Super Heroes 482 True "
+ ]
+ },
+ "execution_count": 80,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "licensed.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 81,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " <th>count</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>7837</th>\n",
+ " <td>7141-1</td>\n",
+ " <td>Naboo Fighter</td>\n",
+ " <td>1999</td>\n",
+ " <td>179.0</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>7845</th>\n",
+ " <td>7150-1</td>\n",
+ " <td>TIE Fighter &amp; Y-wing</td>\n",
+ " <td>1999</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>7847</th>\n",
+ " <td>7151-1</td>\n",
+ " <td>Sith Infiltrator</td>\n",
+ " <td>1999</td>\n",
+ " <td>244.0</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>7815</th>\n",
+ " <td>7131-1</td>\n",
+ " <td>Anakin's Podracer</td>\n",
+ " <td>1999</td>\n",
+ " <td>136.0</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>7856</th>\n",
+ " <td>7161-1</td>\n",
+ " <td>Gungan Sub</td>\n",
+ " <td>1999</td>\n",
+ " <td>379.0</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name_x year num_parts theme_name \\\n",
+ "7837 7141-1 Naboo Fighter 1999 179.0 Star Wars Episode 1 \n",
+ "7845 7150-1 TIE Fighter & Y-wing 1999 NaN Star Wars Episode 4/5/6 \n",
+ "7847 7151-1 Sith Infiltrator 1999 244.0 Star Wars Episode 1 \n",
+ "7815 7131-1 Anakin's Podracer 1999 136.0 Star Wars Episode 1 \n",
+ "7856 7161-1 Gungan Sub 1999 379.0 Star Wars Episode 1 \n",
+ "\n",
+ " parent_theme id is_licensed count \n",
+ "7837 Star Wars 158 True 1 \n",
+ "7845 Star Wars 158 True 1 \n",
+ "7847 Star Wars 158 True 1 \n",
+ "7815 Star Wars 158 True 1 \n",
+ "7856 Star Wars 158 True 1 "
+ ]
+ },
+ "execution_count": 81,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "licensed_sorted = licensed.sort_values('year')\n",
+ "licensed_sorted['count'] = 1\n",
+ "licensed_sorted.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 84,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " <th>count</th>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>year</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>1999</th>\n",
+ " <th>Star Wars</th>\n",
+ " <td>7141-17150-17151-17131-17161-17130-17171-17128...</td>\n",
+ " <td>Naboo FighterTIE Fighter &amp; Y-wingSith Infiltra...</td>\n",
+ " <td>1384.0</td>\n",
+ " <td>Star Wars Episode 1Star Wars Episode 4/5/6Star...</td>\n",
+ " <td>2054</td>\n",
+ " <td>13</td>\n",
+ " <td>13</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th rowspan=\"2\" valign=\"top\">2000</th>\n",
+ " <th>Disney's Mickey Mouse</th>\n",
+ " <td>4178-14167-14166-14165-14164-1</td>\n",
+ " <td>Mickey's Fishing AdventureMickey's MansionMick...</td>\n",
+ " <td>405.0</td>\n",
+ " <td>Disney's Mickey MouseDisney's Mickey MouseDisn...</td>\n",
+ " <td>1940</td>\n",
+ " <td>5</td>\n",
+ " <td>5</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>Star Wars</th>\n",
+ " <td>7134-13341-1VP-87104-14151270-13343-13342-1712...</td>\n",
+ " <td>A-wing FighterStar Wars #2 - Luke/Han/Boba Min...</td>\n",
+ " <td>2580.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars Episode 4/5/6...</td>\n",
+ " <td>4108</td>\n",
+ " <td>26</td>\n",
+ " <td>26</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th rowspan=\"2\" valign=\"top\">2001</th>\n",
+ " <th>Harry Potter</th>\n",
+ " <td>4702-14701-14704-14705-14722-14707-14708-14709...</td>\n",
+ " <td>The Final ChallengeSorting HatThe Chamber of t...</td>\n",
+ " <td>1284.0</td>\n",
+ " <td>Sorcerer's StoneSorcerer's StoneSorcerer's Sto...</td>\n",
+ " <td>2706</td>\n",
+ " <td>11</td>\n",
+ " <td>11</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>Star Wars</th>\n",
+ " <td>7146-18008-1VP-28007-165028-165030-165034-1710...</td>\n",
+ " <td>TIE FighterStormtrooper™Star Wars Co-Pack of 7...</td>\n",
+ " <td>2949.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star WarsStar Wars Epis...</td>\n",
+ " <td>2212</td>\n",
+ " <td>14</td>\n",
+ " <td>14</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num \\\n",
+ "year parent_theme \n",
+ "1999 Star Wars 7141-17150-17151-17131-17161-17130-17171-17128... \n",
+ "2000 Disney's Mickey Mouse 4178-14167-14166-14165-14164-1 \n",
+ " Star Wars 7134-13341-1VP-87104-14151270-13343-13342-1712... \n",
+ "2001 Harry Potter 4702-14701-14704-14705-14722-14707-14708-14709... \n",
+ " Star Wars 7146-18008-1VP-28007-165028-165030-165034-1710... \n",
+ "\n",
+ " name_x \\\n",
+ "year parent_theme \n",
+ "1999 Star Wars Naboo FighterTIE Fighter & Y-wingSith Infiltra... \n",
+ "2000 Disney's Mickey Mouse Mickey's Fishing AdventureMickey's MansionMick... \n",
+ " Star Wars A-wing FighterStar Wars #2 - Luke/Han/Boba Min... \n",
+ "2001 Harry Potter The Final ChallengeSorting HatThe Chamber of t... \n",
+ " Star Wars TIE FighterStormtrooper™Star Wars Co-Pack of 7... \n",
+ "\n",
+ " num_parts \\\n",
+ "year parent_theme \n",
+ "1999 Star Wars 1384.0 \n",
+ "2000 Disney's Mickey Mouse 405.0 \n",
+ " Star Wars 2580.0 \n",
+ "2001 Harry Potter 1284.0 \n",
+ " Star Wars 2949.0 \n",
+ "\n",
+ " theme_name \\\n",
+ "year parent_theme \n",
+ "1999 Star Wars Star Wars Episode 1Star Wars Episode 4/5/6Star... \n",
+ "2000 Disney's Mickey Mouse Disney's Mickey MouseDisney's Mickey MouseDisn... \n",
+ " Star Wars Star Wars Episode 4/5/6Star Wars Episode 4/5/6... \n",
+ "2001 Harry Potter Sorcerer's StoneSorcerer's StoneSorcerer's Sto... \n",
+ " Star Wars Star Wars Episode 4/5/6Star WarsStar Wars Epis... \n",
+ "\n",
+ " id is_licensed count \n",
+ "year parent_theme \n",
+ "1999 Star Wars 2054 13 13 \n",
+ "2000 Disney's Mickey Mouse 1940 5 5 \n",
+ " Star Wars 4108 26 26 \n",
+ "2001 Harry Potter 2706 11 11 \n",
+ " Star Wars 2212 14 14 "
+ ]
+ },
+ "execution_count": 84,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "summed_df = licensed_sorted.groupby(by=['year','parent_theme']).sum()\n",
+ "summed_df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 87,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>year</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " <th>count</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>1999</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7141-17150-17151-17131-17161-17130-17171-17128...</td>\n",
+ " <td>Naboo FighterTIE Fighter &amp; Y-wingSith Infiltra...</td>\n",
+ " <td>1384.0</td>\n",
+ " <td>Star Wars Episode 1Star Wars Episode 4/5/6Star...</td>\n",
+ " <td>2054</td>\n",
+ " <td>13</td>\n",
+ " <td>13</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>2000</td>\n",
+ " <td>Disney's Mickey Mouse</td>\n",
+ " <td>4178-14167-14166-14165-14164-1</td>\n",
+ " <td>Mickey's Fishing AdventureMickey's MansionMick...</td>\n",
+ " <td>405.0</td>\n",
+ " <td>Disney's Mickey MouseDisney's Mickey MouseDisn...</td>\n",
+ " <td>1940</td>\n",
+ " <td>5</td>\n",
+ " <td>5</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>2000</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7134-13341-1VP-87104-14151270-13343-13342-1712...</td>\n",
+ " <td>A-wing FighterStar Wars #2 - Luke/Han/Boba Min...</td>\n",
+ " <td>2580.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars Episode 4/5/6...</td>\n",
+ " <td>4108</td>\n",
+ " <td>26</td>\n",
+ " <td>26</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>2001</td>\n",
+ " <td>Harry Potter</td>\n",
+ " <td>4702-14701-14704-14705-14722-14707-14708-14709...</td>\n",
+ " <td>The Final ChallengeSorting HatThe Chamber of t...</td>\n",
+ " <td>1284.0</td>\n",
+ " <td>Sorcerer's StoneSorcerer's StoneSorcerer's Sto...</td>\n",
+ " <td>2706</td>\n",
+ " <td>11</td>\n",
+ " <td>11</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>2001</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7146-18008-1VP-28007-165028-165030-165034-1710...</td>\n",
+ " <td>TIE FighterStormtrooper™Star Wars Co-Pack of 7...</td>\n",
+ " <td>2949.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star WarsStar Wars Epis...</td>\n",
+ " <td>2212</td>\n",
+ " <td>14</td>\n",
+ " <td>14</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " year parent_theme \\\n",
+ "0 1999 Star Wars \n",
+ "1 2000 Disney's Mickey Mouse \n",
+ "2 2000 Star Wars \n",
+ "3 2001 Harry Potter \n",
+ "4 2001 Star Wars \n",
+ "\n",
+ " set_num \\\n",
+ "0 7141-17150-17151-17131-17161-17130-17171-17128... \n",
+ "1 4178-14167-14166-14165-14164-1 \n",
+ "2 7134-13341-1VP-87104-14151270-13343-13342-1712... \n",
+ "3 4702-14701-14704-14705-14722-14707-14708-14709... \n",
+ "4 7146-18008-1VP-28007-165028-165030-165034-1710... \n",
+ "\n",
+ " name_x num_parts \\\n",
+ "0 Naboo FighterTIE Fighter & Y-wingSith Infiltra... 1384.0 \n",
+ "1 Mickey's Fishing AdventureMickey's MansionMick... 405.0 \n",
+ "2 A-wing FighterStar Wars #2 - Luke/Han/Boba Min... 2580.0 \n",
+ "3 The Final ChallengeSorting HatThe Chamber of t... 1284.0 \n",
+ "4 TIE FighterStormtrooper™Star Wars Co-Pack of 7... 2949.0 \n",
+ "\n",
+ " theme_name id is_licensed count \n",
+ "0 Star Wars Episode 1Star Wars Episode 4/5/6Star... 2054 13 13 \n",
+ "1 Disney's Mickey MouseDisney's Mickey MouseDisn... 1940 5 5 \n",
+ "2 Star Wars Episode 4/5/6Star Wars Episode 4/5/6... 4108 26 26 \n",
+ "3 Sorcerer's StoneSorcerer's StoneSorcerer's Sto... 2706 11 11 \n",
+ "4 Star Wars Episode 4/5/6Star WarsStar Wars Epis... 2212 14 14 "
+ ]
+ },
+ "execution_count": 87,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "summed_df = summed_df.reset_index()\n",
+ "summed_df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 89,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>year</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " <th>count</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>1999</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7141-17150-17151-17131-17161-17130-17171-17128...</td>\n",
+ " <td>Naboo FighterTIE Fighter &amp; Y-wingSith Infiltra...</td>\n",
+ " <td>1384.0</td>\n",
+ " <td>Star Wars Episode 1Star Wars Episode 4/5/6Star...</td>\n",
+ " <td>2054</td>\n",
+ " <td>13</td>\n",
+ " <td>13</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>2000</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7134-13341-1VP-87104-14151270-13343-13342-1712...</td>\n",
+ " <td>A-wing FighterStar Wars #2 - Luke/Han/Boba Min...</td>\n",
+ " <td>2580.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars Episode 4/5/6...</td>\n",
+ " <td>4108</td>\n",
+ " <td>26</td>\n",
+ " <td>26</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>2001</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7146-18008-1VP-28007-165028-165030-165034-1710...</td>\n",
+ " <td>TIE FighterStormtrooper™Star Wars Co-Pack of 7...</td>\n",
+ " <td>2949.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star WarsStar Wars Epis...</td>\n",
+ " <td>2212</td>\n",
+ " <td>14</td>\n",
+ " <td>14</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>6</th>\n",
+ " <td>2002</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>4195641-1K7153-1K7204-1K720x-18009-18010-18011...</td>\n",
+ " <td>Star Wars Co-Pack of 7142 and 7152Episode II U...</td>\n",
+ " <td>4735.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars Episode 2Star...</td>\n",
+ " <td>4424</td>\n",
+ " <td>28</td>\n",
+ " <td>28</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>9</th>\n",
+ " <td>2003</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>4481-14480-14479-14478-14476-14475-14207901-14...</td>\n",
+ " <td>Hailfire DroidJabba's PalaceTIE BomberGeonosia...</td>\n",
+ " <td>6660.0</td>\n",
+ " <td>Star WarsStar Wars Episode 4/5/6Star Wars Epis...</td>\n",
+ " <td>5056</td>\n",
+ " <td>32</td>\n",
+ " <td>32</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>12</th>\n",
+ " <td>2004</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>4501-2K10131-14502-24500-210134-14483-24495-14...</td>\n",
+ " <td>Mos Eisley Cantina, Original Trilogy Edition b...</td>\n",
+ " <td>1659.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars Episode 4/5/6...</td>\n",
+ " <td>3160</td>\n",
+ " <td>20</td>\n",
+ " <td>20</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>16</th>\n",
+ " <td>2005</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>K7283-16966-165771-16966-26965-265845-165844-1...</td>\n",
+ " <td>V-wing Space Battle CollectionJedi Starfighter...</td>\n",
+ " <td>4730.0</td>\n",
+ " <td>Star Wars Episode 3MiniStar Wars Episode 3Mini...</td>\n",
+ " <td>4424</td>\n",
+ " <td>28</td>\n",
+ " <td>28</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>20</th>\n",
+ " <td>2006</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7261-210175-110174-16205-16206-16207-16208-162...</td>\n",
+ " <td>Clone Turbo Tank (with Non-Light-Up Mace Windu...</td>\n",
+ " <td>2769.0</td>\n",
+ " <td>Star Wars Episode 3Star Wars Episode 4/5/6Star...</td>\n",
+ " <td>1738</td>\n",
+ " <td>11</td>\n",
+ " <td>11</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>24</th>\n",
+ " <td>2007</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>66221-17664-110179-110178-17665-17662-17654-17...</td>\n",
+ " <td>X-wing Fighter and Luke Pilot Maquette Co-Pack...</td>\n",
+ " <td>11361.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars OtherStar War...</td>\n",
+ " <td>2528</td>\n",
+ " <td>16</td>\n",
+ " <td>16</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>28</th>\n",
+ " <td>2008</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>20006-110186-18031-18029-18028-17668-17667-110...</td>\n",
+ " <td>Clone Turbo Tank - MiniGeneral GrievousV-19 To...</td>\n",
+ " <td>6865.0</td>\n",
+ " <td>Star Wars Episode 3Star Wars Episode 3Star War...</td>\n",
+ " <td>3634</td>\n",
+ " <td>23</td>\n",
+ " <td>23</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>32</th>\n",
+ " <td>2009</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>8016-18018-18019-166308-17752-17751-17749-1803...</td>\n",
+ " <td>Hyena Droid BomberArmored Assault Tank (AAT)Re...</td>\n",
+ " <td>3953.0</td>\n",
+ " <td>Star Wars Clone WarsStar Wars Clone WarsStar W...</td>\n",
+ " <td>6162</td>\n",
+ " <td>39</td>\n",
+ " <td>39</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>36</th>\n",
+ " <td>2010</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>8095-18097-18089-18096-18099-18129-18091-18093...</td>\n",
+ " <td>General Grievous’ StarfighterSlave I (Third Ed...</td>\n",
+ " <td>6003.0</td>\n",
+ " <td>Star Wars Clone WarsStar Wars Episode 4/5/6Sta...</td>\n",
+ " <td>4740</td>\n",
+ " <td>30</td>\n",
+ " <td>30</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>42</th>\n",
+ " <td>2011</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7929-17965-130053-17879-130054-17931-130052-17...</td>\n",
+ " <td>The Battle of NabooMillennium FalconRepublic A...</td>\n",
+ " <td>3451.0</td>\n",
+ " <td>Star Wars Episode 1Star Wars Episode 4/5/6Star...</td>\n",
+ " <td>5056</td>\n",
+ " <td>32</td>\n",
+ " <td>32</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>47</th>\n",
+ " <td>2012</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>celebvi-110227-166431-166432-19679-19678-19677...</td>\n",
+ " <td>Boba Fett’s Slave I - Mini - Star Wars Celebra...</td>\n",
+ " <td>6769.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars Episode 4/5/6...</td>\n",
+ " <td>6794</td>\n",
+ " <td>43</td>\n",
+ " <td>43</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>52</th>\n",
+ " <td>2013</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>comcon032-1MAY2013-110236-110240-175000-175010...</td>\n",
+ " <td>JEK-14 Mini Stealth Starfighter - San Diego Co...</td>\n",
+ " <td>6159.0</td>\n",
+ " <td>Star WarsStar WarsStar Wars Episode 4/5/6Star ...</td>\n",
+ " <td>5530</td>\n",
+ " <td>35</td>\n",
+ " <td>35</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>59</th>\n",
+ " <td>2014</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>TRUXWINGTIE-130244-130246-130247-1TRUTIE-1TRUG...</td>\n",
+ " <td>TRU X-Wing Fighter &amp; TIE Fighter (May 3, 2014)...</td>\n",
+ " <td>8293.0</td>\n",
+ " <td>Star Wars OtherMiniStar WarsStar WarsStar Wars...</td>\n",
+ " <td>7110</td>\n",
+ " <td>45</td>\n",
+ " <td>45</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>67</th>\n",
+ " <td>2015</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>SDCC2015-2SW911506-1SW911508-1SW911509-1SW9115...</td>\n",
+ " <td>Dagobah Mini-BuildSnowspeederMini Slave 1Imper...</td>\n",
+ " <td>11410.0</td>\n",
+ " <td>Star WarsStar Wars Episode 4/5/6MiniStar Wars ...</td>\n",
+ " <td>9164</td>\n",
+ " <td>58</td>\n",
+ " <td>58</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>76</th>\n",
+ " <td>2016</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>75130-175131-175129-175126-175114-175115-17511...</td>\n",
+ " <td>AT-DPResistance Trooper Battle PackWookiee Gun...</td>\n",
+ " <td>6934.0</td>\n",
+ " <td>Star Wars RebelsStar Wars Episode 7Star Wars R...</td>\n",
+ " <td>9638</td>\n",
+ " <td>61</td>\n",
+ " <td>61</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>82</th>\n",
+ " <td>2017</td>\n",
+ " <td>Super Heroes</td>\n",
+ " <td>5004930-15004929-1211701-141234-141233-170900-...</td>\n",
+ " <td>Accessory packBatman Battle PodBatmanBumblebee...</td>\n",
+ " <td>13123.0</td>\n",
+ " <td>BatmanBatmanBatmanSuper HeroesSuper HeroesBatm...</td>\n",
+ " <td>34704</td>\n",
+ " <td>72</td>\n",
+ " <td>72</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " year parent_theme set_num \\\n",
+ "0 1999 Star Wars 7141-17150-17151-17131-17161-17130-17171-17128... \n",
+ "2 2000 Star Wars 7134-13341-1VP-87104-14151270-13343-13342-1712... \n",
+ "4 2001 Star Wars 7146-18008-1VP-28007-165028-165030-165034-1710... \n",
+ "6 2002 Star Wars 4195641-1K7153-1K7204-1K720x-18009-18010-18011... \n",
+ "9 2003 Star Wars 4481-14480-14479-14478-14476-14475-14207901-14... \n",
+ "12 2004 Star Wars 4501-2K10131-14502-24500-210134-14483-24495-14... \n",
+ "16 2005 Star Wars K7283-16966-165771-16966-26965-265845-165844-1... \n",
+ "20 2006 Star Wars 7261-210175-110174-16205-16206-16207-16208-162... \n",
+ "24 2007 Star Wars 66221-17664-110179-110178-17665-17662-17654-17... \n",
+ "28 2008 Star Wars 20006-110186-18031-18029-18028-17668-17667-110... \n",
+ "32 2009 Star Wars 8016-18018-18019-166308-17752-17751-17749-1803... \n",
+ "36 2010 Star Wars 8095-18097-18089-18096-18099-18129-18091-18093... \n",
+ "42 2011 Star Wars 7929-17965-130053-17879-130054-17931-130052-17... \n",
+ "47 2012 Star Wars celebvi-110227-166431-166432-19679-19678-19677... \n",
+ "52 2013 Star Wars comcon032-1MAY2013-110236-110240-175000-175010... \n",
+ "59 2014 Star Wars TRUXWINGTIE-130244-130246-130247-1TRUTIE-1TRUG... \n",
+ "67 2015 Star Wars SDCC2015-2SW911506-1SW911508-1SW911509-1SW9115... \n",
+ "76 2016 Star Wars 75130-175131-175129-175126-175114-175115-17511... \n",
+ "82 2017 Super Heroes 5004930-15004929-1211701-141234-141233-170900-... \n",
+ "\n",
+ " name_x num_parts \\\n",
+ "0 Naboo FighterTIE Fighter & Y-wingSith Infiltra... 1384.0 \n",
+ "2 A-wing FighterStar Wars #2 - Luke/Han/Boba Min... 2580.0 \n",
+ "4 TIE FighterStormtrooper™Star Wars Co-Pack of 7... 2949.0 \n",
+ "6 Star Wars Co-Pack of 7142 and 7152Episode II U... 4735.0 \n",
+ "9 Hailfire DroidJabba's PalaceTIE BomberGeonosia... 6660.0 \n",
+ "12 Mos Eisley Cantina, Original Trilogy Edition b... 1659.0 \n",
+ "16 V-wing Space Battle CollectionJedi Starfighter... 4730.0 \n",
+ "20 Clone Turbo Tank (with Non-Light-Up Mace Windu... 2769.0 \n",
+ "24 X-wing Fighter and Luke Pilot Maquette Co-Pack... 11361.0 \n",
+ "28 Clone Turbo Tank - MiniGeneral GrievousV-19 To... 6865.0 \n",
+ "32 Hyena Droid BomberArmored Assault Tank (AAT)Re... 3953.0 \n",
+ "36 General Grievous’ StarfighterSlave I (Third Ed... 6003.0 \n",
+ "42 The Battle of NabooMillennium FalconRepublic A... 3451.0 \n",
+ "47 Boba Fett’s Slave I - Mini - Star Wars Celebra... 6769.0 \n",
+ "52 JEK-14 Mini Stealth Starfighter - San Diego Co... 6159.0 \n",
+ "59 TRU X-Wing Fighter & TIE Fighter (May 3, 2014)... 8293.0 \n",
+ "67 Dagobah Mini-BuildSnowspeederMini Slave 1Imper... 11410.0 \n",
+ "76 AT-DPResistance Trooper Battle PackWookiee Gun... 6934.0 \n",
+ "82 Accessory packBatman Battle PodBatmanBumblebee... 13123.0 \n",
+ "\n",
+ " theme_name id is_licensed \\\n",
+ "0 Star Wars Episode 1Star Wars Episode 4/5/6Star... 2054 13 \n",
+ "2 Star Wars Episode 4/5/6Star Wars Episode 4/5/6... 4108 26 \n",
+ "4 Star Wars Episode 4/5/6Star WarsStar Wars Epis... 2212 14 \n",
+ "6 Star Wars Episode 4/5/6Star Wars Episode 2Star... 4424 28 \n",
+ "9 Star WarsStar Wars Episode 4/5/6Star Wars Epis... 5056 32 \n",
+ "12 Star Wars Episode 4/5/6Star Wars Episode 4/5/6... 3160 20 \n",
+ "16 Star Wars Episode 3MiniStar Wars Episode 3Mini... 4424 28 \n",
+ "20 Star Wars Episode 3Star Wars Episode 4/5/6Star... 1738 11 \n",
+ "24 Star Wars Episode 4/5/6Star Wars OtherStar War... 2528 16 \n",
+ "28 Star Wars Episode 3Star Wars Episode 3Star War... 3634 23 \n",
+ "32 Star Wars Clone WarsStar Wars Clone WarsStar W... 6162 39 \n",
+ "36 Star Wars Clone WarsStar Wars Episode 4/5/6Sta... 4740 30 \n",
+ "42 Star Wars Episode 1Star Wars Episode 4/5/6Star... 5056 32 \n",
+ "47 Star Wars Episode 4/5/6Star Wars Episode 4/5/6... 6794 43 \n",
+ "52 Star WarsStar WarsStar Wars Episode 4/5/6Star ... 5530 35 \n",
+ "59 Star Wars OtherMiniStar WarsStar WarsStar Wars... 7110 45 \n",
+ "67 Star WarsStar Wars Episode 4/5/6MiniStar Wars ... 9164 58 \n",
+ "76 Star Wars RebelsStar Wars Episode 7Star Wars R... 9638 61 \n",
+ "82 BatmanBatmanBatmanSuper HeroesSuper HeroesBatm... 34704 72 \n",
+ "\n",
+ " count \n",
+ "0 13 \n",
+ "2 26 \n",
+ "4 14 \n",
+ "6 28 \n",
+ "9 32 \n",
+ "12 20 \n",
+ "16 28 \n",
+ "20 11 \n",
+ "24 16 \n",
+ "28 23 \n",
+ "32 39 \n",
+ "36 30 \n",
+ "42 32 \n",
+ "47 43 \n",
+ "52 35 \n",
+ "59 45 \n",
+ "67 58 \n",
+ "76 61 \n",
+ "82 72 "
+ ]
+ },
+ "execution_count": 89,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "max_df = summed_df.sort_values(by='count',ascending=False).drop_duplicates(['year'])\n",
+ "max_df.sort_values('year', inplace=True)\n",
+ "max_df"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 90,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "new_era=2017"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 91,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Task 2. Answer: 2017\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(f'Task 2. Answer: {new_era}')"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.5"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/Data Explorartion/Lego Analysis/lego_analysis.ipynb b/Data Explorartion/Lego Analysis/lego_analysis.ipynb
new file mode 100644
index 0000000..e1c4307
--- /dev/null
+++ b/Data Explorartion/Lego Analysis/lego_analysis.ipynb
@@ -0,0 +1,1880 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "dc": {
+ "key": "3"
+ },
+ "deletable": false,
+ "editable": false,
+ "run_control": {
+ "frozen": true
+ },
+ "tags": [
+ "context"
+ ]
+ },
+ "source": [
+ "## # Introduction\n",
+ "<p><img src=\"https://assets.datacamp.com/production/project_981/img/lego_unsplash.jpg\" alt=\"A picture of Lego characters!\"></p>\n",
+ "<h3 id=\"letslookatlegosets\">Let's look at Lego sets!</h3>\n",
+ "<p>Lego is a household name across the world, supported by a diverse toy line, hit movies, and a series of successful video games. In this project, we are going to explore a key development in the history of Lego: the introduction of licensed sets such as Star Wars, Super Heroes, and Harry Potter.</p>\n",
+ "<p>It may not be widely known, but Lego has had its share of ups and downs since its inception in the early 20th century. This includes a particularly rough period in the late 90s. As described in <a href=\"https://www.businessinsider.com/how-lego-made-a-huge-turnaround-2014-2?r=US&IR=T\">this article</a>, Lego was only able to survive due to a successful internal brand (Bionicle) and the introduction of its first licensed series: Star Wars. In the instructions panel are the two questions you will need to answer to complete this project.</p>\n",
+ "<p>Before diving into our analysis though, let's become familiar with the two datasets that will help you with this project:<br><br></p>\n",
+ "<div style=\"background-color: #ebf4f7; color: #595959; text-align:left; vertical-align: middle; padding: 15px 25px 15px 25px; line-height: 1.6;\">\n",
+ " <div style=\"font-size:20px\"><b>datasets/lego_sets.csv</b></div>\n",
+ "<ul>\n",
+ " <li><b>set_num:</b> A code that is unique to each set in the dataset. <b><i>This column is critical, and a missing value indicates the set is a duplicate or invalid!</i></b></li>\n",
+ " <li><b>set_name:</b> A name for every set in the dataset (note that this can be the same for different sets).</li>\n",
+ " <li><b>year:</b> The date the set was released.</li>\n",
+ " <li><b>num_parts:</b> The number of parts contained in the set.<b><i> This column is not central to our analyses, so missing values are acceptable.</i></b></li>\n",
+ " <li><b>theme_name:</b> The name of the sub-theme of the set.</li>\n",
+ " <li><b>parent_theme:</b> The name of the parent theme the set belongs to. Matches the `name` column of the `parent_themes` csv file.</li>\n",
+ "</ul>\n",
+ "\n",
+ "<div style=\"font-size:20px\"><b>datasets/parent_themes.csv</b></div>\n",
+ "<ul>\n",
+ " <li><b>id:</b> A code that is unique to every theme.</li>\n",
+ " <li><b>name:</b> The name of the parent theme.</li>\n",
+ " <li><b>is_licensed:</b> A Boolean column specifying whether the theme is a licensed theme.</li>\n",
+ "</ul>\n",
+ " </div>\n",
+ "<p>From here on out, it will be your task to explore and manipulate the existing data until you are able to answer the two questions described in the instructions panel. Feel free to add as many cells as necessary. Finally, remember that you are only tested on your answer, not on the methods you use to arrive at the answer!</p>\n",
+ "<p><em><strong>Note:</strong> If you haven't completed a DataCamp project before you should check out the <a href=\"https://projects.datacamp.com/projects/33\">Intro to Projects</a> first to learn about the interface. In this project, you also need to know your way around <code>pandas</code> DataFrames and it's recommended that you take a look at the course <a href=\"https://www.datacamp.com/courses/data-manipulation-with-pandas\">Data Manipulation with pandas</a>.</em></p>"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Importing Libraries"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 66,
+ "metadata": {
+ "dc": {
+ "key": "3"
+ },
+ "tags": [
+ "sample_code"
+ ]
+ },
+ "outputs": [],
+ "source": [
+ "# Use this cell to begin your analyses, and add as many cells as you would like!\n",
+ "import pandas as pd"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Load Datasets"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 67,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df = pd.read_csv('lego_sets.csv')\n",
+ "theme = pd.read_csv('parent_themes.csv')"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 68,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>00-1</td>\n",
+ " <td>Weetabix Castle</td>\n",
+ " <td>1970</td>\n",
+ " <td>471.0</td>\n",
+ " <td>Castle</td>\n",
+ " <td>Legoland</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>0011-2</td>\n",
+ " <td>Town Mini-Figures</td>\n",
+ " <td>1978</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Town</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>0011-3</td>\n",
+ " <td>Castle 2 for 1 Bonus Offer</td>\n",
+ " <td>1987</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Lion Knights</td>\n",
+ " <td>Castle</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>0012-1</td>\n",
+ " <td>Space Mini-Figures</td>\n",
+ " <td>1979</td>\n",
+ " <td>12.0</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Space</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>0013-1</td>\n",
+ " <td>Space Mini-Figures</td>\n",
+ " <td>1979</td>\n",
+ " <td>12.0</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Space</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name year num_parts theme_name \\\n",
+ "0 00-1 Weetabix Castle 1970 471.0 Castle \n",
+ "1 0011-2 Town Mini-Figures 1978 NaN Supplemental \n",
+ "2 0011-3 Castle 2 for 1 Bonus Offer 1987 NaN Lion Knights \n",
+ "3 0012-1 Space Mini-Figures 1979 12.0 Supplemental \n",
+ "4 0013-1 Space Mini-Figures 1979 12.0 Supplemental \n",
+ "\n",
+ " parent_theme \n",
+ "0 Legoland \n",
+ "1 Town \n",
+ "2 Castle \n",
+ "3 Space \n",
+ "4 Space "
+ ]
+ },
+ "execution_count": 68,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 69,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>id</th>\n",
+ " <th>name</th>\n",
+ " <th>is_licensed</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>1</td>\n",
+ " <td>Technic</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>22</td>\n",
+ " <td>Creator</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>50</td>\n",
+ " <td>Town</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>112</td>\n",
+ " <td>Racers</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>126</td>\n",
+ " <td>Space</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " id name is_licensed\n",
+ "0 1 Technic False\n",
+ "1 22 Creator False\n",
+ "2 50 Town False\n",
+ "3 112 Racers False\n",
+ "4 126 Space False"
+ ]
+ },
+ "execution_count": 69,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "theme.head()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Explorartory Data Analysis\n",
+ "\n",
+ "### Task 1. What percentage of all licensed sets over released were Star Wars themed?"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 70,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "set_num 153\n",
+ "name 153\n",
+ "year 0\n",
+ "num_parts 5060\n",
+ "theme_name 153\n",
+ "parent_theme 0\n",
+ "dtype: int64"
+ ]
+ },
+ "execution_count": 70,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "df.isnull().sum()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 71,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df_na = df.dropna(subset=['set_num'])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 72,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>id</th>\n",
+ " <th>name_y</th>\n",
+ " <th>is_licensed</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>00-1</td>\n",
+ " <td>Weetabix Castle</td>\n",
+ " <td>1970</td>\n",
+ " <td>471.0</td>\n",
+ " <td>Castle</td>\n",
+ " <td>Legoland</td>\n",
+ " <td>411</td>\n",
+ " <td>Legoland</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>0011-2</td>\n",
+ " <td>Town Mini-Figures</td>\n",
+ " <td>1978</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Town</td>\n",
+ " <td>50</td>\n",
+ " <td>Town</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>0011-3</td>\n",
+ " <td>Castle 2 for 1 Bonus Offer</td>\n",
+ " <td>1987</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Lion Knights</td>\n",
+ " <td>Castle</td>\n",
+ " <td>186</td>\n",
+ " <td>Castle</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>0012-1</td>\n",
+ " <td>Space Mini-Figures</td>\n",
+ " <td>1979</td>\n",
+ " <td>12.0</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Space</td>\n",
+ " <td>126</td>\n",
+ " <td>Space</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>0013-1</td>\n",
+ " <td>Space Mini-Figures</td>\n",
+ " <td>1979</td>\n",
+ " <td>12.0</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Space</td>\n",
+ " <td>126</td>\n",
+ " <td>Space</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name_x year num_parts theme_name \\\n",
+ "0 00-1 Weetabix Castle 1970 471.0 Castle \n",
+ "1 0011-2 Town Mini-Figures 1978 NaN Supplemental \n",
+ "2 0011-3 Castle 2 for 1 Bonus Offer 1987 NaN Lion Knights \n",
+ "3 0012-1 Space Mini-Figures 1979 12.0 Supplemental \n",
+ "4 0013-1 Space Mini-Figures 1979 12.0 Supplemental \n",
+ "\n",
+ " parent_theme id name_y is_licensed \n",
+ "0 Legoland 411 Legoland False \n",
+ "1 Town 50 Town False \n",
+ "2 Castle 186 Castle False \n",
+ "3 Space 126 Space False \n",
+ "4 Space 126 Space False "
+ ]
+ },
+ "execution_count": 72,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "dfm = df_na.merge(theme, left_on='parent_theme', right_on='name')\n",
+ "dfm.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 73,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "<class 'pandas.core.frame.DataFrame'>\n",
+ "RangeIndex: 11833 entries, 0 to 11832\n",
+ "Data columns (total 9 columns):\n",
+ " # Column Non-Null Count Dtype \n",
+ "--- ------ -------------- ----- \n",
+ " 0 set_num 11833 non-null object \n",
+ " 1 name_x 11833 non-null object \n",
+ " 2 year 11833 non-null int64 \n",
+ " 3 num_parts 6835 non-null float64\n",
+ " 4 theme_name 11833 non-null object \n",
+ " 5 parent_theme 11833 non-null object \n",
+ " 6 id 11833 non-null int64 \n",
+ " 7 name_y 11833 non-null object \n",
+ " 8 is_licensed 11833 non-null bool \n",
+ "dtypes: bool(1), float64(1), int64(2), object(5)\n",
+ "memory usage: 751.2+ KB\n"
+ ]
+ }
+ ],
+ "source": [
+ "dfm.info()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 74,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>00-1</td>\n",
+ " <td>Weetabix Castle</td>\n",
+ " <td>1970</td>\n",
+ " <td>471.0</td>\n",
+ " <td>Castle</td>\n",
+ " <td>Legoland</td>\n",
+ " <td>411</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>0011-2</td>\n",
+ " <td>Town Mini-Figures</td>\n",
+ " <td>1978</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Town</td>\n",
+ " <td>50</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>0011-3</td>\n",
+ " <td>Castle 2 for 1 Bonus Offer</td>\n",
+ " <td>1987</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Lion Knights</td>\n",
+ " <td>Castle</td>\n",
+ " <td>186</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>0012-1</td>\n",
+ " <td>Space Mini-Figures</td>\n",
+ " <td>1979</td>\n",
+ " <td>12.0</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Space</td>\n",
+ " <td>126</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>0013-1</td>\n",
+ " <td>Space Mini-Figures</td>\n",
+ " <td>1979</td>\n",
+ " <td>12.0</td>\n",
+ " <td>Supplemental</td>\n",
+ " <td>Space</td>\n",
+ " <td>126</td>\n",
+ " <td>False</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name_x year num_parts theme_name \\\n",
+ "0 00-1 Weetabix Castle 1970 471.0 Castle \n",
+ "1 0011-2 Town Mini-Figures 1978 NaN Supplemental \n",
+ "2 0011-3 Castle 2 for 1 Bonus Offer 1987 NaN Lion Knights \n",
+ "3 0012-1 Space Mini-Figures 1979 12.0 Supplemental \n",
+ "4 0013-1 Space Mini-Figures 1979 12.0 Supplemental \n",
+ "\n",
+ " parent_theme id is_licensed \n",
+ "0 Legoland 411 False \n",
+ "1 Town 50 False \n",
+ "2 Castle 186 False \n",
+ "3 Space 126 False \n",
+ "4 Space 126 False "
+ ]
+ },
+ "execution_count": 74,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "dfm.drop(columns='name_y', inplace=True)\n",
+ "dfm.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 75,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>44</th>\n",
+ " <td>10018-1</td>\n",
+ " <td>Darth Maul</td>\n",
+ " <td>2001</td>\n",
+ " <td>1868.0</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>45</th>\n",
+ " <td>10019-1</td>\n",
+ " <td>Rebel Blockade Runner - UCS</td>\n",
+ " <td>2001</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>54</th>\n",
+ " <td>10026-1</td>\n",
+ " <td>Naboo Starfighter - UCS</td>\n",
+ " <td>2002</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>57</th>\n",
+ " <td>10030-1</td>\n",
+ " <td>Imperial Star Destroyer - UCS</td>\n",
+ " <td>2002</td>\n",
+ " <td>3115.0</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>95</th>\n",
+ " <td>10075-1</td>\n",
+ " <td>Spider-Man Action Pack</td>\n",
+ " <td>2002</td>\n",
+ " <td>25.0</td>\n",
+ " <td>Spider-Man</td>\n",
+ " <td>Super Heroes</td>\n",
+ " <td>482</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name_x year num_parts \\\n",
+ "44 10018-1 Darth Maul 2001 1868.0 \n",
+ "45 10019-1 Rebel Blockade Runner - UCS 2001 NaN \n",
+ "54 10026-1 Naboo Starfighter - UCS 2002 NaN \n",
+ "57 10030-1 Imperial Star Destroyer - UCS 2002 3115.0 \n",
+ "95 10075-1 Spider-Man Action Pack 2002 25.0 \n",
+ "\n",
+ " theme_name parent_theme id is_licensed \n",
+ "44 Star Wars Star Wars 158 True \n",
+ "45 Star Wars Episode 4/5/6 Star Wars 158 True \n",
+ "54 Star Wars Episode 1 Star Wars 158 True \n",
+ "57 Star Wars Episode 4/5/6 Star Wars 158 True \n",
+ "95 Spider-Man Super Heroes 482 True "
+ ]
+ },
+ "execution_count": 75,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "licensed = dfm[dfm['is_licensed']]\n",
+ "licensed.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 76,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>44</th>\n",
+ " <td>10018-1</td>\n",
+ " <td>Darth Maul</td>\n",
+ " <td>2001</td>\n",
+ " <td>1868.0</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>45</th>\n",
+ " <td>10019-1</td>\n",
+ " <td>Rebel Blockade Runner - UCS</td>\n",
+ " <td>2001</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>54</th>\n",
+ " <td>10026-1</td>\n",
+ " <td>Naboo Starfighter - UCS</td>\n",
+ " <td>2002</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>57</th>\n",
+ " <td>10030-1</td>\n",
+ " <td>Imperial Star Destroyer - UCS</td>\n",
+ " <td>2002</td>\n",
+ " <td>3115.0</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>116</th>\n",
+ " <td>10123-1</td>\n",
+ " <td>Cloud City</td>\n",
+ " <td>2003</td>\n",
+ " <td>707.0</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name_x year num_parts \\\n",
+ "44 10018-1 Darth Maul 2001 1868.0 \n",
+ "45 10019-1 Rebel Blockade Runner - UCS 2001 NaN \n",
+ "54 10026-1 Naboo Starfighter - UCS 2002 NaN \n",
+ "57 10030-1 Imperial Star Destroyer - UCS 2002 3115.0 \n",
+ "116 10123-1 Cloud City 2003 707.0 \n",
+ "\n",
+ " theme_name parent_theme id is_licensed \n",
+ "44 Star Wars Star Wars 158 True \n",
+ "45 Star Wars Episode 4/5/6 Star Wars 158 True \n",
+ "54 Star Wars Episode 1 Star Wars 158 True \n",
+ "57 Star Wars Episode 4/5/6 Star Wars 158 True \n",
+ "116 Star Wars Episode 4/5/6 Star Wars 158 True "
+ ]
+ },
+ "execution_count": 76,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "star_wars = licensed[licensed['parent_theme']=='Star Wars']\n",
+ "star_wars.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 77,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "(609, 8)"
+ ]
+ },
+ "execution_count": 77,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "star_wars.shape"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 78,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "51"
+ ]
+ },
+ "execution_count": 78,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "the_force = int(star_wars.shape[0]/licensed.shape[0]*100)\n",
+ "the_force"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 79,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Task 1. Answer: 51%\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(f'Task 1. Answer: {the_force}%')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Task 2. In which year was Star Wars not the most popular licensed theme (in terms of number of sets released that year)?"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 80,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>44</th>\n",
+ " <td>10018-1</td>\n",
+ " <td>Darth Maul</td>\n",
+ " <td>2001</td>\n",
+ " <td>1868.0</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>45</th>\n",
+ " <td>10019-1</td>\n",
+ " <td>Rebel Blockade Runner - UCS</td>\n",
+ " <td>2001</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>54</th>\n",
+ " <td>10026-1</td>\n",
+ " <td>Naboo Starfighter - UCS</td>\n",
+ " <td>2002</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>57</th>\n",
+ " <td>10030-1</td>\n",
+ " <td>Imperial Star Destroyer - UCS</td>\n",
+ " <td>2002</td>\n",
+ " <td>3115.0</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>95</th>\n",
+ " <td>10075-1</td>\n",
+ " <td>Spider-Man Action Pack</td>\n",
+ " <td>2002</td>\n",
+ " <td>25.0</td>\n",
+ " <td>Spider-Man</td>\n",
+ " <td>Super Heroes</td>\n",
+ " <td>482</td>\n",
+ " <td>True</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name_x year num_parts \\\n",
+ "44 10018-1 Darth Maul 2001 1868.0 \n",
+ "45 10019-1 Rebel Blockade Runner - UCS 2001 NaN \n",
+ "54 10026-1 Naboo Starfighter - UCS 2002 NaN \n",
+ "57 10030-1 Imperial Star Destroyer - UCS 2002 3115.0 \n",
+ "95 10075-1 Spider-Man Action Pack 2002 25.0 \n",
+ "\n",
+ " theme_name parent_theme id is_licensed \n",
+ "44 Star Wars Star Wars 158 True \n",
+ "45 Star Wars Episode 4/5/6 Star Wars 158 True \n",
+ "54 Star Wars Episode 1 Star Wars 158 True \n",
+ "57 Star Wars Episode 4/5/6 Star Wars 158 True \n",
+ "95 Spider-Man Super Heroes 482 True "
+ ]
+ },
+ "execution_count": 80,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "licensed.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 81,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>year</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " <th>count</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>7837</th>\n",
+ " <td>7141-1</td>\n",
+ " <td>Naboo Fighter</td>\n",
+ " <td>1999</td>\n",
+ " <td>179.0</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>7845</th>\n",
+ " <td>7150-1</td>\n",
+ " <td>TIE Fighter &amp; Y-wing</td>\n",
+ " <td>1999</td>\n",
+ " <td>NaN</td>\n",
+ " <td>Star Wars Episode 4/5/6</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>7847</th>\n",
+ " <td>7151-1</td>\n",
+ " <td>Sith Infiltrator</td>\n",
+ " <td>1999</td>\n",
+ " <td>244.0</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>7815</th>\n",
+ " <td>7131-1</td>\n",
+ " <td>Anakin's Podracer</td>\n",
+ " <td>1999</td>\n",
+ " <td>136.0</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>7856</th>\n",
+ " <td>7161-1</td>\n",
+ " <td>Gungan Sub</td>\n",
+ " <td>1999</td>\n",
+ " <td>379.0</td>\n",
+ " <td>Star Wars Episode 1</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>158</td>\n",
+ " <td>True</td>\n",
+ " <td>1</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num name_x year num_parts theme_name \\\n",
+ "7837 7141-1 Naboo Fighter 1999 179.0 Star Wars Episode 1 \n",
+ "7845 7150-1 TIE Fighter & Y-wing 1999 NaN Star Wars Episode 4/5/6 \n",
+ "7847 7151-1 Sith Infiltrator 1999 244.0 Star Wars Episode 1 \n",
+ "7815 7131-1 Anakin's Podracer 1999 136.0 Star Wars Episode 1 \n",
+ "7856 7161-1 Gungan Sub 1999 379.0 Star Wars Episode 1 \n",
+ "\n",
+ " parent_theme id is_licensed count \n",
+ "7837 Star Wars 158 True 1 \n",
+ "7845 Star Wars 158 True 1 \n",
+ "7847 Star Wars 158 True 1 \n",
+ "7815 Star Wars 158 True 1 \n",
+ "7856 Star Wars 158 True 1 "
+ ]
+ },
+ "execution_count": 81,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "licensed_sorted = licensed.sort_values('year')\n",
+ "licensed_sorted['count'] = 1\n",
+ "licensed_sorted.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 84,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " <th>count</th>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>year</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " <th></th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>1999</th>\n",
+ " <th>Star Wars</th>\n",
+ " <td>7141-17150-17151-17131-17161-17130-17171-17128...</td>\n",
+ " <td>Naboo FighterTIE Fighter &amp; Y-wingSith Infiltra...</td>\n",
+ " <td>1384.0</td>\n",
+ " <td>Star Wars Episode 1Star Wars Episode 4/5/6Star...</td>\n",
+ " <td>2054</td>\n",
+ " <td>13</td>\n",
+ " <td>13</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th rowspan=\"2\" valign=\"top\">2000</th>\n",
+ " <th>Disney's Mickey Mouse</th>\n",
+ " <td>4178-14167-14166-14165-14164-1</td>\n",
+ " <td>Mickey's Fishing AdventureMickey's MansionMick...</td>\n",
+ " <td>405.0</td>\n",
+ " <td>Disney's Mickey MouseDisney's Mickey MouseDisn...</td>\n",
+ " <td>1940</td>\n",
+ " <td>5</td>\n",
+ " <td>5</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>Star Wars</th>\n",
+ " <td>7134-13341-1VP-87104-14151270-13343-13342-1712...</td>\n",
+ " <td>A-wing FighterStar Wars #2 - Luke/Han/Boba Min...</td>\n",
+ " <td>2580.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars Episode 4/5/6...</td>\n",
+ " <td>4108</td>\n",
+ " <td>26</td>\n",
+ " <td>26</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th rowspan=\"2\" valign=\"top\">2001</th>\n",
+ " <th>Harry Potter</th>\n",
+ " <td>4702-14701-14704-14705-14722-14707-14708-14709...</td>\n",
+ " <td>The Final ChallengeSorting HatThe Chamber of t...</td>\n",
+ " <td>1284.0</td>\n",
+ " <td>Sorcerer's StoneSorcerer's StoneSorcerer's Sto...</td>\n",
+ " <td>2706</td>\n",
+ " <td>11</td>\n",
+ " <td>11</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>Star Wars</th>\n",
+ " <td>7146-18008-1VP-28007-165028-165030-165034-1710...</td>\n",
+ " <td>TIE FighterStormtrooper™Star Wars Co-Pack of 7...</td>\n",
+ " <td>2949.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star WarsStar Wars Epis...</td>\n",
+ " <td>2212</td>\n",
+ " <td>14</td>\n",
+ " <td>14</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " set_num \\\n",
+ "year parent_theme \n",
+ "1999 Star Wars 7141-17150-17151-17131-17161-17130-17171-17128... \n",
+ "2000 Disney's Mickey Mouse 4178-14167-14166-14165-14164-1 \n",
+ " Star Wars 7134-13341-1VP-87104-14151270-13343-13342-1712... \n",
+ "2001 Harry Potter 4702-14701-14704-14705-14722-14707-14708-14709... \n",
+ " Star Wars 7146-18008-1VP-28007-165028-165030-165034-1710... \n",
+ "\n",
+ " name_x \\\n",
+ "year parent_theme \n",
+ "1999 Star Wars Naboo FighterTIE Fighter & Y-wingSith Infiltra... \n",
+ "2000 Disney's Mickey Mouse Mickey's Fishing AdventureMickey's MansionMick... \n",
+ " Star Wars A-wing FighterStar Wars #2 - Luke/Han/Boba Min... \n",
+ "2001 Harry Potter The Final ChallengeSorting HatThe Chamber of t... \n",
+ " Star Wars TIE FighterStormtrooper™Star Wars Co-Pack of 7... \n",
+ "\n",
+ " num_parts \\\n",
+ "year parent_theme \n",
+ "1999 Star Wars 1384.0 \n",
+ "2000 Disney's Mickey Mouse 405.0 \n",
+ " Star Wars 2580.0 \n",
+ "2001 Harry Potter 1284.0 \n",
+ " Star Wars 2949.0 \n",
+ "\n",
+ " theme_name \\\n",
+ "year parent_theme \n",
+ "1999 Star Wars Star Wars Episode 1Star Wars Episode 4/5/6Star... \n",
+ "2000 Disney's Mickey Mouse Disney's Mickey MouseDisney's Mickey MouseDisn... \n",
+ " Star Wars Star Wars Episode 4/5/6Star Wars Episode 4/5/6... \n",
+ "2001 Harry Potter Sorcerer's StoneSorcerer's StoneSorcerer's Sto... \n",
+ " Star Wars Star Wars Episode 4/5/6Star WarsStar Wars Epis... \n",
+ "\n",
+ " id is_licensed count \n",
+ "year parent_theme \n",
+ "1999 Star Wars 2054 13 13 \n",
+ "2000 Disney's Mickey Mouse 1940 5 5 \n",
+ " Star Wars 4108 26 26 \n",
+ "2001 Harry Potter 2706 11 11 \n",
+ " Star Wars 2212 14 14 "
+ ]
+ },
+ "execution_count": 84,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "summed_df = licensed_sorted.groupby(by=['year','parent_theme']).sum()\n",
+ "summed_df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 87,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>year</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " <th>count</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>1999</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7141-17150-17151-17131-17161-17130-17171-17128...</td>\n",
+ " <td>Naboo FighterTIE Fighter &amp; Y-wingSith Infiltra...</td>\n",
+ " <td>1384.0</td>\n",
+ " <td>Star Wars Episode 1Star Wars Episode 4/5/6Star...</td>\n",
+ " <td>2054</td>\n",
+ " <td>13</td>\n",
+ " <td>13</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>1</th>\n",
+ " <td>2000</td>\n",
+ " <td>Disney's Mickey Mouse</td>\n",
+ " <td>4178-14167-14166-14165-14164-1</td>\n",
+ " <td>Mickey's Fishing AdventureMickey's MansionMick...</td>\n",
+ " <td>405.0</td>\n",
+ " <td>Disney's Mickey MouseDisney's Mickey MouseDisn...</td>\n",
+ " <td>1940</td>\n",
+ " <td>5</td>\n",
+ " <td>5</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>2000</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7134-13341-1VP-87104-14151270-13343-13342-1712...</td>\n",
+ " <td>A-wing FighterStar Wars #2 - Luke/Han/Boba Min...</td>\n",
+ " <td>2580.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars Episode 4/5/6...</td>\n",
+ " <td>4108</td>\n",
+ " <td>26</td>\n",
+ " <td>26</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>3</th>\n",
+ " <td>2001</td>\n",
+ " <td>Harry Potter</td>\n",
+ " <td>4702-14701-14704-14705-14722-14707-14708-14709...</td>\n",
+ " <td>The Final ChallengeSorting HatThe Chamber of t...</td>\n",
+ " <td>1284.0</td>\n",
+ " <td>Sorcerer's StoneSorcerer's StoneSorcerer's Sto...</td>\n",
+ " <td>2706</td>\n",
+ " <td>11</td>\n",
+ " <td>11</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>2001</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7146-18008-1VP-28007-165028-165030-165034-1710...</td>\n",
+ " <td>TIE FighterStormtrooper™Star Wars Co-Pack of 7...</td>\n",
+ " <td>2949.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star WarsStar Wars Epis...</td>\n",
+ " <td>2212</td>\n",
+ " <td>14</td>\n",
+ " <td>14</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " year parent_theme \\\n",
+ "0 1999 Star Wars \n",
+ "1 2000 Disney's Mickey Mouse \n",
+ "2 2000 Star Wars \n",
+ "3 2001 Harry Potter \n",
+ "4 2001 Star Wars \n",
+ "\n",
+ " set_num \\\n",
+ "0 7141-17150-17151-17131-17161-17130-17171-17128... \n",
+ "1 4178-14167-14166-14165-14164-1 \n",
+ "2 7134-13341-1VP-87104-14151270-13343-13342-1712... \n",
+ "3 4702-14701-14704-14705-14722-14707-14708-14709... \n",
+ "4 7146-18008-1VP-28007-165028-165030-165034-1710... \n",
+ "\n",
+ " name_x num_parts \\\n",
+ "0 Naboo FighterTIE Fighter & Y-wingSith Infiltra... 1384.0 \n",
+ "1 Mickey's Fishing AdventureMickey's MansionMick... 405.0 \n",
+ "2 A-wing FighterStar Wars #2 - Luke/Han/Boba Min... 2580.0 \n",
+ "3 The Final ChallengeSorting HatThe Chamber of t... 1284.0 \n",
+ "4 TIE FighterStormtrooper™Star Wars Co-Pack of 7... 2949.0 \n",
+ "\n",
+ " theme_name id is_licensed count \n",
+ "0 Star Wars Episode 1Star Wars Episode 4/5/6Star... 2054 13 13 \n",
+ "1 Disney's Mickey MouseDisney's Mickey MouseDisn... 1940 5 5 \n",
+ "2 Star Wars Episode 4/5/6Star Wars Episode 4/5/6... 4108 26 26 \n",
+ "3 Sorcerer's StoneSorcerer's StoneSorcerer's Sto... 2706 11 11 \n",
+ "4 Star Wars Episode 4/5/6Star WarsStar Wars Epis... 2212 14 14 "
+ ]
+ },
+ "execution_count": 87,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "summed_df = summed_df.reset_index()\n",
+ "summed_df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 89,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "<div>\n",
+ "<style scoped>\n",
+ " .dataframe tbody tr th:only-of-type {\n",
+ " vertical-align: middle;\n",
+ " }\n",
+ "\n",
+ " .dataframe tbody tr th {\n",
+ " vertical-align: top;\n",
+ " }\n",
+ "\n",
+ " .dataframe thead th {\n",
+ " text-align: right;\n",
+ " }\n",
+ "</style>\n",
+ "<table border=\"1\" class=\"dataframe\">\n",
+ " <thead>\n",
+ " <tr style=\"text-align: right;\">\n",
+ " <th></th>\n",
+ " <th>year</th>\n",
+ " <th>parent_theme</th>\n",
+ " <th>set_num</th>\n",
+ " <th>name_x</th>\n",
+ " <th>num_parts</th>\n",
+ " <th>theme_name</th>\n",
+ " <th>id</th>\n",
+ " <th>is_licensed</th>\n",
+ " <th>count</th>\n",
+ " </tr>\n",
+ " </thead>\n",
+ " <tbody>\n",
+ " <tr>\n",
+ " <th>0</th>\n",
+ " <td>1999</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7141-17150-17151-17131-17161-17130-17171-17128...</td>\n",
+ " <td>Naboo FighterTIE Fighter &amp; Y-wingSith Infiltra...</td>\n",
+ " <td>1384.0</td>\n",
+ " <td>Star Wars Episode 1Star Wars Episode 4/5/6Star...</td>\n",
+ " <td>2054</td>\n",
+ " <td>13</td>\n",
+ " <td>13</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>2</th>\n",
+ " <td>2000</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7134-13341-1VP-87104-14151270-13343-13342-1712...</td>\n",
+ " <td>A-wing FighterStar Wars #2 - Luke/Han/Boba Min...</td>\n",
+ " <td>2580.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars Episode 4/5/6...</td>\n",
+ " <td>4108</td>\n",
+ " <td>26</td>\n",
+ " <td>26</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>4</th>\n",
+ " <td>2001</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7146-18008-1VP-28007-165028-165030-165034-1710...</td>\n",
+ " <td>TIE FighterStormtrooper™Star Wars Co-Pack of 7...</td>\n",
+ " <td>2949.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star WarsStar Wars Epis...</td>\n",
+ " <td>2212</td>\n",
+ " <td>14</td>\n",
+ " <td>14</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>6</th>\n",
+ " <td>2002</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>4195641-1K7153-1K7204-1K720x-18009-18010-18011...</td>\n",
+ " <td>Star Wars Co-Pack of 7142 and 7152Episode II U...</td>\n",
+ " <td>4735.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars Episode 2Star...</td>\n",
+ " <td>4424</td>\n",
+ " <td>28</td>\n",
+ " <td>28</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>9</th>\n",
+ " <td>2003</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>4481-14480-14479-14478-14476-14475-14207901-14...</td>\n",
+ " <td>Hailfire DroidJabba's PalaceTIE BomberGeonosia...</td>\n",
+ " <td>6660.0</td>\n",
+ " <td>Star WarsStar Wars Episode 4/5/6Star Wars Epis...</td>\n",
+ " <td>5056</td>\n",
+ " <td>32</td>\n",
+ " <td>32</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>12</th>\n",
+ " <td>2004</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>4501-2K10131-14502-24500-210134-14483-24495-14...</td>\n",
+ " <td>Mos Eisley Cantina, Original Trilogy Edition b...</td>\n",
+ " <td>1659.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars Episode 4/5/6...</td>\n",
+ " <td>3160</td>\n",
+ " <td>20</td>\n",
+ " <td>20</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>16</th>\n",
+ " <td>2005</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>K7283-16966-165771-16966-26965-265845-165844-1...</td>\n",
+ " <td>V-wing Space Battle CollectionJedi Starfighter...</td>\n",
+ " <td>4730.0</td>\n",
+ " <td>Star Wars Episode 3MiniStar Wars Episode 3Mini...</td>\n",
+ " <td>4424</td>\n",
+ " <td>28</td>\n",
+ " <td>28</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>20</th>\n",
+ " <td>2006</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7261-210175-110174-16205-16206-16207-16208-162...</td>\n",
+ " <td>Clone Turbo Tank (with Non-Light-Up Mace Windu...</td>\n",
+ " <td>2769.0</td>\n",
+ " <td>Star Wars Episode 3Star Wars Episode 4/5/6Star...</td>\n",
+ " <td>1738</td>\n",
+ " <td>11</td>\n",
+ " <td>11</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>24</th>\n",
+ " <td>2007</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>66221-17664-110179-110178-17665-17662-17654-17...</td>\n",
+ " <td>X-wing Fighter and Luke Pilot Maquette Co-Pack...</td>\n",
+ " <td>11361.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars OtherStar War...</td>\n",
+ " <td>2528</td>\n",
+ " <td>16</td>\n",
+ " <td>16</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>28</th>\n",
+ " <td>2008</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>20006-110186-18031-18029-18028-17668-17667-110...</td>\n",
+ " <td>Clone Turbo Tank - MiniGeneral GrievousV-19 To...</td>\n",
+ " <td>6865.0</td>\n",
+ " <td>Star Wars Episode 3Star Wars Episode 3Star War...</td>\n",
+ " <td>3634</td>\n",
+ " <td>23</td>\n",
+ " <td>23</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>32</th>\n",
+ " <td>2009</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>8016-18018-18019-166308-17752-17751-17749-1803...</td>\n",
+ " <td>Hyena Droid BomberArmored Assault Tank (AAT)Re...</td>\n",
+ " <td>3953.0</td>\n",
+ " <td>Star Wars Clone WarsStar Wars Clone WarsStar W...</td>\n",
+ " <td>6162</td>\n",
+ " <td>39</td>\n",
+ " <td>39</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>36</th>\n",
+ " <td>2010</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>8095-18097-18089-18096-18099-18129-18091-18093...</td>\n",
+ " <td>General Grievous’ StarfighterSlave I (Third Ed...</td>\n",
+ " <td>6003.0</td>\n",
+ " <td>Star Wars Clone WarsStar Wars Episode 4/5/6Sta...</td>\n",
+ " <td>4740</td>\n",
+ " <td>30</td>\n",
+ " <td>30</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>42</th>\n",
+ " <td>2011</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>7929-17965-130053-17879-130054-17931-130052-17...</td>\n",
+ " <td>The Battle of NabooMillennium FalconRepublic A...</td>\n",
+ " <td>3451.0</td>\n",
+ " <td>Star Wars Episode 1Star Wars Episode 4/5/6Star...</td>\n",
+ " <td>5056</td>\n",
+ " <td>32</td>\n",
+ " <td>32</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>47</th>\n",
+ " <td>2012</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>celebvi-110227-166431-166432-19679-19678-19677...</td>\n",
+ " <td>Boba Fett’s Slave I - Mini - Star Wars Celebra...</td>\n",
+ " <td>6769.0</td>\n",
+ " <td>Star Wars Episode 4/5/6Star Wars Episode 4/5/6...</td>\n",
+ " <td>6794</td>\n",
+ " <td>43</td>\n",
+ " <td>43</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>52</th>\n",
+ " <td>2013</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>comcon032-1MAY2013-110236-110240-175000-175010...</td>\n",
+ " <td>JEK-14 Mini Stealth Starfighter - San Diego Co...</td>\n",
+ " <td>6159.0</td>\n",
+ " <td>Star WarsStar WarsStar Wars Episode 4/5/6Star ...</td>\n",
+ " <td>5530</td>\n",
+ " <td>35</td>\n",
+ " <td>35</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>59</th>\n",
+ " <td>2014</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>TRUXWINGTIE-130244-130246-130247-1TRUTIE-1TRUG...</td>\n",
+ " <td>TRU X-Wing Fighter &amp; TIE Fighter (May 3, 2014)...</td>\n",
+ " <td>8293.0</td>\n",
+ " <td>Star Wars OtherMiniStar WarsStar WarsStar Wars...</td>\n",
+ " <td>7110</td>\n",
+ " <td>45</td>\n",
+ " <td>45</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>67</th>\n",
+ " <td>2015</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>SDCC2015-2SW911506-1SW911508-1SW911509-1SW9115...</td>\n",
+ " <td>Dagobah Mini-BuildSnowspeederMini Slave 1Imper...</td>\n",
+ " <td>11410.0</td>\n",
+ " <td>Star WarsStar Wars Episode 4/5/6MiniStar Wars ...</td>\n",
+ " <td>9164</td>\n",
+ " <td>58</td>\n",
+ " <td>58</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>76</th>\n",
+ " <td>2016</td>\n",
+ " <td>Star Wars</td>\n",
+ " <td>75130-175131-175129-175126-175114-175115-17511...</td>\n",
+ " <td>AT-DPResistance Trooper Battle PackWookiee Gun...</td>\n",
+ " <td>6934.0</td>\n",
+ " <td>Star Wars RebelsStar Wars Episode 7Star Wars R...</td>\n",
+ " <td>9638</td>\n",
+ " <td>61</td>\n",
+ " <td>61</td>\n",
+ " </tr>\n",
+ " <tr>\n",
+ " <th>82</th>\n",
+ " <td>2017</td>\n",
+ " <td>Super Heroes</td>\n",
+ " <td>5004930-15004929-1211701-141234-141233-170900-...</td>\n",
+ " <td>Accessory packBatman Battle PodBatmanBumblebee...</td>\n",
+ " <td>13123.0</td>\n",
+ " <td>BatmanBatmanBatmanSuper HeroesSuper HeroesBatm...</td>\n",
+ " <td>34704</td>\n",
+ " <td>72</td>\n",
+ " <td>72</td>\n",
+ " </tr>\n",
+ " </tbody>\n",
+ "</table>\n",
+ "</div>"
+ ],
+ "text/plain": [
+ " year parent_theme set_num \\\n",
+ "0 1999 Star Wars 7141-17150-17151-17131-17161-17130-17171-17128... \n",
+ "2 2000 Star Wars 7134-13341-1VP-87104-14151270-13343-13342-1712... \n",
+ "4 2001 Star Wars 7146-18008-1VP-28007-165028-165030-165034-1710... \n",
+ "6 2002 Star Wars 4195641-1K7153-1K7204-1K720x-18009-18010-18011... \n",
+ "9 2003 Star Wars 4481-14480-14479-14478-14476-14475-14207901-14... \n",
+ "12 2004 Star Wars 4501-2K10131-14502-24500-210134-14483-24495-14... \n",
+ "16 2005 Star Wars K7283-16966-165771-16966-26965-265845-165844-1... \n",
+ "20 2006 Star Wars 7261-210175-110174-16205-16206-16207-16208-162... \n",
+ "24 2007 Star Wars 66221-17664-110179-110178-17665-17662-17654-17... \n",
+ "28 2008 Star Wars 20006-110186-18031-18029-18028-17668-17667-110... \n",
+ "32 2009 Star Wars 8016-18018-18019-166308-17752-17751-17749-1803... \n",
+ "36 2010 Star Wars 8095-18097-18089-18096-18099-18129-18091-18093... \n",
+ "42 2011 Star Wars 7929-17965-130053-17879-130054-17931-130052-17... \n",
+ "47 2012 Star Wars celebvi-110227-166431-166432-19679-19678-19677... \n",
+ "52 2013 Star Wars comcon032-1MAY2013-110236-110240-175000-175010... \n",
+ "59 2014 Star Wars TRUXWINGTIE-130244-130246-130247-1TRUTIE-1TRUG... \n",
+ "67 2015 Star Wars SDCC2015-2SW911506-1SW911508-1SW911509-1SW9115... \n",
+ "76 2016 Star Wars 75130-175131-175129-175126-175114-175115-17511... \n",
+ "82 2017 Super Heroes 5004930-15004929-1211701-141234-141233-170900-... \n",
+ "\n",
+ " name_x num_parts \\\n",
+ "0 Naboo FighterTIE Fighter & Y-wingSith Infiltra... 1384.0 \n",
+ "2 A-wing FighterStar Wars #2 - Luke/Han/Boba Min... 2580.0 \n",
+ "4 TIE FighterStormtrooper™Star Wars Co-Pack of 7... 2949.0 \n",
+ "6 Star Wars Co-Pack of 7142 and 7152Episode II U... 4735.0 \n",
+ "9 Hailfire DroidJabba's PalaceTIE BomberGeonosia... 6660.0 \n",
+ "12 Mos Eisley Cantina, Original Trilogy Edition b... 1659.0 \n",
+ "16 V-wing Space Battle CollectionJedi Starfighter... 4730.0 \n",
+ "20 Clone Turbo Tank (with Non-Light-Up Mace Windu... 2769.0 \n",
+ "24 X-wing Fighter and Luke Pilot Maquette Co-Pack... 11361.0 \n",
+ "28 Clone Turbo Tank - MiniGeneral GrievousV-19 To... 6865.0 \n",
+ "32 Hyena Droid BomberArmored Assault Tank (AAT)Re... 3953.0 \n",
+ "36 General Grievous’ StarfighterSlave I (Third Ed... 6003.0 \n",
+ "42 The Battle of NabooMillennium FalconRepublic A... 3451.0 \n",
+ "47 Boba Fett’s Slave I - Mini - Star Wars Celebra... 6769.0 \n",
+ "52 JEK-14 Mini Stealth Starfighter - San Diego Co... 6159.0 \n",
+ "59 TRU X-Wing Fighter & TIE Fighter (May 3, 2014)... 8293.0 \n",
+ "67 Dagobah Mini-BuildSnowspeederMini Slave 1Imper... 11410.0 \n",
+ "76 AT-DPResistance Trooper Battle PackWookiee Gun... 6934.0 \n",
+ "82 Accessory packBatman Battle PodBatmanBumblebee... 13123.0 \n",
+ "\n",
+ " theme_name id is_licensed \\\n",
+ "0 Star Wars Episode 1Star Wars Episode 4/5/6Star... 2054 13 \n",
+ "2 Star Wars Episode 4/5/6Star Wars Episode 4/5/6... 4108 26 \n",
+ "4 Star Wars Episode 4/5/6Star WarsStar Wars Epis... 2212 14 \n",
+ "6 Star Wars Episode 4/5/6Star Wars Episode 2Star... 4424 28 \n",
+ "9 Star WarsStar Wars Episode 4/5/6Star Wars Epis... 5056 32 \n",
+ "12 Star Wars Episode 4/5/6Star Wars Episode 4/5/6... 3160 20 \n",
+ "16 Star Wars Episode 3MiniStar Wars Episode 3Mini... 4424 28 \n",
+ "20 Star Wars Episode 3Star Wars Episode 4/5/6Star... 1738 11 \n",
+ "24 Star Wars Episode 4/5/6Star Wars OtherStar War... 2528 16 \n",
+ "28 Star Wars Episode 3Star Wars Episode 3Star War... 3634 23 \n",
+ "32 Star Wars Clone WarsStar Wars Clone WarsStar W... 6162 39 \n",
+ "36 Star Wars Clone WarsStar Wars Episode 4/5/6Sta... 4740 30 \n",
+ "42 Star Wars Episode 1Star Wars Episode 4/5/6Star... 5056 32 \n",
+ "47 Star Wars Episode 4/5/6Star Wars Episode 4/5/6... 6794 43 \n",
+ "52 Star WarsStar WarsStar Wars Episode 4/5/6Star ... 5530 35 \n",
+ "59 Star Wars OtherMiniStar WarsStar WarsStar Wars... 7110 45 \n",
+ "67 Star WarsStar Wars Episode 4/5/6MiniStar Wars ... 9164 58 \n",
+ "76 Star Wars RebelsStar Wars Episode 7Star Wars R... 9638 61 \n",
+ "82 BatmanBatmanBatmanSuper HeroesSuper HeroesBatm... 34704 72 \n",
+ "\n",
+ " count \n",
+ "0 13 \n",
+ "2 26 \n",
+ "4 14 \n",
+ "6 28 \n",
+ "9 32 \n",
+ "12 20 \n",
+ "16 28 \n",
+ "20 11 \n",
+ "24 16 \n",
+ "28 23 \n",
+ "32 39 \n",
+ "36 30 \n",
+ "42 32 \n",
+ "47 43 \n",
+ "52 35 \n",
+ "59 45 \n",
+ "67 58 \n",
+ "76 61 \n",
+ "82 72 "
+ ]
+ },
+ "execution_count": 89,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "max_df = summed_df.sort_values(by='count',ascending=False).drop_duplicates(['year'])\n",
+ "max_df.sort_values('year', inplace=True)\n",
+ "max_df"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 90,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "new_era=2017"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 91,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Task 2. Answer: 2017\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(f'Task 2. Answer: {new_era}')"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.5"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/Data Explorartion/Lego Analysis/lego_sets.csv b/Data Explorartion/Lego Analysis/lego_sets.csv
new file mode 100644
index 0000000..63830d7
--- /dev/null
+++ b/Data Explorartion/Lego Analysis/lego_sets.csv
@@ -0,0 +1,11987 @@
+set_num,name,year,num_parts,theme_name,parent_theme
+00-1,Weetabix Castle,1970,471.0,Castle,Legoland
+0011-2,Town Mini-Figures,1978,,Supplemental,Town
+0011-3,Castle 2 for 1 Bonus Offer,1987,,Lion Knights,Castle
+0012-1,Space Mini-Figures,1979,12.0,Supplemental,Space
+0013-1,Space Mini-Figures,1979,12.0,Supplemental,Space
+0014-1,Space Mini-Figures,1979,12.0,Supplemental,Space
+0015-1,Space Mini-Figures,1979,,Supplemental,Space
+0016-1,Castle Mini Figures,1978,,Castle,Castle
+00-2,Weetabix Promotional House 1,1976,,Building,Legoland
+00-3,Weetabix Promotional House 2,1976,,Building,Legoland
+00-4,Weetabix Promotional Windmill,1976,126.0,Building,Legoland
+005-1,Basic Building Set in Cardboard,1965,35.0,Basic Set,Classic
+00-6,Special Offer,1985,3.0,Classic Town,Town
+00-7,Weetabix Promotional Lego Village,1976,,Building,Legoland
+010-1,Basic Building Set in Cardboard,1965,57.0,Basic Set,Classic
+010-3,Basic Building Set,1968,77.0,Basic Set,Classic
+011-1,Basic Building Set,1968,145.0,Basic Set,Classic
+022-1,Basic Building Set,1968,110.0,Basic Set,Classic
+03093-1,The Race to Build It Board Game,1999,,Game,Gear
+033-2,Basic Building Set,1968,,Basic Set,Classic
+044-1,Basic Building Set,1968,,Basic Set,Classic
+055-2,Basic Building Set,1968,,Basic Set,Classic
+066-1,Basic Building Set,1968,,Basic Set,Classic
+080-1,Basic Building Set with Train,1967,710.0,Basic Set,Classic
+088-1,Super Set,1969,615.0,Basic Set,Universal Building Set
+10000-1,Guarded Inn,2001,256.0,Castle,Castle
+10001-1,Metroliner,2001,,Train,Train
+10002-1,Railroad Club Car,2001,272.0,Train,Train
+10003-1,1 x 2 Sand Red Bricks,2001,100.0,Bulk Bricks,Bulk Bricks
+10004-1,2 x 2 Sand Red Bricks,2001,100.0,Bulk Bricks,Bulk Bricks
+10005-1,2 x 4 Sand Red Bricks,2001,50.0,Bulk Bricks,Bulk Bricks
+10006-1,1 x 6 Sand Red Bricks,2001,50.0,Bulk Bricks,Bulk Bricks
+10007-1,2 x 4 Sand Red Ridge Roof Tiles Steep Slope,2001,25.0,Bulk Bricks,Bulk Bricks
+10008-1,2 x 4 Roof Tile Sand Red,2001,50.0,Bulk Bricks,Bulk Bricks
+10009-1,Assorted Blue Bricks,2001,62.0,Bulk Bricks,Bulk Bricks
+100-1,4.5V Motor with Wheels (Small Version),1966,16.0,4.5V,Train
+10010-1,Assorted Yellow Bricks,2003,63.0,Bulk Bricks,Bulk Bricks
+10011-1,Assorted Blue Plates,2001,42.0,Bulk Bricks,Bulk Bricks
+10012-1,Assorted Yellow Plates,2001,,Bulk Bricks,Bulk Bricks
+10013-1,Open Freight Wagon,2001,,My Own Train,Train
+10014-1,Caboose,2001,170.0,My Own Train,Train
+10015-1,Passenger Wagon,2001,194.0,My Own Train,Train
+10016-1,Tanker,2001,128.0,My Own Train,Train
+10017-1,Hopper Wagon,2001,228.0,My Own Train,Train
+10018-1,Darth Maul,2001,1868.0,Star Wars,Star Wars
+10019-1,Rebel Blockade Runner - UCS,2001,,Star Wars Episode 4/5/6,Star Wars
+100-2,4.5V Motor with Wheels (Large Version),1966,27.0,4.5V,Train
+10020-1,"Santa Fe Super Chief, NOT the Limited Edition",2002,,9V,Train
+10020-2,"Santa Fe Super Chief, Limited Edition",2002,,9V,Train
+10021-1,U.S.S. Constellation,2003,,Hobby Sets,Hobby Sets
+10022-1,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",2002,410.0,My Own Creation,Train
+10023-1,Master Builder Set,2002,,Bionicle,Bionicle
+10024-1,Red Baron,2002,669.0,Sculptures,Sculptures
+10025-1,Santa Fe Cars - Set I (mail or baggage car),2002,,My Own Creation,Train
+10026-1,Naboo Starfighter - UCS,2002,,Star Wars Episode 1,Star Wars
+10027-1,Train Engine Shed,2003,670.0,World City,Train
+10029-1,Lunar Lander,2003,468.0,Discovery,Discovery
+10030-1,Imperial Star Destroyer - UCS,2002,3115.0,Star Wars Episode 4/5/6,Star Wars
+10036-1,Pizza To Go,2002,150.0,Food & Drink,Town
+10037-1,Breezeway Cafe,2002,194.0,Food & Drink,Town
+10039-1,Black Falcon's Fortress,2002,431.0,Castle,Castle
+10040-1,Black Seas Barracuda,2002,914.0,Pirates,Pirates
+10041-1,"Main Street, Reissue",2003,639.0,Traffic,Town
+10042-1,American Flag,2003,35.0,Seasonal,Seasonal
+10043-1,2x2 Electrical Plate,2002,,Bulk Bricks,Bulk Bricks
+10044-1,Windows and Doors,2002,,Bulk Bricks,Bulk Bricks
+10045-1,Pillars and Beams,2002,13.0,Bulk Bricks,Bulk Bricks
+10046-1,Brown Tiles,2002,100.0,Bulk Bricks,Bulk Bricks
+10047-1,Light Gray Arches,2002,,Bulk Bricks,Bulk Bricks
+10048-1,Small Wheels and Axles,2002,61.0,Bulk Bricks,Bulk Bricks
+10049-1,Large Wheels and Axles,2002,,Bulk Bricks,Bulk Bricks
+10050-1,Gray Fences,2002,34.0,Bulk Bricks,Bulk Bricks
+10051-1,Transparent Bricks,2002,,Bulk Bricks,Bulk Bricks
+10053-1,Black Slopes 33,2003,,Bulk Bricks,Bulk Bricks
+10054-1,Black Slopes 33 3 x 2 and 3 x 4,2003,,Bulk Bricks,Bulk Bricks
+10055-1,Black Slopes 33 3 x 1 and 3 x 3,2003,50.0,Bulk Bricks,Bulk Bricks
+10056-1,White Plates 2 x n,2002,,Bulk Bricks,Bulk Bricks
+10057-1,Black Plates 2 x n,2002,56.0,Bulk Bricks,Bulk Bricks
+10058-1,Red Plates 2 x n,2002,56.0,Bulk Bricks,Bulk Bricks
+10059-1,Dark Green Plates 2 x n,2002,,Bulk Bricks,Bulk Bricks
+10060-1,Light Gray Plates 2 x n,2002,,Bulk Bricks,Bulk Bricks
+10061-1,Black Plates 1 x n,2002,,Bulk Bricks,Bulk Bricks
+10062-1,Red Plates 1 x n,2002,84.0,Bulk Bricks,Bulk Bricks
+10063-1,Dark Green Plates 1 x n,2002,,Bulk Bricks,Bulk Bricks
+10064-1,Light Gray Plates 1 x n,2002,,Bulk Bricks,Bulk Bricks
+10065-1,White Plates 1 x n,2002,,Bulk Bricks,Bulk Bricks
+10066-1,Castle Accessories,2002,41.0,Castle,Bulk Bricks
+10067-1,Mini-Fig Headgear,2002,,Bulk Bricks,Bulk Bricks
+10068-1,Santa Claus,2002,,Christmas,Seasonal
+10069-1,Christmas Tree,2002,,Christmas,Seasonal
+10070-1,Reindeer,2002,,Christmas,Seasonal
+10071-1,Mr. Bunny,2003,25.0,Easter,Seasonal
+10072-1,TECHNIC Beams,2003,,Technic,Bulk Bricks
+10073-1,Bushes,2003,,Technic,Bulk Bricks
+10074-1,Cross Axles,2003,68.0,Technic,Bulk Bricks
+10075-1,Spider-Man Action Pack,2002,25.0,Spider-Man,Super Heroes
+10076-1,TECHNIC Gear Wheels,2002,38.0,Technic,Bulk Bricks
+10077-1,TECHNIC Motor,2003,55.0,Technic,Bulk Bricks
+10078-1,Train Connection Wire,2003,1.0,Train,Bulk Bricks
+10079-1,Snowman,2003,42.0,Christmas,Seasonal
+10080-1,Angel,2003,33.0,Christmas,Seasonal
+10081-1,Birthday Pack Heart,2004,70.0,Clikits,Clikits
+10082-1,Birthday Pack Daisy,2004,70.0,Clikits,Clikits
+10083-1,Birthday Pack Star,2004,,Clikits,Clikits
+10090-1,Turkey,2003,,Thanksgiving,Seasonal
+10106-1,Snowflake,2006,107.0,Christmas,Seasonal
+101-1,4.5V Battery Case,1969,,4.5V,Train
+10111-1,Foliferous Tree,2001,,Bulk Bricks,Bulk Bricks
+10112-1,Bush,2001,,Bulk Bricks,Bulk Bricks
+10113-1,Cypress Trees,2001,5.0,Bulk Bricks,Bulk Bricks
+10114-1,2 x 2 Sand Red Roof Tiles,2001,100.0,Bulk Bricks,Bulk Bricks
+10115-1,Jumper Bricks,2001,,Bulk Bricks,Bulk Bricks
+10116-1,Accessories Heart,2004,,Clikits,Clikits
+10117-1,Accessories Daisy,2004,50.0,Clikits,Clikits
+10118-1,Accessories Star,2004,,Clikits,Clikits
+10121-1,NBA Basketball Teams,2003,,Basketball,Sports
+10123-1,Cloud City,2003,707.0,Star Wars Episode 4/5/6,Star Wars
+10124-1,Wright Flyer,2003,663.0,Sculptures,Sculptures
+10127-1,NHL Action Set with Stickers,2003,56.0,Hockey,Sports
+10128-1,Train Level Crossing,2003,,World City,Train
+10129-1,Rebel Snowspeeder - UCS,2003,1456.0,Star Wars Episode 4/5/6,Star Wars
+101-3,4.5V Battery Case,1966,1.0,4.5V,Train
+10131-1,TIE Fighter Collection,2004,,Star Wars Episode 4/5/6,Star Wars
+10132-1,Motorized Hogwarts Express,2004,,Harry Potter,Harry Potter
+10133-1,Burlington Northern Santa Fe Locomotive,2004,400.0,9V,Train
+10134-1,Y-wing Attack Starfighter - UCS,2004,,Star Wars Episode 4/5/6,Star Wars
+10143-1,Death Star II,2005,,Star Wars Episode 4/5/6,Star Wars
+10144-1,Sandcrawler,2005,1679.0,Star Wars Episode 4/5/6,Star Wars
+10145-1,Assorted Light Gray Bricks,2004,124.0,Bulk Bricks,Bulk Bricks
+10146-1,Assorted Dark Gray Bricks,2004,,Bulk Bricks,Bulk Bricks
+10147-1,Assorted Brown Bricks,2004,62.0,Bulk Bricks,Bulk Bricks
+10148-1,Assorted Light Gray Plates,2004,84.0,Bulk Bricks,Bulk Bricks
+10149-1,Assorted Dark Gray Plates,2004,42.0,Bulk Bricks,Bulk Bricks
+10150-1,Assorted Brown Plates,2004,,Bulk Bricks,Bulk Bricks
+10151-1,Hot Rod,2004,,Model Team,Model Team
+10152-1,Maersk Sealand Container Ship 2004 Edition,2004,,Sculptures,Sculptures
+10152-2,Maersk Sealand Container Ship 2005 Edition,2005,982.0,Sculptures,Sculptures
+10152-3,Maersk Line Container Ship 2006 Edition,2006,,Sculptures,Sculptures
+10153-1,Electric Train Motor 9V (My Own Train),2002,,9V,Train
+10155-1,Maersk Line Container Ship 2010 Edition,2010,,Sculptures,Sculptures
+10156-1,LEGO Truck,2004,105.0,Traffic,Town
+10157-1,High Speed Train Locomotive,2004,,World City,Train
+10158-1,High Speed Train Car,2004,151.0,World City,Train
+10159-1,City Airport -City Logo Box,2004,913.0,Airport,Town
+10159-2,City Airport -Full Size Image Box,2004,913.0,Airport,Town
+10160-1,Black Ridge Roof Tiles,2004,,Bulk Bricks,Bulk Bricks
+10161-1,Black Roof Tiles,2004,76.0,Bulk Bricks,Bulk Bricks
+10162-1,Red Ridge Tiles,2004,,Bulk Bricks,Bulk Bricks
+10163-1,Red Roof Tiles,2004,76.0,Bulk Bricks,Bulk Bricks
+10165-1,Elf Boy,2004,27.0,Christmas,Seasonal
+10166-1,Elf Girl,2004,31.0,Christmas,Seasonal
+10167-1,Brickmaster Kit (with Digital Designer CD),2004,182.0,Other,Other
+10168-1,Mrs. Bunny,2005,64.0,Easter,Seasonal
+10169-1,Chicken & Chicks,2005,60.0,Easter,Seasonal
+10170-1,TTX Intermodal Double-Stack Car,2005,365.0,9V,Train
+10173-1,Holiday Train,2006,969.0,9V,Train
+10174-1,Imperial AT-ST - UCS,2006,,Star Wars Episode 4/5/6,Star Wars
+10175-1,Vader's TIE Advanced - UCS,2006,,Star Wars Episode 4/5/6,Star Wars
+10176-1,Royal King's Castle,2006,,Knights Kingdom I,Castle
+10177-1,Boeing 787 Dreamliner,2006,1196.0,Sculptures,Sculptures
+10178-1,Motorized Walking AT-AT,2007,1137.0,Star Wars Episode 4/5/6,Star Wars
+10179-1,Millennium Falcon - UCS,2007,5195.0,Star Wars Episode 4/5/6,Star Wars
+10181-1,Eiffel Tower 1:300 Scale,2007,3428.0,Sculptures,Sculptures
+10182-1,Cafe Corner,2007,,Modular Buildings,Modular Buildings
+10183-1,Hobby Train,2007,1080.0,Factory,Factory
+10184-1,Town Plan,2008,2017.0,Town Plan,Town
+10185-1,Green Grocer,2008,,Modular Buildings,Modular Buildings
+10186-1,General Grievous,2008,1084.0,Star Wars Episode 3,Star Wars
+10187-1,Volkswagen Beetle (VW Beetle),2008,,Sculptures,Sculptures
+10188-1,Death Star,2008,,Star Wars Episode 4/5/6,Star Wars
+10189-1,Taj Mahal,2008,5922.0,Sculptures,Sculptures
+10190-1,Market Street,2007,,Modular Buildings,Modular Buildings
+10191-1,Star Justice,2008,884.0,Factory,Factory
+10192-1,Space Skulls,2008,956.0,Factory,Factory
+10193-1,Medieval Market Village,2009,1616.0,Fantasy Era,Castle
+10194-1,Emerald Night,2009,,RC Train,Train
+10195-1,Republic Dropship with AT-OT,2009,,Star Wars Clone Wars,Star Wars
+10196-1,Grand Carousel,2009,3260.0,Sculptures,Sculptures
+10197-1,Fire Brigade,2009,,Modular Buildings,Modular Buildings
+10198-1,Tantive IV,2009,,Star Wars Episode 4/5/6,Star Wars
+10199-1,Winter Toy Shop,2009,,Christmas,Seasonal
+10-2,Universal Building Set,1976,129.0,Basic Set,Universal Building Set
+10200-1,Custom Car Garage,2008,,Factory,Factory
+10201-1,Takutanuva,2003,,Titans,Bionicle
+10202-1,Ultimate Dume (Limited Edition with Exclusive Mask Of Power),2004,6.0,Titans,Bionicle
+10202-2,Ultimate Dume,2004,,Titans,Bionicle
+10203-1,Voporak,2005,,Titans,Bionicle
+10204-1,Vezon & Kardas,2006,3.0,Titans,Bionicle
+10205-1,Locomotive,2002,231.0,My Own Train,Train
+102-1,4.5V Motor Set,1968,24.0,4.5V,Train
+10210-1,Imperial Flagship,2010,1656.0,Pirates II,Pirates
+10211-1,Grand Emporium,2010,,Modular Buildings,Modular Buildings
+10212-1,Imperial Shuttle - UCS,2010,,Star Wars Episode 4/5/6,Star Wars
+10213-1,Shuttle Adventure,2010,,Sculptures,Sculptures
+10213sup-1,Supplemental Pack for Shuttle Adventure Set 10213,2010,29.0,Service Packs,Service Packs
+10214-1,Tower Bridge,2010,,Sculptures,Sculptures
+10215-1,Obi-Wan's Jedi Starfighter - UCS,2010,,Star Wars Episode 2,Star Wars
+10216-1,Winter Village Bakery,2010,686.0,Christmas,Seasonal
+10217-1,Diagon Alley,2011,2031.0,Harry Potter,Harry Potter
+10218-1,Pet Shop,2011,2034.0,Modular Buildings,Modular Buildings
+10219-1,Maersk Container Train,2011,1232.0,RC Train,Train
+10220-1,Volkswagen T1 Camper Van,2011,,Sculptures,Sculptures
+10221-1,Super Star Destroyer,2011,,Star Wars Episode 4/5/6,Star Wars
+10222-1,Winter Village Post Office,2011,821.0,Christmas,Seasonal
+10223-1,Kingdoms Joust,2012,1574.0,Kingdoms,Castle
+10224-1,Town Hall,2012,,Modular Buildings,Modular Buildings
+10225-1,R2-D2,2012,2130.0,Ultimate Collector Series,Star Wars
+10226-1,Sopwith Camel,2012,877.0,Sculptures,Sculptures
+10227-1,B-wing Starfighter,2012,,Star Wars Episode 4/5/6,Star Wars
+10228-1,Haunted House,2012,2062.0,Monster Fighters,Monster Fighters
+10229-1,Winter Village Cottage,2012,1490.0,Christmas,Seasonal
+10230-1,Mini Modulars,2012,,Mini,Modular Buildings
+10231-1,Shuttle Expedition,2011,1229.0,Sculptures,Sculptures
+10232-1,Palace Cinema,2013,2193.0,Modular Buildings,Modular Buildings
+10233-1,Horizon Express,2013,1349.0,RC Train,Train
+10234-1,Sydney Opera House,2013,,Sculptures,Sculptures
+10235-1,Winter Village Market [Initial Release],2013,,Christmas,Seasonal
+10236-1,Ewok Village,2013,2023.0,Star Wars Episode 4/5/6,Star Wars
+10237-1,The Tower of Orthanc,2013,,The Two Towers,The Hobbit and Lord of the Rings
+10240-1,Red Five X-Wing Starfighter,2013,,Star Wars Episode 4/5/6,Star Wars
+10241-1,Maersk Line Triple-E,2014,1515.0,Model,Creator
+10242-1,Mini Cooper,2014,,Creator,Creator
+10242-2,Mini Cooper,2015,1076.0,Creator,Creator
+10243-1,Parisian Restaurant,2014,,Modular Buildings,Modular Buildings
+10244-1,Fairground Mixer,2014,,Creator,Creator
+10245-1,Santa’s Workshop,2014,,Creator,Seasonal
+1024601-1,Adventurers Value Pack (TRU Exclusive),2001,3.0,Desert,Adventurers
+10246-1,Detective’s Office,2015,2261.0,Modular Buildings,Modular Buildings
+10247-1,Ferris Wheel,2015,2463.0,Creator,Creator
+10248-1,Ferrari F40,2015,,Creator,Creator
+10249-1,Winter Toy Shop,2015,,Christmas,Seasonal
+10250-1,Year Of The Snake,2013,244.0,Creator,Creator
+10251-1,Brick Bank,2016,2383.0,Modular Buildings,Modular Buildings
+10252-1,Volkswagen Beetle,2016,,Creator,Creator
+10253-1,Big Ben,2016,4166.0,Building,Creator
+10254-1,Winter Holiday Train,2016,,Christmas,Seasonal
+10255-1,Assembly Square,2017,4009.0,Modular Buildings,Modular Buildings
+10257-1,Carousel,2017,2669.0,Creator,Creator
+10258-1,London Bus,2017,,Creator,Creator
+10285-1,Compass Sensor for Mindstorms NXT,2011,1.0,NXT,Mindstorms
+10287-1,Intelligent NXT Brick (Black),2009,1.0,NXT,Mindstorms
+1029-1,Milk Delivery Truck - Tine,1999,90.0,Food & Drink,Town
+102A-1,Front-End Loader,1970,64.0,Construction,Legoland
+102A-2,Front-End Loader,1970,,Construction,Legoland
+10-3,Locomotive Wheels,1977,8.0,Train,Service Packs
+1030-1,TECHNIC I: Simple Machines Set,1985,,Technic,Technic
+103-1,4.5V Motor Set with Rubber Tracks,1969,24.0,Supplemental,Universal Building Set
+1031-1,Building Cards - 1030,1983,20.0,Supplemental,Educational and Dacta
+1032-1,TECHNIC II Set {4.5v},1985,279.0,Technic,Technic
+1033-1,Building Cards - 1032,1985,20.0,Supplemental,Educational and Dacta
+1034-1,Teachers Resource Set,1985,,Supplemental,Educational and Dacta
+1038-1,ERBIE the Robo-Car,1985,120.0,Technic,Technic
+1039-1,Manual Control Set 1,1986,39.0,Technic,Technic
+104-1,Replacement 4.5V Motor,1970,,4.5V,Train
+1045-2,Educational LEGO Building Set,1976,,Building Set with People,Educational and Dacta
+1049-1,Ships - 247 elements and 1 poster,1985,238.0,Boat,Educational and Dacta
+10500-1,Horse Stable,2013,44.0,Duplo,Duplo
+10501-1,Zoo friends,2013,5.0,Duplo,Duplo
+10504-1,My First Circus,2013,62.0,Duplo,Duplo
+10505-1,Play House,2013,83.0,Duplo,Duplo
+10506-1,Train Accessory Set,2013,24.0,Duplo,Duplo
+10507-1,My First Train Set,2013,,Duplo,Duplo
+10508-1,Deluxe Train Set,2013,,Duplo,Duplo
+10509-1,Dusty and Chug,2013,16.0,Duplo,Duplo
+105-1,Canada Post Truck,1984,,Post Office,Town
+10510-1,Ripslinger's Air Race,2013,40.0,Duplo,Duplo
+10511-1,Skipper's Flight School,2013,,Duplo,Duplo
+10512-1,Jake's Treasure Hunt,2013,22.0,Duplo,Duplo
+10513-1,Never Land Hideout,2013,37.0,Duplo,Duplo
+10514-1,Jake's Pirate Ship Bucky,2013,56.0,Duplo,Duplo
+10515-1,Ariel's Undersea Castle,2013,,Duplo,Duplo
+10516-1,Ariel's Magical Boat Ride,2012,,Duplo,Duplo
+10517-1,My First Garden,2013,,Duplo,Duplo
+10518-1,My First Construction Site,2013,,Duplo,Duplo
+105-2,Building Set,1973,,Basic Set,Universal Building Set
+10520-1,Big Front Loader,2013,,Duplo,Duplo
+10521-1,Baby Calf,2014,9.0,Duplo,Duplo
+10522-1,Farm Animals,2014,12.0,Duplo,Duplo
+10524-1,Farm Tractor,2014,29.0,Duplo,Duplo
+10525-1,Big Farm,2014,,Duplo,Duplo
+10526-1,Peter Pan's Visit,2014,,Duplo,Duplo
+10527-1,Ambulance,2014,14.0,Duplo,Duplo
+10528-1,School Bus,2014,,Duplo,Duplo
+10529-1,Truck,2014,,Duplo,Duplo
+1053-1,Community Buildings,1984,,Town,Educational and Dacta
+10531-1,Mickey Mouse and Friends,2012,,Duplo,Duplo
+10532-1,My First Police Set,2014,39.0,Duplo,Duplo
+10538-1,Fire and Rescue Team,2014,30.0,Cars,Duplo
+10539-1,Beach Racing,2014,,Duplo,Duplo
+1054-1,Stena Line Ferry,1999,211.0,Ferries,Universal Building Set
+10542-1,Sleeping Beauty's Fairy Tale,2014,55.0,Disney Princess,Disney Princess
+10543-1,Superman™ Rescue,2014,,Duplo,Duplo
+10544-1,The Joker Challenge,2014,40.0,Duplo,Duplo
+10545-1,Batcave Adventure,2014,,Duplo,Duplo
+10546-1,My First Shop,2014,39.0,Duplo,Duplo
+10550-1,Circus Transport,2013,9.0,Duplo,Duplo
+10552-1,Creative Cars,2013,42.0,Duplo,Duplo
+10553-1,Toddler Build and Play Cubes,2013,,Basic Set,Duplo
+10554-1,Toddler Build and Pull Along,2013,15.0,Basic Set,Duplo
+10555-1,Creative Bucket,2013,65.0,Basic Set,Duplo
+10557-1,Giant Tower,2013,,Duplo,Duplo
+10558-1,Number Train,2013,,Duplo,Duplo
+1056-1,Basic School Pack - 773 elements with teacher's manual,1985,785.0,Universal Building Set,Educational and Dacta
+10561-1,Toddler Starter Building Set,2013,37.0,Basic Set,Duplo
+10565-1,LEGO® DUPLO® Creative Suitcase,2014,135.0,Duplo,Duplo
+10566-1,Creative Picnic,2014,52.0,Duplo,Duplo
+10567-1,Toddler Build and Boat Fun,2014,18.0,Duplo,Duplo
+10568-1,Knight Tournament,2014,16.0,Duplo,Duplo
+10569-1,Treasure Attack,2014,,Duplo,Duplo
+10570-1,LEGO® DUPLO® All-in-One-Gift-Set,2014,30.0,Duplo,Duplo
+10571-1,All-in-One-Pink-Box-of-Fun,2014,65.0,Duplo,Duplo
+10572-1,All-in-One-Box-of-Fun,2014,65.0,Duplo,Duplo
+10573-1,Creative Animals,2014,25.0,Duplo,Duplo
+10574-1,Creative Ice Cream,2014,24.0,Duplo,Duplo
+10575-1,Duplo Creative Building Cube,2014,,Duplo,Duplo
+10576-1,Zoo Care,2014,9.0,Duplo,Duplo
+10577-1,Big Royal Castle,2014,135.0,Duplo,Duplo
+10579-1,Clubhouse Café,2014,16.0,Duplo,Duplo
+10580-1,Deluxe Box of Fun,2014,,Duplo,Duplo
+10581-1,Forest: Ducks,2015,,Duplo,Duplo
+10582-1,Forest: Animals,2015,,Duplo,Duplo
+10583-1,Forest: Fishing Trip,2015,,Duplo,Duplo
+10584-1,Forest: Park,2015,105.0,Duplo,Duplo
+10585-1,Mom and Baby,2015,13.0,Duplo,Duplo
+10586-1,Ice Cream Truck,2015,,Duplo,Duplo
+10587-1,Café,2015,,Duplo,Duplo
+10589-1,Rally Car,2015,,Duplo,Duplo
+10590-1,Airport,2015,29.0,Duplo,Duplo
+10591-1,Fire Boat,2015,19.0,Duplo,Duplo
+10592-1,Fire Truck,2015,26.0,Duplo,Duplo
+10593-1,Fire Station,2015,104.0,Duplo,Duplo
+10594-1,Sofia the First™ Royal Stable,2015,38.0,Duplo,Duplo
+10595-1,Sofia the First™ Royal Castle,2015,87.0,Duplo,Duplo
+10596-1,Disney Princess™ Collection,2015,63.0,Duplo,Duplo
+10597-1,Mickey & Minnie Birthday Parade,2015,,Duplo,Duplo
+10599-1,Batman Adventure,2015,46.0,Duplo,Duplo
+10600-1,Disney • Pixar Cars™ Classic Race,2015,,Cars,Duplo
+1060-1,Road Plates and Signs,1981,30.0,Town,Educational and Dacta
+10601-1,Delivery Vehicle,2015,19.0,Duplo,Duplo
+10602-1,Camping,2015,37.0,Duplo,Duplo
+10603-1,My First Bus,2015,,Duplo,Duplo
+10604-1,Jake and the Never Land Pirates Treasure Island,2015,25.0,Duplo,Duplo
+10605-1,Doc McStuffins Rosie the Ambulance,2015,16.0,Duplo,Duplo
+10606-1,Doc McStuffins Backyard Clinic,2015,39.0,Duplo,Duplo
+10607-1,Spider-Man Web-Bike Workshop,2015,13.0,Duplo,Duplo
+10608-1,Spider-Man Spider Truck Adventure,2015,28.0,Duplo,Duplo
+106-1,UNICEF Van,1985,59.0,Off-Road,Town
+1061-1,Single Disk Pack,2000,,Throwbot Slizer,Technic
+10615-1,My First Tractor,2015,12.0,Duplo,Duplo
+10616-1,My First Playhouse,2015,25.0,Duplo,Duplo
+10617-1,My First Farm,2015,,Duplo,Duplo
+10618-1,LEGO® DUPLO® Creative Building Box,2015,69.0,Duplo,Duplo
+1062-1,{Town Vehicles},1980,,Town,Educational and Dacta
+10622-1,Large Creative Box,2015,193.0,Duplo,Duplo
+10623-1,Basic Bricks – Large,2015,0.0,Basic Set,Duplo
+1063-1,Community Workers,1985,,Town,Educational and Dacta
+1064-1,Dacta Buildings,1981,419.0,Town,Educational and Dacta
+1065-1,House Accessories - 182 elements,1985,196.0,Universal Building Set,Educational and Dacta
+10654-1,XL Creative Brick Box,2016,1599.0,Classic,Classic
+10655-1,Monster Trucks,2013,,Basic Set,Creator
+10656-1,My First LEGO Princess,2013,88.0,Creator,Creator
+10657-1,My First LEGO Set,2013,,Basic Set,Creator
+10659-1,Blue Suitcase,2013,152.0,Basic Set,Creator
+10660-1,Pink Suitcase,2013,,Basic Set,Creator
+1066-1,36 Little People + Accessories,1982,,Town,Educational and Dacta
+10661-1,My First LEGO Fire Station,2013,,Creator,Creator
+10662-1,LEGO Creative Bucket,2013,,Basic Set,Creator
+10663-1,LEGO Creative Chest,2013,607.0,Creator,Creator
+10664-1,Creative Tower,2013,,Creator,Creator
+10665-1,Spider-Man: Spider-Car Pursuit,2014,55.0,Juniors,Juniors
+10666-1,Digger,2014,,Juniors,Juniors
+10667-1,Construction,2014,159.0,Juniors,Juniors
+10668-1,The Princess Play Castle,2014,149.0,Juniors,Juniors
+10669-1,Turtle Lair,2014,107.0,Juniors,Juniors
+1067-1,Community Vehicles,1988,251.0,Educational and Dacta,Educational and Dacta
+10671-1,Fire Emergency,2014,,Juniors,Juniors
+10672-1,Batman: Defend the Batcave,2014,,Juniors,Juniors
+10673-1,Race Car Rally,2014,,Juniors,Juniors
+10674-1,Pony Farm,2014,305.0,Juniors,Juniors
+10675-1,Police – The Big Escape,2014,,Juniors,Juniors
+10676-1,Knights’ Castle,2014,479.0,Juniors,Juniors
+10677-1,Beach Excursion,2015,,Juniors,Juniors
+10679-1,Pirate Treasure Hunt,2015,,Juniors,Juniors
+10680-1,Garbage Truck,2015,99.0,Juniors,Juniors
+1068-1,Air Patrol,1999,20.0,Extreme Team,Town
+10681-1,Creative Building Cube,2014,599.0,Basic Set,Creator
+10682-1,Creative Suitcase,2014,1016.0,Basic Set,Creator
+10683-1,Road Work Truck,2015,,Juniors,Juniors
+10684-1,Supermarket Suitcase,2015,,Juniors,Juniors
+10685-1,Fire Suitcase,2015,113.0,Juniors,Juniors
+10686-1,Family House,2015,226.0,Juniors,Juniors
+10687-1,Spider-Man™ Hideout,2015,137.0,Juniors,Juniors
+1069-1,Speedboat,1999,22.0,Harbor,Town
+10692-1,Creative Bricks,2015,,Basic Set,Classic
+10693-1,Creative Supplement,2015,,Basic Set,Classic
+10693-1-s1,Rocket,2015,,Classic,Classic
+10694-1,Creative Supplement Bright,2015,,Basic Set,Classic
+10695-1,Creative Building Box,2015,579.0,Basic Set,Classic
+10696-1,Medium Creative Brick Box,2015,483.0,Basic Set,Classic
+10697-1,XXXL Box,2015,,Classic,Classic
+10698-1,Large Creative Brick Box,2015,,Basic Set,Classic
+10699-1,Sand Baseplate,2015,1.0,Classic,Classic
+10700-1,Green Baseplate,2015,,Classic,Classic
+1070-1,Stunt Flyer,1999,,Extreme Team,Town
+10701-1,Gray Baseplate,2015,1.0,Classic,Classic
+10702-1,Creative Building Set,2016,582.0,Classic,Classic
+10703-1,Creative Builder Box,2017,498.0,Classic,Classic
+10704-1,Creative Box,2017,900.0,Classic,Classic
+10705-1,Creative Building Basket,2016,999.0,Basic Set,Classic
+10706-1,Blue Creative Box,2017,78.0,Classic,Classic
+10707-1,Red Creative Box,2017,55.0,Classic,Classic
+10708-1,Green Creative Box,2017,66.0,Classic,Classic
+10709-1,Orange Creative Box,2017,60.0,Classic,Classic
+107-1,4.5V Motor Set,1976,,Supplemental,Universal Building Set
+107-2,Canada Post Mail Truck,1985,,Post Office,Town
+10720-1,Police Helicopter Chase,2016,63.0,Juniors,Juniors
+10721-1,Iron Man vs Loki,2016,,Juniors,Juniors
+10722-1,Snake Showdown,2016,92.0,Juniors,Juniors
+10723-1,Ariel's Dolphin Carriage,2016,70.0,Disney Princess,Juniors
+10724-1,Batman & Superman vs. Lex Luthor,2016,,Super Heroes,Super Heroes
+10725-1,Lost Temple,2016,,Juniors,Juniors
+10726-1,Stephanie's Horse Carriage,2016,58.0,Animals,Friends
+10727-1,Emma's Ice Cream Truck,2016,,Friends,Friends
+10728-1,Mia's Vet Clinic,2016,182.0,Friends,Friends
+10729-1,Cinderella's Carriage,2016,116.0,Juniors,Juniors
+10734-1,Demolition Site,2017,175.0,Juniors,Juniors
+10735-1,Police Truck Chase,2017,90.0,Juniors,Juniors
+10736-1,Anna & Elsa's Frozen Playground,2017,,Juniors,Juniors
+10737-1,Batman vs. Mr. Freeze,2017,,Juniors,Juniors
+10738-1,Snow White's Forest Cottage,2017,,Disney Princess,Juniors
+10739-1,Shark Attack,2017,,Nijago,Juniors
+10740-1,Fire Patrol Suitcase,2017,,Juniors,Juniors
+10746-1,Mia's Farm Suitcase,2017,104.0,Friends,Juniors
+10747-1,Andrea and Stephanie's Beach Holiday,2017,143.0,Juniors,Juniors
+1075-1,LEGO People Supplementary Set,1980,,Building Set with People,Educational and Dacta
+1076-1,Advent Calendar 1999,1999,,Advent,Seasonal
+1076-10,Advent Calendar 1999 (Day 9) Fire Engine,1999,10.0,Advent Sub-Set,Seasonal
+1076-11,Advent Calendar 1999 (Day 10) Santa Minifig,1999,,Advent Sub-Set,Seasonal
+1076-12,Advent Calendar 1999 (Day 11) Dog,1999,8.0,Advent Sub-Set,Seasonal
+1076-13,Advent Calendar 1999 (Day 12) Hippo,1999,,Advent Sub-Set,Seasonal
+1076-14,Advent Calendar 1999 (Day 13) Hovercraft,1999,10.0,Advent Sub-Set,Seasonal
+1076-15,Advent Calendar 1999 (Day 14) Penguin,1999,,Advent Sub-Set,Seasonal
+1076-16,Advent Calendar 1999 (Day 15) Elf,1999,,Advent Sub-Set,Seasonal
+1076-17,Advent Calendar 1999 (Day 16) Seaplane,1999,,Advent Sub-Set,Seasonal
+1076-18,Advent Calendar 1999 (Day 17) Gentleman,1999,,Advent Sub-Set,Seasonal
+1076-19,Advent Calendar 1999 (Day 18) Elephant,1999,10.0,Advent Sub-Set,Seasonal
+1076-2,Advent Calendar 1999 (Day 1) Plane,1999,11.0,Advent Sub-Set,Seasonal
+1076-20,Advent Calendar 1999 (Day 19) Sea Plane,1999,,Advent Sub-Set,Seasonal
+1076-21,Advent Calendar 1999 (Day 20) Cow,1999,10.0,Advent Sub-Set,Seasonal
+1076-22,Advent Calendar 1999 (Day 21) Police Car,1999,11.0,Advent Sub-Set,Seasonal
+1076-23,Advent Calendar 1999 (Day 22) Dog with Red Hat,1999,12.0,Advent Sub-Set,Seasonal
+1076-24,Advent Calendar 1999 (Day 23) Police Helicopter,1999,,Advent Sub-Set,Seasonal
+1076-25,Advent Calendar 1999 (Day 24) Santa,1999,11.0,Advent Sub-Set,Seasonal
+1076-3,Advent Calendar 1999 (Day 2) Snowman,1999,,Advent Sub-Set,Seasonal
+1076-4,Advent Calendar 1999 (Day 3) Speedboat,1999,,Advent Sub-Set,Seasonal
+1076-5,Advent Calendar 1999 (Day 4) Girl,1999,8.0,Advent Sub-Set,Seasonal
+1076-6,Advent Calendar 1999 (Day 5) Sailboat,1999,,Advent Sub-Set,Seasonal
+1076-7,Advent Calendar 1999 (Day 6) Reindeer,1999,12.0,Advent Sub-Set,Seasonal
+1076-8,Advent Calendar 1999 (Day 7) Plane,1999,10.0,Advent Sub-Set,Seasonal
+1076-9,Advent Calendar 1999 (Day 8) Girl,1999,8.0,Advent Sub-Set,Seasonal
+1077-1,Supplementary Set,1976,170.0,Supplemental,Educational and Dacta
+10801-1,Baby Animals,2016,13.0,Duplo,Duplo
+10802-1,Savanna,2016,,Duplo,Duplo
+10803-1,Arctic,2016,34.0,Duplo,Duplo
+10804-1,Jungle,2016,86.0,Duplo,Duplo
+10805-1,Around the World,2016,148.0,Duplo,Duplo
+10806-1,Horses,2016,20.0,Duplo,Duplo
+10807-1,Horse Trailer,2016,,Duplo,Duplo
+10808-1,Little Plane,2016,13.0,Duplo,Duplo
+10809-1,Police Patrol,2017,15.0,Duplo,Duplo
+108-1,Battery Box,1976,,4.5V,Train
+10810-1,Push Train,2016,46.0,Duplo,Duplo
+10811-1,Backhoe Loader,2017,,Duplo,Duplo
+10812-1,Truck & Tracked Excavator,2017,26.0,Duplo,Duplo
+10813-1,Big Construction Site,2016,,Duplo,Duplo
+10814-1,Tow Truck Set,2016,,Duplo,Duplo
+10815,My First Rocket,2016,,Duplo,Duplo
+10816-1,My First Cars and Trucks,2016,36.0,Duplo,Duplo
+10817-1,DUPLO Creative Chest,2016,,Duplo,Duplo
+10818-1,My First Truck,2016,29.0,Duplo,Duplo
+10819-1,My First Garden,2016,25.0,Duplo,Duplo
+10820-1,"Lego Duplo Creative Building Basket, Multi Color",2016,,Duplo,Duplo
+10822-1,Sofia the First Magical Carriage,2016,30.0,Duplo,Duplo
+10823-1,Batwing Adventure,2017,,Duplo,Duplo
+10824-1,Miles' Space Adventures,2017,23.0,Duplo,Duplo
+10825-1,Miles' Exo-Flex Suit,2016,37.0,Duplo,Duplo
+10826-1,Miles' Stellosphere Hangar,2017,,Duplo,Duplo
+10827-1,Mickey and Friends Beach House,2016,,Duplo,Duplo
+10828-1,Doc McStuffins Pet Vet Care,2016,30.0,Duplo,Duplo
+10829-1,Mickey's Workshop,2016,18.0,Duplo,Duplo
+10830-1,Minnie's Cafe,2016,27.0,Duplo,Duplo
+1083-1,Supplementary Pack,1986,,Universal Building Set,Educational and Dacta
+10831-1,My First Caterpillar,2016,,Duplo,Duplo
+10832-1,Birthday Picnic,2017,,Duplo,Duplo
+10833-1,Preschool,2017,,Duplo,Duplo
+10834-1,Pizzeria,2017,,Duplo,Duplo
+10835-1,Family House,2017,68.0,Duplo,Duplo
+10836-1,Town Square,2017,97.0,Duplo,Duplo
+10837-1,Santa's Winter Holiday,2017,45.0,Duplo,Duplo
+10838-1,Family Pets,2017,15.0,Duplo,Duplo
+10839-1,Shooting Gallery,2017,,Duplo,Duplo
+10840-1,Big Fair,2017,,Duplo,Duplo
+10841-1,Fun Family Fair,2017,,Duplo,Duplo
+10843-1,Mickey Racer,2017,14.0,Duplo,Duplo
+10844-1,Minnie Mouse Bow-tique,2017,68.0,Duplo,Duplo
+10845-1,My First Carousel,2017,,Duplo,Duplo
+10847-1,My First Number Train,2017,21.0,Duplo,Duplo
+10848-1,My First Bricks,2017,,Duplo,Duplo
+10849-1,My First Plane,2017,10.0,Duplo,Duplo
+10850-1,My First Cakes,2017,,Duplo,Duplo
+10851-1,My First Bus,2017,,Duplo,Duplo
+10852-1,My First Bird,2017,,Duplo,Duplo
+10855-1,Cinderella s Magical Castle,2017,,Duplo,Duplo
+1088-1,Road Burner,1999,,Extreme Team,Town
+1089-1,Lego Basic Figures - 24 elements,1985,24.0,Universal Building Set,Educational and Dacta
+1090-1,TECHNIC Control I,1986,,Technic,Technic
+1092-1,TECHNIC Control II,1986,467.0,Technic,Technic
+10937-1,Arkham Asylum Breakout,2012,1619.0,Batman,Super Heroes
+1094-1,Johnny Thunder,1999,13.0,Desert,Adventurers
+1095-1,Super Sub,1999,24.0,Aquasharks,Aquazone
+1096-1,Race Buggy,1997,23.0,Race,Town
+1097-1,Res-Q Runner,1999,,Res-Q,Town
+1098-1,Hang Glider,1998,,Extreme Team,Town
+1099-1,Ninja Blaster,1999,24.0,Ninja,Ninja
+1-10,Mini-Wheel Model Maker No. 1,1971,88.0,Vehicle,Legoland
+1100-1,Sky Pirates,2001,110.0,Airport,Town
+110-1,Universal Building Set,1977,,Basic Set,Universal Building Set
+1101-1,Replacement 4.5V Motor,1977,,Service Packs,Service Packs
+1102-1,Motor Bushes,1977,,Train,Service Packs
+1103-1,Battery Box,1977,1.0,Service Packs,Service Packs
+1103-2,DNA Student Set,2008,521.0,Learning,Educational and Dacta
+1104-1,Battery Cables (75cm),1977,2.0,Service Packs,Service Packs
+1105-1,Crawler Tracks,1977,2.0,Service Packs,Service Packs
+1106-1,Battery Tender,1977,,Train,Service Packs
+1106-2,Basic Building Set,1999,,Classic Basic,Universal Building Set
+1107-1,Signal and Direction-Change Switch,1977,4.0,Train,Service Packs
+1108-1,Magnetic Couplings,1977,4.0,Train,Service Packs
+1109-1,Magnetic Couplings for Railway Car,1977,4.0,Train,Service Packs
+1-11,Basic Souvenir Box,1981,36.0,Basic Set,Universal Building Set
+1110-1,Train Wheels,1977,,Train,Service Packs
+111-1,Universal Building Set,1977,173.0,Basic Set,Universal Building Set
+1111-1,Rubber Rims for Locomotive Wheels,1977,,Train,Service Packs
+111-2,Starter Train Set without Motor,1966,,4.5V,Train
+1112-1,Train Sliding Wheel Blocks,1977,2.0,Train,Service Packs
+1113-1,Motor Frame and Couplers,1977,,Service Packs,Service Packs
+1114-1,Motor Frame,1977,1.0,Service Packs,Service Packs
+1115-1,4.5V Lighting Brick (2 x 2),1977,1.0,Service Packs,Service Packs
+1116-1,"Chain Links, Small",1977,25.0,Service Packs,Service Packs
+1118-1,"Boat Weight, Red",1977,1.0,Service Packs,Service Packs
+1119-1,Locomotive Piston Assemblies,1977,6.0,Train,Service Packs
+11-2,Small Pre-School Basic Set,1973,,Minitalia,Minitalia
+1120-1,Tires (42 mm),1977,2.0,Service Packs,Service Packs
+112-1,Universal Building Set,1977,200.0,Basic Set,Universal Building Set
+1121-1,"Propellers, Wheels and Rotor Unit",1977,,Service Packs,Service Packs
+112-2,Locomotive with Motor,1966,,4.5V,Train
+1122-1,Hinges,1977,,Service Packs,Service Packs
+1123-1,"Ball and Socket Couplings, Articulated Joint",1977,,Service Packs,Service Packs
+1124-1,Digger Bucket,1977,,Service Packs,Service Packs
+1125-1,Crane Grab,1977,3.0,Service Packs,Service Packs
+1126-1,"Jack Complete Assembly, Blue",1983,,Service Packs,Service Packs
+1127-1,Santa,1999,39.0,Christmas,Seasonal
+1128-1,Santa on Skis,1997,21.0,Christmas,Seasonal
+1129-1,Storage Cloth (Spread Bag),1980,1.0,Supplemental,Universal Building Set
+1129-2,Santa on Reindeer,1999,,Christmas,Seasonal
+11-3,Locomotive Traction Tires,1977,8.0,Train,Service Packs
+1130-1,Storage Folder for Building Instructions (16 Internal Pockets),1980,1.0,Service Packs,Service Packs
+113-1,Universal Building Set,1977,,Basic Set,Universal Building Set
+1131-1,Tires (42 mm) and Hubs,1981,4.0,Technic,Service Packs
+113-2,Motorized Train Set,1966,344.0,4.5V,Train
+1132-1,Hinges,1981,8.0,Service Packs,Service Packs
+1133-1,Brick Hinges,1981,8.0,Service Packs,Service Packs
+1134-1,Battery Wagon,1981,2.0,Train,Service Packs
+1135-1,"Battery Cable Kit: 12 Connectors, 3m Cable",1981,13.0,Service Packs,Service Packs
+1135-2,"Battery Cable Kit: 16 Connectors, 3m Cable",1981,17.0,Service Packs,Service Packs
+1135-3,"Battery Cable Kit: 20 Connectors, 3m Cable",1981,,Service Packs,Service Packs
+1136-1,"Buffers, Magnetic Couplers",1981,,Train,Service Packs
+1137-1,Train Couplings,1981,4.0,Train,Service Packs
+1138-1,Replacement Rubber Wheel Treads for Trains,1981,8.0,Train,Service Packs
+1139-1,Motor-Mount Plate with Magnetic Couplers,1981,,Train,Service Packs
+1140-1,12V Light Bricks,1981,,Service Packs,Service Packs
+114-1,Universal Building Set,1977,,Basic Set,Universal Building Set
+1141-1,Wheel Bricks with Small Red Train Wheels,1981,2.0,Train,Service Packs
+114-2,Small Train Set,1966,,4.5V,Train
+1142-1,Wheel Bricks with Small Black Train-Wheels,1981,,Train,Service Packs
+1143-1,Wheel Bricks with Large Red Train Wheels,1981,2.0,Train,Service Packs
+1144-1,Train Baseplate,1981,,Train,Service Packs
+1145-1,Bogie Plate,1981,,Train,Service Packs
+1146-1,"Pushrods, Cylinder Housings",1981,,Train,Service Packs
+1147-1,"Light Prisms & Holder, Red/Yellow Light Covers",1981,7.0,Train,Service Packs
+1148-1,Differential,1981,,Technic,Service Packs
+1149-1,Air Police,2002,24.0,Police,Town
+1149-2,Bulldozer Chainlinks,1982,52.0,Technic,Service Packs
+1150-1,Replacement Motor 12V,1977,,Service Packs,Service Packs
+115-1,Building Set,1973,,Basic Set,Universal Building Set
+1151-1,Train Power Pick-Up Blocks,1977,2.0,Train,Service Packs
+115-2,Starter Train Set with Motor,1966,,4.5V,Train
+1152-1,Electric Wire,1977,2.0,Train,Service Packs
+1154-1,Battery Control Unit,1986,,Technic,Service Packs
+1160-1,"TECHNIC Pneumatic Tubing, 40cm +100cm",1985,,Technic,Service Packs
+116-1,Starter Train Set with Motor,1967,,4.5V,Train
+1161-1,TECHNIC Pneumatic Pump Cylinder 48mm,1985,1.0,Technic,Service Packs
+116-2,Deluxe Motorized Train Set,1968,,4.5V,Train
+1162-1,TECHNIC Pneumatic Piston Cylinder 48mm,1985,1.0,Technic,Service Packs
+1163-1,TECHNIC Pneumatic Piston Cylinder 60mm,1985,1.0,Technic,Service Packs
+1164-1,TECHNIC Pneumatic 2 Way Valve and Nonreturn Valve,1985,2.0,Technic,Service Packs
+1168-1,Battery Box,1986,1.0,Technic,Technic
+1169-1,Bogie Plates,1986,,Train,Service Packs
+1170-1,Replacement Train Battery Tender,1986,2.0,Train,Service Packs
+117-1,Locomotive without Motor,1967,99.0,4.5V,Train
+1171-1,Lighting Brick with Red and Blue Globes,1986,5.0,Service Packs,Service Packs
+1172-1,Colored Globes,1986,5.0,Service Packs,Service Packs
+1174-1,Motorhome for Basic Motor 4.5V/Train Motor 12V,1986,2.0,Service Packs,Service Packs
+1175-1,4.5v TECHNIC Motor,1982,1.0,Technic,Service Packs
+1176-1,Gear Racks and Turntables,1978,6.0,Technic,Service Packs
+1177-1,Santa In Truck with Polar Bear,2000,,Christmas,Seasonal
+1178-1,"Siren, Black",1986,1.0,Service Packs,Service Packs
+1179-1,Replacement Space Siren,1986,1.0,Service Packs,Service Packs
+1180-1,Space Port Moon Buggy,1999,25.0,Space Port,Town
+118-1,Electronic Train,1968,,4.5V,Train
+1181-1,Space Port Spacecraft,1999,23.0,Space Port,Town
+118-2,Small Train Set,1968,,4.5V,Train
+1182-1,Adventurers Raft,1999,,Desert,Adventurers
+118-3,Motorized Freight or Passenger Train (Sears Exclusive),1969,,4.5V,Train
+1183-1,Mummy and Cart,1999,,Desert,Adventurers
+1184-1,Cart,1999,,Ninja,Ninja
+1185-1,Raft,1999,25.0,Ninja,Ninja
+1186-1,Cart,1999,25.0,Ninja,Ninja
+1187-1,Glider,1999,23.0,Ninja,Ninja
+1188-1,Fire Formula,1999,,Extreme Team,Town
+1189-1,Rocket Boat,1999,,Extreme Team,Town
+1190-1,Retro Buggy,1999,90.0,Extreme Team,Town
+11905-1,DK Star Wars Brickmaster: Battle For The Stolen Crystals,2013,189.0,Books,Books
+11908-1,Build Your Own Adventure with Liza Mini-Doll and Touring Car,2015,77.0,Friends,Friends
+11909-1,Lego Ninjago: Build Your Own Adventure,2015,74.0,Ninjago,Ninjago
+119-1,Super Train Set,1968,,4.5V,Train
+11910-1,Micro-Scale Space Cruiser,2015,102.0,Space,Space
+1191-1,Try Bird,1999,,Extreme Team,Town
+11911-1,LEGO City: Build Your Own Adventure,2016,99.0,City,Town
+11912-1,LEGO Star Wars: Build Your Own Adventure,2016,,Star Wars,Star Wars
+1194-1,Classic Building Table,1999,408.0,Classic Basic,Universal Building Set
+1195-1,Alien Encounter,2001,42.0,Life On Mars,Space
+1196-1,Biker with Bicycle,2000,,Sports,Sports
+1197-1,Telekom Race Cyclist and Television Motorbike,2000,30.0,Sports,Sports
+1197-2,Crown Gears,1981,,Technic,Service Packs
+1198-1,Service Team - 2 Bikers with Service Tools,2000,,Sports,Sports
+1199-1,Winning Team,2000,,Sports,Sports
+11995-1,Hero Recon Team,2011,0.0,Hero Factory,Hero Factory
+1200-1,"LEGO Town Plan Board, Large Plastic",1955,,Town Plan,Classic
+1200-2,"LEGO Town Plan Board, Small Plastic",1956,1.0,Town Plan,Classic
+1200M-1,LEGO Town Plan Wooden Board,1957,,Town Plan,Classic
+120-1,Complete Freight Train Set with Tipper Trucks,1969,163.0,4.5V,Train
+1202-1,racer polybag,2001,1.0,Xalax,Racers
+1203-1,"Turntables (4 x 4), Turntables (2 x 2)",1985,8.0,Service Packs,Service Packs
+1204-1,"Fences, Red and Black",1984,,Service Packs,Service Packs
+120438-1,Basic Building Set,1985,,Basic Set,Universal Building Set
+1205-1,Keys for Wind-Up Motor,1982,2.0,Service Packs,Service Packs
+1206-1,"Round Bricks (2 x 2), White",1982,10.0,Service Packs,Service Packs
+1207-1,"Turntables (4 x 4), Red",1982,2.0,Service Packs,Service Packs
+1208-1,"Inverted Slope Bricks, Assorted, Red",1982,16.0,Service Packs,Service Packs
+1209-1,Fences and Gates,1982,,Service Packs,Service Packs
+12-1,Blue Space Elements,1981,,Space,Service Packs
+1210-1,Winch Block and Hook Assembly,1982,,Service Packs,Service Packs
+1210-2,Small Store Set,1955,30.0,Town Plan,Classic
+121-1,Roadster,1979,,Fabuland,Fabuland
+1211-1,Space Stands and Brackets,1982,,Service Packs,Service Packs
+1211-2,Small House Set,1955,19.0,Town Plan,Classic
+1212-1,"Rocket Tops, Black",1982,,Service Packs,Service Packs
+1212-2,Small House - Left Set,1955,,Town Plan,Classic
+1213-1,Space Radar Disks,1982,5.0,Space,Service Packs
+1213-2,Small House - Right Set,1955,23.0,Town Plan,Classic
+1214-1,Upper Part of Motorhome for 4.5V/12V Trainmotor,1984,,Train,Service Packs
+1214-2,Windows and Doors,1955,24.0,Supplemental,Classic
+1215-1,Train Motor 4.5V Type II Lower Housing,1981,,Train,Service Packs
+1215-2,2 x 8 & 2 x 10 Bricks,1955,,Supplemental,Classic
+1216-1,Semaphores with Feet,1982,8.0,Train,Service Packs
+1216-2,4 x 4 Corner Bricks,1955,,Supplemental,Classic
+1217-1,Yellow Girder Beams & Plates,1982,20.0,Technic,Service Packs
+1217-2,2 x 4 Bricks,1955,52.0,Supplemental,Classic
+1218-1,Blue Girder Beams & Plates,1982,20.0,Technic,Service Packs
+1218-2,2 x 3 Bricks,1955,60.0,Supplemental,Classic
+1219-1,TECHNIC Beams & Plates [Red],1982,20.0,Technic,Service Packs
+1219-2,2 x 2 Bricks,1955,,Supplemental,Classic
+1220-1,Black Girder Beams & Plates,1982,,Technic,Service Packs
+1220-2,1 x 2 Bricks,1955,104.0,Supplemental,Classic
+122-1,Loco and Tender,1969,,4.5V,Train
+1221-1,TECHNIC beams - yellow,1982,,Technic,Service Packs
+1221-2,1 x 1 Bricks,1955,160.0,Supplemental,Classic
+1222-1,TECHNIC beams - blue,1982,,Technic,Service Packs
+1222-2,1 x 1 Round Bricks,1955,200.0,Supplemental,Classic
+1223-1,TECHNIC beams - black,1982,8.0,Technic,Service Packs
+1223-2,2 x 2 & 2 x 4 Curved Bricks,1955,14.0,Supplemental,Classic
+1223-3,2 x 2 Curved Bricks,1957,100.0,Supplemental,Classic
+1224-1,TECHNIC Beams [Red],1982,8.0,Technic,Service Packs
+1224.1-1,8 Danish Named Beams,1955,8.0,Supplemental,Classic
+1224-2,8 Named Beams,1955,,Supplemental,Classic
+1224A-1,1 x 6 and 1 x 8 Bricks,1955,36.0,Supplemental,Classic
+1225-1,Assortment of Axles,1982,32.0,Technic,Service Packs
+1225-2,Mixed Plates Parts Pack,1955,12.0,Supplemental,Classic
+1226-1,Tractor Tires & Hubs,1982,12.0,Technic,Service Packs
+1226-2,6 x 8 & 2 x 8 Plates,1956,4.0,Supplemental,Classic
+1227-1,Gear Wheel Assortment,1982,15.0,Technic,Service Packs
+1227-2,4 x 8 & 2 x 8 Plates,1956,5.0,Supplemental,Classic
+1228-1,Differential Gear Housing,1982,,Technic,Service Packs
+1228-2,4 x 8 Curved & 2 x 8 Plates,1956,,Supplemental,Classic
+1229-1,TECHNIC Chainlinks,1982,70.0,Technic,Service Packs
+12-3,Wheel Bearings for Locomotives,1977,2.0,Train,Service Packs
+1230-1,TECHNIC Bulldozer Chainlinks,1982,54.0,Technic,Service Packs
+1230-2,Windows and Door without Glass,1955,,Supplemental,Classic
+123-1,Passenger Coach,1969,,4.5V,Train
+1231-1,X-Large Tires & Hubs,1982,4.0,Technic,Service Packs
+1231-2,"Windows and Door with Glass, Red",1956,10.0,Supplemental,Classic
+1231-3,"Windows and Door with Glass, White",1956,10.0,Supplemental,Classic
+1232-1,Toggle Joints & Connectors,1982,46.0,Technic,Service Packs
+1233-1,Axle Assortment,1984,,Technic,Service Packs
+1233-2,Light Masts,1958,,Supplemental,Classic
+1234-1,Gear Wheel Assortment,1984,,Technic,Service Packs
+1234-3,"Replacement Gearbox for Electric, Motor 4.5V/12V Type II 12 x 4 x 3 1/3",1983,1.0,Service Packs,Service Packs
+1235-1,Differential Gear Housing,1984,,Technic,Service Packs
+1235-2,Garage Plate and Door,1955,,Supplemental,Classic
+1236-1,TECHNIC wheels with hubs,1984,,Technic,Service Packs
+1236-2,Garage,1955,,Town Plan,Classic
+1236-3,12V Technic Motor,1979,1.0,Technic,Service Packs
+1237-1,Honda Promotional Set,2001,55.0,Robot,Technic
+1239-1,Subzero,2001,4.0,Xalax,Racers
+1239-2,Remote Control for Electric Points,1985,8.0,Train,Service Packs
+1240-1,"Hinges and Tilted Bearings, Light Gray",1986,16.0,Service Packs,Service Packs
+1240-2,8 Road Signs,1955,8.0,Supplemental,Classic
+124-1,Goods Wagon,1969,,4.5V,Train
+1241-1,Digger Bucket Assembly,1985,4.0,Service Packs,Service Packs
+1241-2,8 Road Signs,1955,8.0,Supplemental,Classic
+1242-1,Crane Grab and Winch,1986,4.0,Service Packs,Service Packs
+1242-2,International Flags,1957,,Supplemental,Classic
+1242D-1,5 Danish Flags,1957,,Supplemental,Classic
+1243-1,Hinges and Couplings,1986,,Service Packs,Service Packs
+1244-1,Runway Plates,1986,,Service Packs,Service Packs
+1245-1,T- and Intersection Plates,1986,2.0,Service Packs,Service Packs
+1245-2,Lighting Device Pack,1957,,Supplemental,Classic
+1246-1,Helicopter,1999,26.0,Town,Town
+1247-1,Patrol Car,1999,,Town,Town
+1247-2,Esso Pumps/Sign,1955,2.0,Supplemental,Classic
+1248-1,Fire Boat,1999,,Town,Town
+1248-2,Painted Trees and Bushes,1955,6.0,Supplemental,Classic
+1249-1,Tri-motorbike,1999,17.0,Hospital,Town
+1250-1,Dragster,1999,,Race,Town
+125-1,Tipping Wagon,1969,20.0,4.5V,Train
+1251-1,Go-Cart,1999,25.0,Race,Town
+125-2,Building Set,1974,234.0,Basic Set,Universal Building Set
+1252-1,Shell Tanker,1999,,Gas Station,Town
+1253-1,Shell Car Transporter,1999,,Gas Station,Town
+1254-1,Shell Select Shop,1999,164.0,Gas Station,Town
+1255-1,Shell Car Wash,1999,136.0,Gas Station,Town
+1256-1,Shell Petrol Pump,1999,,Gas Station,Town
+1257-1,Trike Buggy,1999,,Riding Cycle,Technic
+1258-1,Propellor Buggy,1999,29.0,Off-Road,Technic
+1259-1,Motorbike,1999,,Riding Cycle,Technic
+1260-1,Car,1999,26.0,Race,Technic
+1260-2,1:87 Twenty Four Models,1957,24.0,HO 1:87 Vehicles,Classic
+126-1,Steam Locomotive (Push),1970,60.0,4.5V,Train
+1263-1,Easter Bunny,2000,,Easter,Seasonal
+1264-1,Easter Chicks,2000,,Easter,Seasonal
+1265-1,Moon Buggy,1999,,Space Port,Town
+1266-1,Space Probe,1999,,Space Port,Town
+1267-1,Shock Absorbers,1985,,Technic,Service Packs
+1268-1,Bike Blaster,1999,28.0,Riding Cycle,Technic
+1269-1,White Ninja,1999,,Ninja,Ninja
+1270-2,Trial Size Bag - Chromika,2005,16.0,Basic Set,Creator
+127-1,Train Set,1969,,4.5V,Train
+1271-1,Jungle Surprise,1999,,Jungle,Adventurers
+1271-2,Traffic Police Set,1956,6.0,Town Plan,Classic
+1272-1,Blue Racer,2000,,Race,Town
+1273-1,Red Four Wheel Driver,2000,20.0,Race,Town
+1274-1,Light Hover,2000,25.0,Rock Raiders,Rock Raiders
+1275-1,{Rock Saw Vehicle},2000,22.0,Rock Raiders,Rock Raiders
+1276-1,Helicopter Transport,2000,,Rock Raiders,Rock Raiders
+1277-1,Drill Craft,2000,27.0,Rock Raiders,Rock Raiders
+1278-1,Johnny Thunder & Baby T,2000,,Dino Island,Adventurers
+1279-1,Aeroplane,2000,21.0,Dino Island,Adventurers
+1280-1,Microcopter,2000,,Dino Island,Adventurers
+128-1,Taxi Station,1979,33.0,Fabuland,Fabuland
+1281-1,Aeroplane,2000,25.0,Dino Island,Adventurers
+128-2,Mobile Crane (Train Base),1972,,4.5V,Train
+1282-1,Blue Racer,2000,,Race,Town
+128-3,Mobile Crane (Plate Base),1971,38.0,4.5V,Train
+1283-1,Red Four Wheel Driver,2000,20.0,Race,Town
+1284-1,Green Buggy,2000,23.0,Race,Town
+1285-1,Yellow Tiger,2001,,Race,Town
+1286-1,King Leo's Cart,2000,22.0,Knights Kingdom I,Castle
+1287-1,Crossbows,2000,,Knights Kingdom I,Castle
+1288-1,Fire Cart,2000,,Knights Kingdom I,Castle
+1289-1,Catapult,2000,,Knights Kingdom I,Castle
+1290-1,Kabaya Promotional Set: Red (Volcano Climber) RoboRider,2000,,RoboRiders,Technic
+1291-1,Power Bike,2000,,RoboRiders,Technic
+1292-1,Kabaya Promotional Set: White (Ice Explorer) RoboRider,2000,33.0,RoboRiders,Technic
+1293-1,Kabaya Promotional Set: Yellow/Green (Swamp Craft) RoboRider,2000,25.0,RoboRiders,Technic
+1294-1,Fire Helicopter,2000,,Town,Town
+1295-1,Water Rider,2000,,Extreme Team,Town
+1296-1,Land Scooper,2000,,Town,Town
+1297-1,Speed Patroller,2000,,Town,Town
+1298-1,Advent Calendar 1998 Classic Basic,1998,,Classic Basic,Seasonal
+1298-10,Advent Calendar 1998 Classic Basic (Day 9) Whale,1998,9.0,Classic Basic,Seasonal
+1298-11,Advent Calendar 1998 Classic Basic (Day 10) Steamboat,1998,12.0,Classic Basic,Seasonal
+1298-12,Advent Calendar 1998 Classic Basic (Day 11) Boat,1998,8.0,Classic Basic,Seasonal
+1298-13,Advent Calendar 1998 Classic Basic (Day 12) Airplane,1998,12.0,Classic Basic,Seasonal
+1298-14,Advent Calendar 1998 Classic Basic (Day 13) Santa,1998,,Classic Basic,Seasonal
+1298-15,Advent Calendar 1998 Classic Basic (Day 14) Airplane,1998,,Classic Basic,Seasonal
+1298-16,Advent Calendar 1998 Classic Basic (Day 15) Green Elf,1998,9.0,Classic Basic,Seasonal
+1298-17,Advent Calendar 1998 Classic Basic (Day 16) Boat,1998,8.0,Classic Basic,Seasonal
+1298-18,Advent Calendar 1998 Classic Basic (Day 17) Mouse,1998,,Classic Basic,Seasonal
+1298-19,Advent Calendar 1998 Classic Basic (Day 18) Blue Elf,1998,,Classic Basic,Seasonal
+1298-2,Advent Calendar 1998 Classic Basic (Day 1) Airplane,1998,,Classic Basic,Seasonal
+1298-20,Advent Calendar 1998 Classic Basic (Day 19) Boat,1998,9.0,Classic Basic,Seasonal
+1298-21,Advent Calendar 1998 Classic Basic (Day 20) Helicopter,1998,,Classic Basic,Seasonal
+1298-22,Advent Calendar 1998 Classic Basic (Day 21) Red Elf,1998,9.0,Classic Basic,Seasonal
+1298-23,Advent Calendar 1998 Classic Basic (Day 22) Police Boat,1998,,Classic Basic,Seasonal
+1298-24,Advent Calendar 1998 Classic Basic (Day 23) Truck,1998,,Classic Basic,Seasonal
+1298-25,Advent Calendar 1998 Classic Basic (Day 24) Airplane,1998,10.0,Classic Basic,Seasonal
+1298-3,Advent Calendar 1998 Classic Basic (Day 2) Santa,1998,5.0,Classic Basic,Seasonal
+1298-4,Advent Calendar 1998 Classic Basic (Day 3) Boat,1998,,Classic Basic,Seasonal
+1298-5,Advent Calendar 1998 Classic Basic (Day 4) Boat,1998,10.0,Classic Basic,Seasonal
+1298-6,Advent Calendar 1998 Classic Basic (Day 5) Sailboat,1998,,Classic Basic,Seasonal
+1298-7,Advent Calendar 1998 Classic Basic (Day 6) Airplane,1998,10.0,Classic Basic,Seasonal
+1298-8,Advent Calendar 1998 Classic Basic (Day 7) Helicopter,1998,,Classic Basic,Seasonal
+1298-9,Advent Calendar 1998 Classic Basic (Day 8) Airplane,1998,9.0,Classic Basic,Seasonal
+1300-1,Lego Mosaik Set (Small),1955,47.0,Mosaic,Classic
+130-1,Wagon with Double Tippers,1972,,4.5V,Train
+1306-1,VW Garage,1957,45.0,Town Plan,Classic
+1307-1,VW Auto Showroom,1957,,Town Plan,Classic
+1308-1,Fire Station,1957,109.0,Town Plan,Classic
+1309-1,Church,1957,150.0,Town Plan,Classic
+13-1,Gray Space Elements,1981,10.0,Space,Service Packs
+1310-1,ESSO Filling Station,1956,,Town Plan,Classic
+131-1,Passenger Coach,1972,,4.5V,Train
+1314-1,Stop bush / Small pulley,1987,210.0,Technic,Technic
+1315-1,Piston Rod,1987,50.0,Technic,Technic
+1316-1,Connector peg,1987,150.0,Technic,Technic
+1317-1,TECHNIC Chainlinks,1987,350.0,Technic,Technic
+1318-1,Gears Small,1987,,Technic,Technic
+1319-1,Gears Large,1987,,Technic,Technic
+13-2,Large Pre-School Basic Set,1973,,Minitalia,Minitalia
+1320-1,Differential and Bevel Gears,1987,32.0,Technic,Technic
+132-1,Cottage,1979,,Fabuland,Fabuland
+1321-1,Worm Gear and Racks,1987,,Technic,Technic
+132-2,Port Crane and Flat Waggon,1972,,4.5V,Train
+1322-1,"Pulleys, Tires, and Steering Wheels",1987,,Technic,Technic
+1323-1,Hubs and Tyres,1985,,Service Packs,Educational and Dacta
+1324-1,Rubber Bands and String,1985,101.0,Technic,Technic
+1325-1,Assorted Spare Axles,1987,68.0,Technic,Technic
+1326-1,"Spare Axles, 12L",1987,28.0,Technic,Technic
+1327-1,Red/Black Plates,1985,48.0,Service Packs,Educational and Dacta
+1328-1,Red/Black Plates,1985,32.0,Service Packs,Educational and Dacta
+1329-1,Red/Black Plates,1985,28.0,Technic,Educational and Dacta
+13-3,Train Motor Plate with Buffers,1977,5.0,Train,Service Packs
+1330-1,Red/Black Plates,1985,20.0,Technic,Educational and Dacta
+133-1,Locomotive (Push),1975,81.0,4.5V,Train
+1331-1,Red/Blue Bricks,1985,,Technic,Educational and Dacta
+1332-1,Red/Blue Beams,1985,,Technic,Educational and Dacta
+1333-1,Red/Blue Beams,1985,20.0,Technic,Educational and Dacta
+1334-1,Motors (4.5V),1985,2.0,Technic,Educational and Dacta
+1335-1,Battery Boxes (4.5v),1985,,Technic,Educational and Dacta
+1336-1,Pole Reverser Switches for Battery Box,1985,2.0,Technic,Technic
+1337-1,Connecting Leads,1985,,Technic,Technic
+1338-1,Angles Swivels Turntables,1985,72.0,Service Packs,Educational and Dacta
+1339-1,TECHNIC parts,1987,,Technic,Technic
+1340-1,Weight Bricks,1987,18.0,Technic,Technic
+134-1,Mobile Crane and Wagon,1975,55.0,4.5V,Train
+1341-1,Building Plates Green,1985,,Service Packs,Educational and Dacta
+134-2,Service Station,1979,,Fabuland,Fabuland
+1342-1,Electric Switches and Tiles,1986,,Technic,Educational and Dacta
+1343-1,Optosensors (4.5V) and Discs,1986,4.0,Technic,Educational and Dacta
+1344-1,Light Bricks (4.5V),1986,12.0,Service Packs,Educational and Dacta
+1345-1,"Pinions, Connectors, and Axles",1986,52.0,Technic,Technic
+1346-1,Touch Sensors,1987,2.0,Technic,Technic
+1347-1,Leads (4.5V) Spirals,1987,,Service Packs,Educational and Dacta
+1348-1,Base Plates Grey,1987,3.0,Service Packs,Educational and Dacta
+1349-1,Steven Spielberg Moviemaker Set,2000,,Studios,Studios
+135-1,Building Set,1973,,Basic Set,Universal Building Set
+1351-1,Movie Backdrop Studio,2001,211.0,Studios,Studios
+1352-1,Explosion Studio,2000,,Studios,Studios
+1353-1,Car Stunt Studio,2001,168.0,Studios,Studios
+1354-1,Dino Head Attack,2000,,Studios,Studios
+1355-1,Temple of Gloom,2000,58.0,Studios,Studios
+1356-1,Stuntman Catapult,2001,29.0,Studios,Studios
+1357-1,Cameraman,2001,,Studios,Studios
+1360-1,Director's Copter,2001,22.0,Studios,Studios
+136-1,Tanker Waggon (Shell),1975,81.0,4.5V,Train
+1361-1,Camera Car,2001,,Studios,Studios
+1362-1,Air Boat,2001,24.0,Studios,Studios
+1363-1,Stunt Go-Cart,2001,,Studios,Studios
+1370-1,Raptor Attack Studio,2001,,Jurassic Park III,Studios
+137-1,Hospital,1979,104.0,Hospital,Fabuland
+1371-1,Spinosaurus Attack Studio,2001,186.0,Jurassic Park III,Studios
+137-2,Passenger Sleeping Car,1975,81.0,4.5V,Train
+1374-1,Green Goblin,2002,59.0,Spider-Man,Super Heroes
+1376-1,Spider-Man Action Studio,2002,249.0,Spider-Man,Super Heroes
+1380-1,Werewolf Ambush,2002,114.0,Studios,Studios
+138-1,Electronic Train,1969,,4.5V,Train
+1381-1,Vampire's Crypt,2002,,Studios,Studios
+1382-1,Scary Laboratory,2002,,Studios,Studios
+1383-1,Curse of the Pharaoh,2002,51.0,Studios,Studios
+1385-1,Clikits Bracelet Sample Set,2003,13.0,Clikits,Clikits
+1386-1,Clikits Bracelet Sample Set,2004,13.0,Clikits,Clikits
+1388-1,Huki [McDonald's Promo Set #1],2001,8.0,Tohunga,Bionicle
+1389-1,Onepu [McDonald's Promo Set #2],2001,8.0,Tohunga,Bionicle
+1390-1,Maku [McDonald's Promo Set #3],2001,,Tohunga,Bionicle
+139-1,Electronic Control Unit (Forward/Backward - Stop),1969,,4.5V,Train
+1391-1,Jala [McDonald's Promo Set #4],2001,8.0,Tohunga,Bionicle
+1392-1,Kongu [McDonald's Promo Set #5],2001,,Tohunga,Bionicle
+1393-1,Matoro [McDonald's Promo Set #6],2001,8.0,Tohunga,Bionicle
+139A-1,Electronic Control Unit (Forward - Stop),1969,13.0,4.5V,Train
+140-1,Town Hall,1979,135.0,Fabuland,Fabuland
+140-2,Bricks'n Motor Set,1969,,Basic Set,Universal Building Set
+14-1,Space Mini Figures,1982,24.0,Space,Service Packs
+1411-1,Pirate's Treasure Hunt (Quaker Oats promo),2001,,Studios,Studios
+1413-1,Rover,2001,,Life On Mars,Space
+1414-1,Double Hover (Kabaya Promotional),2001,21.0,Life On Mars,Space
+1415-1,Jet Scooter,2001,24.0,Life On Mars,Space
+1416-1,Worker Robot,2001,,Life On Mars,Space
+1417-1,Vakama,2001,28.0,Turaga,Bionicle
+1417-2,Vakama (bagged),2003,28.0,Turaga,Bionicle
+1418-1,Matau,2001,25.0,Turaga,Bionicle
+1419-1,Nokama (Kabaya Promotional),2001,27.0,Turaga,Bionicle
+1420-1,Nuju,2001,,Turaga,Bionicle
+1421-1,Director's Copter (Kabaya Promotional),2001,,Studios,Studios
+1422-1,Camera Cart (Kabaya Promotional),2001,20.0,Studios,Studios
+1423-1,Air Boat (Kabaya Promotional),2001,,Studios,Studios
+1424-1,Stunt Go-Kart (Kabaya Promotional),2001,25.0,Studios,Studios
+1425-1,Dash Jet Sub,2002,23.0,Mission Deep Sea,Alpha Team
+1426-1,Cam Wing Diver,2002,21.0,Mission Deep Sea,Alpha Team
+1427-1,Ogel Marine Slizer,2002,21.0,Mission Deep Sea,Alpha Team
+1428-1,Small Soccer Set 1 (Kabaya Box),2002,,Soccer,Sports
+1428-2,Small Soccer Set 1 (Polybag),2002,20.0,Soccer,Sports
+1429-1,Small Soccer Set 2 (Kabaya Box),2002,19.0,Soccer,Sports
+1429-2,Small Soccer Set 2 (Polybag),2002,19.0,Soccer,Sports
+14-3,Small house set,1973,,Minitalia,Minitalia
+1430-1,Small Soccer Set 3 (Kabaya Box),2002,,Soccer,Sports
+1430-2,Small Soccer Set 3 (Polybag),2002,,Soccer,Sports
+1431-1,Tahnok Va (Kabaya Promotional),2002,,Bohrok Va,Bionicle
+1432-1,Nuhvok Va (Kabaya Promotional),2002,,Bohrok Va,Bionicle
+1433-1,Gahlok Va (Kabaya Promotional),2002,26.0,Bohrok Va,Bionicle
+1434-1,Lehvak Va (Kabaya Promotional),2002,,Bohrok Va,Bionicle
+1435-1,Super Glider (Kabaya Promotional),2002,7.0,Airport,4 Juniors
+1436-1,Ultralight Flyer (Kabaya Promotional),2002,16.0,Airport,4 Juniors
+1437-1,Turbo Chopper (Kabaya Promotional),2002,13.0,Airport,4 Juniors
+14-4,Train Motor Plate with Coupler,1977,,Train,Service Packs
+1441-1,Fikou (Tree-Spider),2003,13.0,Bionicle,Bionicle
+145-1,Building Set,1974,412.0,Basic Set,Universal Building Set
+146-1,Level Crossing,1976,,4.5V,Train
+1461-1,Turbo Force,1992,31.0,Race,Town
+1462-1,Galactic Scout,1992,,Blacktron II,Space
+1463-1,Treasure Cart,1992,,Crusaders,Castle
+1464-1,Pirate Lookout,1992,17.0,Pirates I,Pirates
+1467-1,Shell Race Car,1987,46.0,Race,Town
+1468-1,Shell Tanker,1987,,Station,Town
+1469-1,Helicopter,1986,39.0,Airport,Universal Building Set
+1470-1,Shell Station,1987,32.0,Station,Town
+147-1,Refrigerated Car with Forklift,1976,,4.5V,Train
+1472-1,Holiday Home,1987,,Building,Town
+1474-1,Basic Building Set with Gift Item,1991,,Basic,Universal Building Set
+1475-1,Airport Security Squad,1991,,Airport,Town
+1477-1,{Red Race Car Number 3},1991,,Race,Town
+1478-1,Mobile Satellite Up-Link,1991,,M:Tron,Space
+1479-1,2-Pilot Craft,1991,34.0,Blacktron II,Space
+1480-1,King's Catapult,1991,33.0,Crusaders,Castle
+148-1,Central Station,1975,,4.5V,Train
+1481-1,Desert Island,1991,24.0,Pirates I,Pirates
+1484-1,Weetabix Town House,1987,215.0,Building,Town
+1489-1,Mobile Car Crane,1989,,Traffic,Town
+1490-1,Town Bank,1988,195.0,Traffic,Town
+149-1,Fuel Refinery,1976,340.0,4.5V,Train
+1491-1,Dual Defender,1992,,Black Knights,Castle
+1492-1,Battle Cove,1992,,Pirates I,Pirates
+1495-1,Basic Building Set Trial Size,1988,,Basic,Universal Building Set
+1496-1,Rally Car,1987,,Race,Town
+1497-1,Rally and Pitcrew Team,1987,,Race,Town
+1498-1,Spy-Bot,1987,,Classic Space,Space
+1499-1,Twin Starfire,1987,,Classic Space,Space
+150-1,Straight Track,1966,25.0,4.5V,Train
+1506-1,Town Value Pack,1986,,Classic Town,Town
+1507-1,Space Value Pack,1986,2.0,Classic Space,Space
+1509-1,Town Value Pack,1987,2.0,Race,Town
+15-1,Castle Mini Figures,1984,38.0,Castle,Service Packs
+1510-1,Space Value Pack,1987,2.0,Classic Space,Space
+151-1,Curved Track,1966,,4.5V,Train
+1512-1,Denken mit Lego (Thinking with Lego 250pcs),1972,250.0,Learning,Educational and Dacta
+1512-2,Basic Set with Storage Case,1985,103.0,Basic,Universal Building Set
+1513-1,Denken mit Lego (Thinking with Lego 900pcs),1972,,Learning,Educational and Dacta
+1513-2,Basic Building Set Gift Item,1989,71.0,Basic,Universal Building Set
+1514-1,Basic Building Set Trial Size,1988,,Basic,Universal Building Set
+1515-1,Town Value Pack,1989,2.0,Race,Town
+1516-1,Theater with Play-Scenes,1987,,Fabuland,Fabuland
+1517-1,Race Car,1989,32.0,Race,Town
+1518-1,Race Car Repair,1989,79.0,Race,Town
+15-2,Large House Set,1973,157.0,Minitalia,Minitalia
+1520-1,Basic Set with Storage Case,1985,,Basic,Universal Building Set
+1520-2,Town 2 for 1 Bonus Offer,1990,,Classic Town,Town
+152-1,Two Train Wagons,1966,22.0,4.5V,Train
+1521-1,Basic Building Set Trial Size,1989,24.0,Basic,Universal Building Set
+1522-1,Basic Building Set Trial Size,1989,44.0,Basic,Universal Building Set
+1523-1,Basic Set Trial Size,1986,27.0,Basic,Universal Building Set
+1524-1,Basic Set Trial Size,1986,38.0,Basic,Universal Building Set
+1525-1,Container Lorry,1986,153.0,Cargo,Town
+1526-1,Space Radar Buggy,1986,105.0,Classic Space,Space
+1528-1,Dragster,1986,,Race,Town
+153-1,Large Train Wagon,1966,,4.5V,Train
+154-1,Switch Track - 1 Right and 1 Left,1967,,4.5V,Train
+1544-1,Duplo Medium Bucket,1988,57.0,Basic Set,Duplo
+1545-1,Build-A-Rabbit,1992,29.0,Easter,Seasonal
+1546-1,Airplane,1985,,Airport,Universal Building Set
+1547-1,Black Knights Boat,1993,,Black Knights,Castle
+1548-1,Stena Line Ferry,1992,173.0,Ferries,Universal Building Set
+1549-1,Santa and Chimney,1992,62.0,Christmas,Seasonal
+1550-1,Sterling Super Caravelle,1972,,Airport,Legoland
+155-1,"2 Cross Rails, 8 Straight Tracks, 4 Base Plates",1967,,4.5V,Train
+1551-1,Chick,1985,,Easter,Seasonal
+1551-2,Sterling Luggage Carrier,1972,49.0,Airport,Legoland
+1552-1,Maersk Line Container Truck,1985,,Cargo,Town
+1552-2,Sterling Boeing 727,1974,45.0,Airport,Legoland
+1554-1,Silja Line Ferry,1986,,Ferries,Universal Building Set
+1555-1,Santa Claus,1986,,Christmas,Seasonal
+1555-2,Sterling Airways Biplane,1978,,Airport,Legoland
+1556-1,Christmas Hearts,1986,,Christmas,Seasonal
+1557-1,Scooter,1986,26.0,Classic Space,Space
+1558-1,Mobile Command Trailer,1986,68.0,Classic Space,Space
+1560-1,Glory Glider,1990,26.0,Airport,Town
+1560-2,Lufthansa Boeing 727,1976,44.0,Airport,Legoland
+1560-3,Crest Basic Building Set,1985,,Basic,Universal Building Set
+156-1,2 Signals with Automatic Stop / Go Attachment,1968,,4.5V,Train
+1561-1,Stunt Chopper,1990,30.0,Airport,Town
+1561-2,Lufthansa Flight Crew,1976,60.0,Building Set with People,Building Set with People
+156-2,Straight Track,1976,,4.5V,Train
+1562-1,Wave Jumper,1990,25.0,Harbor,Town
+1562-2,Basic Building Set,1985,,Basic,Universal Building Set
+1562-3,Lufthansa Double-Decker,1976,,Airport,Legoland
+1563-1,Track Blaster,1990,,Race,Town
+157-1,Curved Track,1976,25.0,4.5V,Train
+157-2,Automatic Direction Changer,1969,7.0,4.5V,Train
+1572-1,Super Tow Truck,1986,80.0,Traffic,Town
+157-3,Four Car Auto Transport,1970,,Vehicle,Legoland
+1575-1,Finnjet Ferry,1977,,Ferries,Universal Building Set
+1575-2,Basic Set with Board Game,1987,,Basic,Universal Building Set
+1577-1,Medium Bucket,1988,,Basic,Universal Building Set
+1580-1,Lunar Scout,1986,70.0,Classic Space,Space
+1580-2,Silja Line Ferry,1977,,Ferries,Universal Building Set
+158-1,Railroad Crossing Gate,1969,7.0,4.5V,Train
+1581-1,Silja Line Ferry,1981,,Ferries,Universal Building Set
+1581-2,Delivery Truck,1990,122.0,Food & Drink,Town
+1584-1,Knights Challenge,1988,168.0,Lion Knights,Castle
+1588-1,Basic Set,1987,27.0,Basic,Universal Building Set
+1589-1,Town Square,1978,,Traffic,Town
+1589-2,TCS Breakdown Assistance,1986,258.0,Traffic,Town
+1590-2,ANWB Breakdown Assistance,1982,,Traffic,Town
+159-1,"Crossover, Straight Rails",1976,25.0,4.5V,Train
+1591-1,Danone Truck,1980,,Food & Drink,Town
+1592-1,Town Square - Castle Scene,1980,,Traffic,Town
+1592-2,Town Square - Castle Scene (Dutch Version),1983,495.0,Traffic,Town
+1593-1,Super Model,1983,314.0,Classic Space,Space
+1596-1,Ghostly Hideout,1993,,Wolfpack,Castle
+1597-1,Castle 3-Pack,1993,3.0,Castle,Castle
+1598-1,Basic Set,1987,,Basic,Universal Building Set
+1599-1,Britannia Airways,1987,,Airport,Universal Building Set
+160-1,Magnetic Couplings,1968,,4.5V,Train
+1601-1,Conveyance,1976,,Construction,Legoland
+1602-1,Giraffe,1987,,Basic,Universal Building Set
+1603-1,Trial Size Imagination,1993,,Basic,Universal Building Set
+1604-1,Lion,1987,17.0,Basic,Universal Building Set
+1605-1,Snail,1987,,Basic,Universal Building Set
+1606-1,Car,1987,,Basic,Universal Building Set
+1607-1,Helicopter,1987,26.0,Airport,Universal Building Set
+1608-1,{Aeroplane},1987,24.0,Airport,Universal Building Set
+1609-1,Ship,1987,31.0,Basic,Universal Building Set
+16-1,Transparent Bricks,1988,32.0,Service Packs,Service Packs
+1610-1,Police Car,1991,,Police,Town
+1610-2,Martinair Cessna,1978,82.0,Airport,Legoland
+161-1,Battery Wagon with Signal and Direction - Changing,1972,7.0,4.5V,Train
+1611-1,Dune Buggy,1991,,Off-Road,Town
+1611-2,Martinair DC-9,1978,63.0,Airport,Legoland
+1612-1,Race Car,1988,,Race,Town
+1613-1,Basic Set in Bucket,1987,375.0,Basic,Universal Building Set
+1616-1,Space Combi-Pack,1989,2.0,Futuron,Space
+1617-1,Small Bucket,1988,155.0,Basic,Universal Building Set
+1619-1,Storage Bucket,1986,,Basic Set,Universal Building Set
+1620-1,Astro Dart,1990,,Futuron,Space
+1620-2,Factory,1978,233.0,Food & Drink,Town
+162-1,Locomotive without Motor,1977,,4.5V,Train
+1621-1,Lunar MPV Vehicle,1990,96.0,Futuron,Space
+1624-1,King's Archer,1993,22.0,Black Knights,Castle
+1625-1,Snowman,1989,40.0,Christmas,Seasonal
+1626-1,Angel,1989,33.0,Christmas,Seasonal
+1627-1,Santa,1989,,Christmas,Seasonal
+1628-1,Santa on Sleigh with Reindeer,1989,,Christmas,Seasonal
+1630-1,Helicopter,1990,27.0,Airport,Town
+163-1,Cargo Wagon,1977,127.0,4.5V,Train
+1631-1,Black Racer,1990,,Race,Town
+1632-1,Motor Boat,1990,28.0,Harbor,Town
+1633-1,Loader Tractor,1990,,Construction,Town
+1636-1,Small Bucket,1990,186.0,Basic,Universal Building Set
+1637-1,Large Bucket,1990,493.0,Basic,Universal Building Set
+1638-1,Blue Bucket,1990,,Basic,Universal Building Set
+1639-1,Large Bucket,1990,673.0,Basic,Universal Building Set
+164-1,Passenger Wagon,1978,,4.5V,Train
+1642-1,"Lego Motion 3B, Sea Eagle",1989,,Basic Model,Universal Building Set
+1642-2,"Lego Motion 3B, Sea Eagle - International version",1994,15.0,Basic Model,Universal Building Set
+1643-1,"Lego Motion 2B, Lightning Striker",1989,,Basic Model,Universal Building Set
+1644-1,"Lego Motion 4A, Wind Whirler",1989,17.0,Basic Model,Universal Building Set
+1644-2,"Lego Motion 4A, Wind Whirler - International version",1994,17.0,Basic Model,Universal Building Set
+1645-1,"Lego Motion 1A, Gyro Bird",1989,19.0,Basic Model,Universal Building Set
+1646-1,"Lego Motion 3A, Land Laser",1989,17.0,Basic Model,Universal Building Set
+1646-2,"Lego Motion 3A, Land Laser - International version",1994,,Basic Model,Universal Building Set
+1647-1,"Lego Motion 1B, Turbo Force",1989,14.0,Basic Model,Universal Building Set
+1648-1,"Lego Motion 2A, Swamp Stinger",1989,,Basic Model,Universal Building Set
+1649-1,"Lego Motion 4B, Sea Skimmer",1989,,Basic Model,Universal Building Set
+1649-2,"Lego Motion 4B, Sea Skimmer - International version",1994,,Basic Model,Universal Building Set
+1650-1,Maersk Line [Promotional Container Ship],1974,218.0,Boat,Boat
+165-1,Cargo Station,1978,,4.5V,Train
+1651-1,Basic Building Set Trial Size,1993,30.0,Basic,Universal Building Set
+1651-2,Maersk Line Container Truck,1980,305.0,Cargo,Town
+1652-1,Basic Set,1994,,Basic,Universal Building Set
+1655-1,Viking Line Ferry,1985,,Ferries,Universal Building Set
+1656-1,Evacuation Team,1991,,Fire,Town
+1656-2,Viking Line Ferry,1982,171.0,Ferries,Universal Building Set
+1658-1,Viking Line Ferry,1982,201.0,Ferries,Universal Building Set
+1660-1,Kronprins Frederik Ferry,1996,,Ferries,Universal Building Set
+166-1,Flat Wagon,1978,,4.5V,Train
+1661-2,Basic Building Set in Bucket,1989,418.0,Basic,Universal Building Set
+1662-1,Basic Building Set in Bucket,1989,630.0,Basic,Universal Building Set
+1663-1,Basic Building Set in Bucket,1989,,Basic,Universal Building Set
+1665-1,Dual FX Racers,1990,,Race,Town
+1666-1,Brick Vac,1991,140.0,Basic,Universal Building Set
+1668-1,Basic Building Set Trial Size,1992,30.0,Basic Set,Universal Building Set
+1670-1,Basic Building Set Trial Size,1992,,Basic Set,Universal Building Set
+167-1,Loading Ramp and Car Transport Wagon,1978,100.0,4.5V,Train
+1675-1,LEGOLAND Triple Pack,1990,3.0,Value Packs,Value Packs
+1676-1,Basic Building Set,1990,,Basic,Universal Building Set
+1677-1,Rabbit,1990,,Easter,Seasonal
+1678-1,Basic Building Set Trial Size,1991,49.0,Basic Set,Universal Building Set
+1679-1,Basic Building Set,1990,,Basic,Universal Building Set
+1680-1,Hay Cart with Smugglers,1990,67.0,Forestmen,Castle
+1682-1,Space Shuttle,1990,419.0,Airport,Town
+1687-1,Midnight Transport,1993,,Airport,Town
+1688-1,Large Bucket for Her,1993,,Basic,Universal Building Set
+1690-1,Helicopter,1990,,Airport,Town
+1693-1,Turbo Force,1992,26.0,Race,Town
+1694-1,Galactic Scout,1992,,Blacktron II,Space
+1695-1,Treasure Chest,1992,,Crusaders,Castle
+1696-1,Pirate Lookout,1992,,Pirates I,Pirates
+1698-1,Basic Building Set Trial Size,1991,26.0,Basic Set,Universal Building Set
+1699-1,Small Bucket,1993,,Basic,Universal Building Set
+1-7,Basic Set,1973,107.0,Basic Set,Universal Building Set
+170-1,Push Along Play Train,1972,,4.5V,Train
+1701-1,Basic Building Set Trial Size,1994,26.0,Basic,Universal Building Set
+1702-1,Fire Fighter 4 x 4,1994,59.0,Fire,Town
+1703-1,Dalmatian Station Building Set,1994,181.0,Basic,Universal Building Set
+1704-1,Ice Planet Satellite Plough,1994,47.0,Ice Planet 2002,Space
+1705-1,Large Dinosaur Bucket,1994,327.0,Basic,Universal Building Set
+1708-1,Large Bucket,1994,665.0,Basic Set,Universal Building Set
+1710-1,Snowmobile,1994,24.0,Off-Road,Town
+17101-1,Creative Toolbox,2017,846.0,Other,Other
+171-1,Complete Train Set Without Motor,1972,146.0,4.5V,Train
+1711-1,Ice Planet Scooter,1994,19.0,Ice Planet 2002,Space
+1712-1,Crossbow Cart,1994,,Castle,Castle
+1713-1,Shipwrecked Pirate,1994,23.0,Pirates I,Pirates
+1714-1,Surveillance Scooter,1995,23.0,Spyrius,Space
+1715-1,Special Value,1995,400.0,Supplemental,Universal Building Set
+1715-2,Basic Bricks,1995,400.0,Bulk Bricks,Bulk Bricks
+1716-1,Starter Set with Building Plates,1994,201.0,Basic,Universal Building Set
+1719-1,Freestyle Bricks and Plates,1995,199.0,Freestyle,Freestyle
+1720-1,Cactus Canyon Value Pack,1994,,Recreation,Town
+1721-1,Sandypoint Marina Value Pack,1994,,Recreation,Town
+1722-1,Rescue / Ice Planet Combi Pack,1994,,Value Packs,Value Packs
+1723-1,Castle / Pirates Combi Pack,1994,2.0,Value Packs,Value Packs
+1724-1,Bird,1994,9.0,Basic Model,Universal Building Set
+1725-1,Dinosaur,1994,11.0,Basic Model,Universal Building Set
+1726-1,Girl,1994,7.0,Basic Model,Universal Building Set
+1727-1,Horse,1994,10.0,Basic Model,Universal Building Set
+1728-1,Crystal Crawler,1996,,Aquanauts,Aquazone
+1729-1,Barnacle Bay Value Pack,1994,,Pirates I,Pirates
+1730-1,Snow Scooter,1994,,Off-Road,Town
+1731-1,Ice Planet Scooter,1994,19.0,Ice Planet 2002,Space
+1732-1,Crossbow Cart,1994,23.0,Castle,Castle
+1733-1,Shipwrecked Pirate,1994,,Pirates I,Pirates
+1736-1,Wizard's Cart,1995,18.0,Castle,Castle
+1737-1,Scorpion Detector,1996,,Exploriens,Space
+1740-1,Kayak,1994,,Recreation,Town
+1741-1,Car,1994,36.0,Recreation,Town
+1742-1,Van,1994,81.0,Recreation,Town
+1743-1,"Box of Standard Bricks, 5+",1995,,Supplemental,Universal Building Set
+1745-1,"Box of Standard Bricks, 3+",1995,404.0,Supplemental,Universal Building Set
+1746-1,Wiz the Wizard,1995,18.0,Castle,Castle
+1747-1,Treasure Surprise,1996,,Pirates I,Pirates
+1749-1,Paravane,1996,16.0,Aquanauts,Aquazone
+1750-1,Renault Formula 1 Racer,1992,,Race,Town
+1752-1,Boat with Armour,1996,21.0,Royal Knights,Castle
+1756-1,{Basic Promotional Set},1995,8.0,Basic Model,Universal Building Set
+1758-1,{Basic Promotional Set},1995,,Basic Model,Universal Building Set
+1760-1,Go-Cart,1995,,Race,Town
+1761-1,Paradisa Speedboat,1995,,Paradisa,Town
+1762-1,Go-Cart,1995,,Race,Town
+1766-1,Small Freestyle Bucket,1995,,Freestyle,Freestyle
+1767-1,{Basic Promotional Set},1995,6.0,Basic Model,Universal Building Set
+1768-1,{Basic Promotional Set},1995,9.0,Basic Model,Universal Building Set
+1769-1,Aircraft,1992,,Airport,Universal Building Set
+1772-1,Airport Container Truck,1991,79.0,Airport,Town
+1773-1,Airline Maintenance Vehicle with Trailer,1996,108.0,Airport,Town
+1774-1,Aircraft,1991,,Airport,Town
+1775-1,Jet,1994,,Airport,Town
+1776-1,Large Bulk Bucket,1996,,Basic Set,Universal Building Set
+1777-1,Sabah Promotional Set: Plane,1997,10.0,Basic Model,Universal Building Set
+1778-1,Sabah Promotional Set: Boat,1997,,Basic Model,Universal Building Set
+1779-1,Sabah Promotional Set: Helicopter,1997,10.0,Basic Model,Universal Building Set
+1782-1,Discovery Station,1997,,Divers,Town
+1785-1,Introducing Crater Critters,1995,146.0,Space,Space
+1786-1,Jailbreak Joe,1995,189.0,Police,Town
+1787-1,Crater Cruiser,1995,183.0,Unitron,Space
+1788-1,Treasure Chest,1995,,Pirates I,Pirates
+1789-1,Star Hawk II,1995,292.0,Unitron,Space
+1790-1,Shark Fisherman,1994,20.0,Recreation,Town
+1791-1,Windsurfer & Van,1994,70.0,Recreation,Town
+1792-1,Pleasure Cruiser,1994,65.0,Recreation,Town
+1793-1,Space Station Zenon,1995,351.0,Unitron,Space
+1794-1,Dragon Master Chariot,1994,36.0,Castle,Castle
+1795-1,Imperial Cannon,1994,,Pirates,Pirates
+1796-1,Freestyle Large Monster Bucket,1996,653.0,Freestyle,Freestyle
+1798-1,Building Table,1995,3.0,Supplemental,Universal Building Set
+1-8,Little House Set,1970,,Minitalia,Minitalia
+180-1,Train with 5 Wagons and Circle of Track,1972,,4.5V,Train
+1802-1,Tidy Treasure,1996,,Pirates I,Pirates
+1804-1,Crossbow Boat,1996,21.0,Royal Knights,Castle
+1806-1,Underwater Scooter,1996,16.0,Aquanauts,Aquazone
+1807-1,Santa Claus and Sleigh,1995,17.0,Christmas,Seasonal
+1808-1,Light Aircraft and Ground Support,1996,121.0,Airport,Town
+1809-1,Condor Promotional Airplane,1996,29.0,Airport,Universal Building Set
+181-1,"Complete Train Set with Motor, Signals and Switch",1972,,4.5V,Train
+1815-1,Paradisa Lifeguard,1996,,Paradisa,Town
+1817-1,Sea Plane with Hut and Boat,1996,134.0,Recreation,Town
+1818-1,Aircraft and Ground Support Equipment and Vehicle,1996,203.0,Airport,Town
+1819-1,Large Bucket,1995,950.0,Basic Set,Universal Building Set
+182-1,Train Set with Signal,1975,368.0,4.5V,Train
+1821-1,Rally Racers,1996,195.0,Race,Town
+1822-1,Sea Claw 7 / Neptune III,1995,,Aquanauts,Aquazone
+1823-1,Sabah Promotional Set: Yacht,1997,10.0,Basic Model,Universal Building Set
+1824-1,Flying Duck,1997,,Basic Model,Universal Building Set
+1825-1,Racing Car,1997,19.0,Basic Model,Universal Building Set
+1826-1,Bird? Boat? Plane?,1997,,Basic Model,Universal Building Set
+1827-1,Helicopter,1997,,Basic Model,Universal Building Set
+1828-1,{Basic Promotional Set},1995,7.0,Basic Model,Universal Building Set
+183-1,Complete Train Set with Motor and Signal,1976,,4.5V,Train
+1831-1,Maersk Line Container Lorry,1995,206.0,Cargo,Town
+1831-2,Maersk Sealand Container Lorry,1995,206.0,Cargo,Town
+1836-1,Freestyle Cat,1995,,Freestyle,Freestyle
+1837-1,Freestyle Duck,1995,11.0,Freestyle,Freestyle
+1838-1,Freestyle Bird,1995,,Freestyle,Freestyle
+1839-1,Freestyle Fish,1995,21.0,Freestyle,Freestyle
+1840-1,Freestyle Set,1995,24.0,Freestyle,Freestyle
+1841-1,Plane,1999,15.0,Classic Basic,Universal Building Set
+1843-1,Space/Castle Value Pack,1996,2.0,Technic,Technic
+1843-2,Spyrius Fold-Wing Spacecraft,1996,,Spyrius,Space
+1843-3,Royal Knight's Catapult,1996,,Royal Knights,Castle
+1845-1,20th Anniversary Jackpot Bucket,1993,,Basic Set,Universal Building Set
+1846-1,Freestyle Set,1996,25.0,Freestyle,Freestyle
+1847-1,Freestyle Set,1996,33.0,Freestyle,Freestyle
+1850-1,Freestyle Set,1995,,Freestyle,Freestyle
+1853-1,Navigator,1996,,Time Cruisers,Time Cruisers
+1854-1,House with Roof-Windows ( Velux ),1996,152.0,Building,Town
+1857-1,Basic Bricks,1996,950.0,Supplemental,Universal Building Set
+1858-1,Droid Scout,1996,23.0,Exploriens,Space
+1859-1,Sabah Promotional Set: Aeroplane,1997,9.0,Basic Model,Universal Building Set
+1860-1,Freestyle Set,1995,,Freestyle,Freestyle
+1863-1,Freestyle Trial Set,1995,,Freestyle,Freestyle
+1865-1,Airliner,1994,28.0,Airport,Universal Building Set
+1867-1,Medium Bulk Bucket,1997,,Basic Set,Universal Building Set
+1868-1,Freestyle Box,1996,,Freestyle,Freestyle
+1869-1,South African Flag,1996,,Basic Model,Universal Building Set
+1870-1,Freestyle Set,1995,43.0,Freestyle,Freestyle
+18703535-1,Hamster Play Time - Friends Magazine - Polish Edition,2016,,Books,Books
+1871-1,Pirates Cannon,1994,17.0,Pirates I,Pirates
+1872-1,Imperial Guard Camp,1994,28.0,Pirates,Pirates
+1873-1,Pirate Treasure,1994,,Pirates I,Pirates
+1874-1,Polly Pick-Up,1993,,Basic Set,Universal Building Set
+1875-1,Meteor Monitor,1990,,Blacktron I,Space
+1876-1,Soil Scooper,1990,73.0,Traffic,Town
+1877-1,Crusader's Cart,1990,60.0,Forestmen,Castle
+1878-1,Small Bucket,1991,406.0,Basic,Universal Building Set
+1879-1,Large Bucket,1992,,Basic,Universal Building Set
+1880-1,XL Bucket,1992,,Basic,Universal Building Set
+1881-1,Small Bucket,1991,288.0,Basic,Universal Building Set
+1882-1,Large Bucket,1991,,Basic,Universal Building Set
+1884-1,Small Bucket,1992,,Basic,Universal Building Set
+1885-1,XL Bucket,1992,465.0,Basic,Universal Building Set
+1887-1,Scout Patrol Ship,1992,30.0,Blacktron II,Space
+1888-1,Black Knights Guardshack,1992,,Black Knights,Castle
+1889-1,Pirate's Treasure Hold,1992,,Pirates I,Pirates
+1890-1,Octan Racer,1992,,Race,Town
+1891-1,Four Set Value Pack,1992,4.0,Value Packs,Value Packs
+1895-1,Sky Patrol,1992,89.0,Police,Town
+1896-1,Trauma Team,1992,,Hospital,Town
+1898-1,Weetabix Dragster,1989,27.0,Race,Town
+1899-1,Weetabix Racer,1989,,Race,Town
+190-1,Farm Set,1974,526.0,Building Set with People,Building Set with People
+1901-2,Mini Basic Set,1984,,Basic Set,Universal Building Set
+1905-1,Mini Basic Set,1982,36.0,Basic Set,Universal Building Set
+1906-1,Majisto's Tower,1994,,Castle,Castle
+1910-1,Promo Basic Set,1982,,Basic Set,Universal Building Set
+1911-1,Basic Set,1983,34.0,Basic Set,Universal Building Set
+1912-1,"LEGO Building Set A, Car",1983,,Basic Model,Universal Building Set
+1913-1,"LEGO Building Set B, Boat",1983,27.0,Basic Model,Universal Building Set
+1914-1,"LEGO Building Set C, Helicopter",1983,20.0,Basic Model,Universal Building Set
+1915-1,"LEGO Building Set D, Aircraft",1983,20.0,Basic Model,Universal Building Set
+1916-1,Starion Patrol,1993,23.0,Space Police II,Space
+1917-1,King's Catapult,1993,22.0,Black Knights,Castle
+19-2,Locomotive Piston Assemblies,1977,6.0,Train,Service Packs
+1920-1,Promo Basic Set,1982,,Basic Set,Universal Building Set
+192-1,Policemen,1977,86.0,Building Set with People,Building Set with People
+1922-2,Basic Building Set,1983,,Basic Set,Universal Building Set
+1923-1,Viking Line Ferry,1989,184.0,Ferries,Universal Building Set
+1924-1,Motorcycle,1983,,Riding Cycle,Technic
+1924-2,Viking Line Ferry,1992,,Ferries,Universal Building Set
+1929-1,Guardsman,1988,13.0,Basic Model,Universal Building Set
+1932-1,Basic Building Set + Storage Case,1984,,Basic Set,Universal Building Set
+194-1,Family,1976,,Building Set with People,Building Set with People
+1944-1,Basic Set with Storage Case,1983,142.0,Basic Set,Universal Building Set
+195-1,Airplane,1975,89.0,Building Set with People,Building Set with People
+1952-1,Dairy Tanker,1989,,Food & Drink,Town
+1953-1,Mouse,1989,,Basic Model,Universal Building Set
+1954-1,Surveillance Scooter,1995,23.0,Spyrius,Space
+1954-2,Basic Set with Storage Case,1984,141.0,Basic Set,Universal Building Set
+1955-1,Color Line Ferry,1993,244.0,Ferries,Universal Building Set
+1958-1,Windsurfer,1993,,Recreation,Town
+1959-1,Ultra-Light,1993,30.0,Airport,Town
+1960-2,Special Value 96 pieces (Canadian Set),1985,104.0,Basic,Universal Building Set
+196-1,Antique Car,1975,115.0,Building Set with People,Building Set with People
+1962-1,Basic Building Set,1985,219.0,Basic,Universal Building Set
+1963-1,Basic Set with Storage Case,1986,,Basic,Universal Building Set
+1964-1,Basic Building Set,1985,,Basic,Universal Building Set
+1965-1,Basic Building Set,1985,38.0,Basic Set,Universal Building Set
+1966-1,Car Repair Shop,1985,300.0,Traffic,Town
+1967-1,System Bonus Pack,1985,,Value Packs,Value Packs
+1967-2,Town Value Pack,1985,,Traffic,Town
+1968-1,Space Express,1985,,Classic Space,Space
+1969-1,Mini Robot,1993,38.0,Space Police II,Space
+1969-2,Space Value Pack,1985,3.0,Classic Space,Space
+1970-1,Pirate's Gun Cart,1993,,Pirates I,Pirates
+197-1,Farm Vehicle and Animals,1976,120.0,Building Set with People,Building Set with People
+1971-1,Black Knight's Battering Ram,1993,,Black Knights,Castle
+1972-1,Go-Cart,1985,,Race,Technic
+1973-1,Emirates Airliner,1989,,Airport,Town
+1974-1,Legoland Triple Pack,1989,,Value Packs,Value Packs
+1974-2,Flyercracker USA,1989,74.0,Airport,Town
+1974-3,Smuggler's Hayride,1989,,Forestmen,Castle
+1974-4,Star Quest,1989,,Futuron,Space
+1976-1,Town 3-Pack,1984,3.0,Classic Town,Town
+1977-1,Space Value Pack,1983,3.0,Classic Space,Space
+1978-1,Build-A-Santa,1991,,Christmas,Seasonal
+1978-2,Town Value Pack,1983,3.0,Classic Town,Town
+1979-1,Snowman,1991,42.0,Christmas,Seasonal
+1979-2,Town Value Pack,1984,,Classic Town,Town
+1980-1,Santa's Elves,1991,30.0,Christmas,Seasonal
+198-1,Cowboys,1977,,Building Set with People,Building Set with People
+1983-1,Space Value Pack,1984,3.0,Classic Space,Space
+1990-1,F1 Race Car,1993,35.0,Race,Town
+199-1,Scooter,1977,41.0,Building Set with People,Building Set with People
+1991-1,Racing Pickup,1993,81.0,Race,Town
+1992-1,Dragsters,1993,,Race,Town
+1993-1,Race Value Pack,1993,3.0,Race,Town
+1994-1,Turtle Bucket with Motor,1992,,Basic Set,Universal Building Set
+1995-1,Racer,1999,15.0,Classic Basic,Universal Building Set
+1997-1,Town Value Pack,1985,3.0,Classic Town,Town
+1998-1,Silja Line Ferry,1991,,Ferries,Universal Building Set
+1999-1,Space Value Pack,1985,3.0,Classic Space,Space
+20001-1,BrickMaster,2007,103.0,Creator,Creator
+20002-1,Fire Truck,2008,56.0,Fire,Town
+20003-1,Dinosaur,2008,,Creator,Creator
+2000409-1,Window Exploration Bag,2010,5200.0,Educational and Dacta,Educational and Dacta
+20004-1,Jungle Cruiser,2008,83.0,Kingdom of the Crystal Skull,Indiana Jones
+2000413-1,Connections Kit,2010,2045.0,Master Building Academy,Master Building Academy
+2000414-1,Starter Kit,2010,239.0,Educational and Dacta,Educational and Dacta
+2000415-1,Identity and Landscape Kit,2010,1536.0,Master Building Academy,Master Building Academy
+2000416-1,Duck,2012,6.0,Educational and Dacta,Educational and Dacta
+2000421-1,FLL Trophy Small,2013,233.0,FIRST LEGO League,FIRST LEGO League
+2000422-1,FLL Trophy Medium,2013,,FIRST LEGO League,FIRST LEGO League
+2000423-1,FLL Trophy Large,2013,,FIRST LEGO League,FIRST LEGO League
+2000424-1,Story Starter (Sample Set),2014,96.0,Educational and Dacta,Educational and Dacta
+2000430-1,Identity and Landscape Kit,2013,2844.0,Master Building Academy,Master Building Academy
+2000431-1,Connections Kit,2013,,Master Building Academy,Master Building Academy
+2000445-1,Crossing the River,2016,14.0,Educational and Dacta,Educational and Dacta
+2000446-1,"Building My SG - Reflect, Celebrate, Inspire",2015,243.0,Learning,Educational and Dacta
+20005-1,Winged Rahi (Klakk),2008,38.0,Bionicle,Bionicle
+20006-1,Clone Turbo Tank - Mini,2008,64.0,Star Wars Episode 3,Star Wars
+2000702-1,Mindstorms Education (LME) Replacement Pack 3,2015,4.0,Technic,Educational and Dacta
+20007-1,Republic Attack Cruiser - Mini,2009,,Star Wars Episode 3,Star Wars
+20008-1,Tow Truck,2009,,Creator,Creator
+20009-1,AT-TE Walker - Mini,2009,,Star Wars Episode 2,Star Wars
+200-1,Family,1974,78.0,Building Set with People,Building Set with People
+20010-1,Republic Gunship - Mini,2009,,Star Wars Episode 2,Star Wars
+20011-1,Garbage Truck,2009,74.0,Creator,Creator
+20012-1,Click,2009,33.0,Bionicle,Bionicle
+20013-1,Mini Neptune Carrier,2010,63.0,Mini,Atlantis
+20014-1,4 x 4 Dynamo,2010,69.0,Creator,Creator
+20015-1,Alligator,2010,89.0,Creator,Creator
+20016-1,Imperial Shuttle - Mini,2010,70.0,Star Wars Episode 4/5/6,Star Wars
+20017-1,Dagger Trap,2010,52.0,Prince of Persia,Prince of Persia
+20018-1,AT-AT Walker - Mini,2010,,Star Wars Episode 4/5/6,Star Wars
+20019-1,Slave I,2011,,Star Wars Episode 4/5/6,Star Wars
+200-2,Building Ideas Book,1985,1.0,Gear,Gear
+20020-1,Mini Turbo Shredder,2011,,Ninjago,Ninjago
+20021-1,Bounty Hunter Gunship - Mini,2011,81.0,Star Wars Clone Wars,Star Wars
+200-3,"LEGO Town Plan Board, Plastic",1957,1.0,Town Plan,Classic
+200-4,"LEGO Town Plan Board, Continental European Cardboard Version",1959,1.0,Town Plan,Classic
+200-5,"LEGO Town Plan Board, UK / Australian Cardboard Version",1962,1.0,Town Plan,Classic
+2008-1,Heart 2008,2008,92.0,Valentine,Seasonal
+2009-2,Heart 2009,2009,92.0,Valentine,Seasonal
+200A-1,LEGO Town Plan Wooden Board,1957,1.0,Town Plan,Classic
+200M-1,LEGO Town Plan Wooden Board,1957,1.0,Town Plan,Classic
+20-1,Universal Building Set,1976,217.0,Basic Set,Universal Building Set
+2010-1,Happy Holidays - The Christmas Game,2010,139.0,Game,Gear
+2011-2,Lego Duck,2011,91.0,Other,Other
+20200-1,"MBA Level One - Kit 1, Space Designer",2011,,Master Building Academy,Master Building Academy
+20201-1,"MBA Level One - Kit 2, Microbuild Designer",2011,221.0,Master Building Academy,Master Building Academy
+20202-1,"MBA Level One - Kit 3, Robot Designer",2011,,Master Building Academy,Master Building Academy
+20203-1,"MBA Level Two - Kit 4, Flight Designer",2011,,Master Building Academy,Master Building Academy
+20204-1,"MBA Level Two - Kit 5, Creature Designer",2012,232.0,Master Building Academy,Master Building Academy
+20205-1,MBA Level Two - Kit 6 Auto Designer,2012,,Master Building Academy,Master Building Academy
+20206-1,"MBA Level Three - Kit 7, The Lost Village",2012,229.0,Master Building Academy,Master Building Academy
+20207-1,"MBA Level Three - Kit 8, The Forbidden Bridge",2012,220.0,Master Building Academy,Master Building Academy
+20208-1,"MBA Level Three - Kit 9, The Dark Lair",2012,,Master Building Academy,Master Building Academy
+20214-1,MBA Adventure Designer (Kits 7 - 9 Redesign),2013,3.0,Master Building Academy,Master Building Academy
+20215-1,MBA Invention Designer (Kits 10 - 12),2013,675.0,Master Building Academy,Master Building Academy
+20216-1,MBA Robot & Micro Designer (Kits 2 - 3 Redesign),2013,,Master Building Academy,Master Building Academy
+20217-1,MBA Action Designer (Kits 4 - 6 Redesign),2013,,Master Building Academy,Master Building Academy
+2025-1,Boat,1999,12.0,Classic Basic,Universal Building Set
+2027-1,Pen Pack Alpha,2000,,Gear,Gear
+2032-1,Helicopter,1999,18.0,Classic Basic,Universal Building Set
+2045-1,Car,1999,,Classic Basic,Universal Building Set
+2047-1,Plane,1999,13.0,Classic Basic,Universal Building Set
+205-2,Universal Figure Set,1978,118.0,Building Set with People,Building Set with People
+2063-1,Stormer 2.0,2011,31.0,Heroes,Hero Factory
+2064-1,Air Ambulance,2007,116.0,Hospital,Town
+2065-1,Furno 2.0,2011,30.0,Heroes,Hero Factory
+2067-1,Evo 2.0,2011,,Heroes,Hero Factory
+2068-1,Nex 2.0,2011,31.0,Heroes,Hero Factory
+2069-1,Boat,1999,15.0,Classic Basic,Universal Building Set
+2070-1,Ring Me Rabbit,1987,,Duplo,Duplo
+2075-1,Prop Plane,1999,14.0,Classic Basic,Universal Building Set
+208-1,Mother with Baby Carriage,1978,,Building Set with People,Building Set with People
+2-1,Extra Large Tires & Hubs,1982,,Technic,Technic
+2-10,Mini-Wheel Model Maker No. 2,1971,63.0,Vehicle,Legoland
+21000-1,Sears Tower,2008,,Architecture,Architecture
+21000-2,Willis Tower,2011,,Architecture,Architecture
+21001-1,John Hancock Center,2008,,Architecture,Architecture
+21002-1,Empire State Building,2009,,Architecture,Architecture
+21003-1,Seattle Space Needle,2009,,Architecture,Architecture
+21004-1,Solomon R. Guggenheim Museum,2009,208.0,Architecture,Architecture
+21005-1,Fallingwater,2009,,Architecture,Architecture
+21006-1,The White House,2010,,Architecture,Architecture
+21007-1,Rockefeller Center,2010,,Architecture,Architecture
+21008-1,Burj Khalifa,2011,,Architecture,Architecture
+21009-1,Farnsworth House,2011,546.0,Architecture,Architecture
+210-1,Cowboys,1976,39.0,Building Set with People,Building Set with People
+21010-1,Robie House,2011,2276.0,Architecture,Architecture
+21011-1,Brandenburg Gate,2011,,Architecture,Architecture
+21012-1,Sydney Opera House,2012,,Architecture,Architecture
+21013-1,Big Ben,2012,346.0,Architecture,Architecture
+21014-1,Villa Savoye,2012,659.0,Architecture,Architecture
+21015-1,The Leaning Tower of Pisa,2013,,Architecture,Architecture
+21016-1,Sungnyemun,2012,,Architecture,Architecture
+21017-1,Imperial Hotel,2013,1187.0,Architecture,Architecture
+21018-1,United Nations Headquarters,2013,596.0,Architecture,Architecture
+21019-1,Eiffel Tower,2014,,Architecture,Architecture
+210-2,Small Store Set,1958,,Town Plan,Classic
+21020-1,The Trevi Fountain,2014,730.0,Architecture,Architecture
+21021-1,Marina Bay Sands,2014,601.0,Architecture,Architecture
+21022-1,Lincoln Memorial,2015,,Architecture,Architecture
+21023-1,Flatiron Building,2015,,Architecture,Architecture
+21024-1,Louvre,2015,694.0,Architecture,Architecture
+21026-1,Venice,2016,,Skylines,Architecture
+21027-1,Berlin,2016,289.0,Skylines,Architecture
+21028-1,New York City,2016,597.0,Skylines,Architecture
+21029-1,Buckingham Palace,2016,779.0,Architecture,Architecture
+21030-1,United States Capitol Building,2016,1031.0,Architecture,Architecture
+21031-1,Burj Khalifa,2016,,Architecture,Architecture
+21032-1,Sydney,2017,361.0,Skylines,Architecture
+21033-1,Chicago,2017,444.0,Skylines,Architecture
+21034-1,London,2017,468.0,Skylines,Architecture
+21035-1,Solomon R. Guggenheim Museum,2017,744.0,Architecture,Architecture
+21036-1,Arc de Triomphe,2017,382.0,Architecture,Architecture
+21050-1,Architecture Studio,2013,1210.0,Architecture,Architecture
+2-11,Medium Basic LEGO Set,1976,130.0,Minitalia,Minitalia
+21100-1,Shinkai 6500 Submarine,2011,412.0,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21101-1,Hayabusa,2012,364.0,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21102-1,Minecraft Micro World,2012,458.0,Minecraft,Minecraft
+21103-1,Back to the Future Delorean,2013,,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21104-1,Mars Science Laboratory Curiosity Rover,2014,,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21105-1,Minecraft Micro World: The Village,2013,,Minecraft,Minecraft
+21106-1,Minecraft Micro World: The Nether,2013,469.0,Minecraft,Minecraft
+21107-1,Micro World - The End,2014,,Minecraft,Minecraft
+21108-1,Ghostbusters,2014,507.0,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21109-1,Exo-Suit,2014,,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+211-1,Mother and Baby with Dog,1976,,Building Set with People,Building Set with People
+21110-1,Research Institute,2014,163.0,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+2111-1,Kai,2011,19.0,Ninjago,Ninjago
+21113-1,The Cave,2014,249.0,Minecraft,Minecraft
+21114-1,The Farm,2014,,Minecraft,Minecraft
+21115-1,The First Night,2014,,Minecraft,Minecraft
+21116-1,Crafting Box,2014,,Minecraft,Minecraft
+21117-1,The Ender Dragon,2014,,Minecraft,Minecraft
+21118-1,The Mine,2014,921.0,Minecraft,Minecraft
+21119-1,The Dungeon,2015,,Minecraft,Minecraft
+211-2,Small House Set,1958,19.0,Town Plan,Classic
+21120-1,The Snow Hideout,2015,327.0,Minecraft,Minecraft
+2112-1,Cole,2011,,Ninjago,Ninjago
+21121-1,The Desert Outpost,2015,518.0,Minecraft,Minecraft
+21122-1,The Nether Fortress,2015,570.0,Minecraft,Minecraft
+21123-1,The Iron Golem,2016,208.0,Minecraft,Minecraft
+21124-1,The End Portal,2016,,Minecraft,Minecraft
+21125-1,The Jungle Tree House,2016,,Minecraft,Minecraft
+21126-1,The Wither,2016,318.0,Minecraft,Minecraft
+21127-1,The Fortress,2016,,Minecraft,Minecraft
+21128-1,The Village,2016,,Minecraft,Minecraft
+21129-1,The Mushroom Island,2017,,Minecraft,Minecraft
+21130-1,The Nether Railway,2017,,Minecraft,Minecraft
+2113-1,Zane,2011,19.0,Ninjago,Ninjago
+21131-1,The Ice Spikes,2017,454.0,Minecraft,Minecraft
+21132-1,The Jungle Temple,2017,,Minecraft,Minecraft
+21133-1,The Witch Hut,2017,502.0,Minecraft,Minecraft
+21134-1,The Waterfall Base,2017,729.0,Minecraft,Minecraft
+21135-1,The Crafting Box 2.0,2017,717.0,Minecraft,Minecraft
+21136-1,The Ocean Monument,2017,,Minecraft,Minecraft
+21137-1,The Mountain Cave,2017,2862.0,Minecraft,Minecraft
+2114-1,Chopov,2011,20.0,Ninjago,Ninjago
+2115-1,Bonezai,2011,21.0,Ninjago,Ninjago
+2116-1,Krazi,2011,22.0,Ninjago,Ninjago
+211701-1,Batman,2017,8.0,Batman,Super Heroes
+21-2,Truck,1971,33.0,Minitalia,Minitalia
+21200-1,Life of George,2011,144.0,Other,Other
+21201-1,Life of George II,2012,,Other,Other
+21204-1,Town Master,2014,,Fusion,Fusion
+21205-1,Battle Towers,2014,,Fusion,Fusion
+21206-1,Create and Race,2014,222.0,Fusion,Fusion
+21208-1,Resort Designer,2014,262.0,Fusion,Fusion
+212-1,Small House - Left Set,1958,,Town Plan,Classic
+2121-1,Jack in the Box Promotional Set: Stomper,1997,,Basic Model,Universal Building Set
+212-2,Scooter,1976,,Building Set with People,Building Set with People
+2122-1,Jack in the Box Promotional Set: Bob,1997,,Basic Model,Universal Building Set
+2123-1,Jack in the Box Promotional Set: Spinner,1997,,Basic Model,Universal Building Set
+2125-1,Green Bucket,1997,,Duplo,Duplo
+2126-1,Train Cars,1997,,9V,Train
+2127-1,Jack in the Box Promotional Set: Nanas,1997,,Basic Model,Universal Building Set
+2129-1,Blast-Off Dragster,1997,63.0,Race,Technic
+2130-1,Danone Promotional Set: Duck,1998,7.0,Basic Model,Universal Building Set
+21301-1,Birds,2015,579.0,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21302-1,The Big Bang Theory,2015,498.0,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21303-1,WALL•E [Original Version],2015,,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21303-2,WALL•E [Fixed Neck Version],2015,675.0,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21304-1,Doctor Who,2015,,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21305-1,Maze,2016,,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21306-1,Yellow Submarine,2016,,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21307-1,Caterham Seven 620R,2016,,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21308-1,Adventure Time™,2016,496.0,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+21309-1,LEGO Ideas NASA Apollo Saturn V,2017,1969.0,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+213-1,Airplane Ride,1977,44.0,Building Set with People,Building Set with People
+21310-1,Old Fishing Store,2017,,LEGO Ideas and CUUSOO,LEGO Ideas and CUUSOO
+2131-1,Danone Promotional Set: Hippo,1998,10.0,Basic Model,Universal Building Set
+213-2,Small House - Right Set,1958,21.0,Town Plan,Classic
+2132-1,Danone Promotional Set: Cow,1998,10.0,Basic Model,Universal Building Set
+2133-1,Danone Promotional Set: Impala,1998,,Basic Model,Universal Building Set
+2134-1,Danone Promotional Set: Bison,1998,10.0,Basic Model,Universal Building Set
+2135-1,Sabah Promotional Set: Aircraft,1997,,Basic Model,Universal Building Set
+2136-1,Sabah Promotional Set: Airplane,1997,12.0,Basic Model,Universal Building Set
+2137-1,Sabah Promotional Set: Swamp Boat,1997,8.0,Basic Model,Universal Building Set
+2138-1,Sabah Promotional Set: Helicopter,1997,8.0,Basic Model,Universal Building Set
+2139-1,Sabah Promotional Set: Steam Liner,1998,12.0,Basic Model,Universal Building Set
+2140-1,ANWB Roadside Assistance Crew,1996,258.0,Traffic,Town
+214-1,Road Repair,1977,64.0,Building Set with People,Building Set with People
+214.10-1,"1 x 2 x 4 Glass Door in Frame, Left",1961,26.0,Supplemental,Classic
+214.1-1,1 x 6 x 3 Window with Frame,1961,12.0,Supplemental,Classic
+2141-1,Surge 2.0,2011,,Heroes,Hero Factory
+214-2,"Ten Windows and Doors, Red",1958,,Supplemental,Classic
+214.2-1,1 x 6 x 2 Triple-Pane Window in Frame,1961,16.0,Supplemental,Classic
+2142-1,Breez 2.0,2011,29.0,Heroes,Hero Factory
+214-3,"Ten Windows and Doors, White",1958,10.0,Supplemental,Classic
+214.3-1,1 x 6 x 2 Double-Pane Window in Frame w/Shutters,1961,16.0,Supplemental,Classic
+2143-1,Rocka 3.0,2011,,Heroes,Hero Factory
+214.4-1,1 x 4 x 2 Window in Frame,1961,18.0,Supplemental,Classic
+2144-1,Nex 3.0,2011,29.0,Heroes,Hero Factory
+214.5-1,1 x 3 x 2 Window in Frame,1961,,Supplemental,Classic
+2145-1,Stormer 3.0,2011,,Heroes,Hero Factory
+214.6-1,1 x 2 x 2 Window in Frame,1961,,Supplemental,Classic
+2146-1,Freestyle with Storage Case,1996,819.0,Freestyle,Freestyle
+214.7-1,1 x 1 x 2 Window Frame,1961,38.0,Supplemental,Classic
+2147-1,Dragon Fly,1997,182.0,Airport,Town
+214.8-1,1 x 2 x 1 Window Frame,1961,38.0,Supplemental,Classic
+2148-1,LEGO Truck,1997,105.0,Traffic,Town
+2148-2,LEGO Truck [Lego Toy Fair 1998 25th Anniversary Edition],1998,,Traffic,Town
+214.9-1,1 x 1 x 1 Window Frame,1961,40.0,Supplemental,Classic
+2149-1,Color Line Container Lorry,1997,184.0,Cargo,Town
+2150-1,Train Station,1996,,9V,Train
+215-1,Red Indians,1977,81.0,Building Set with People,Building Set with People
+2151-1,Robo Raider,1997,137.0,RoboForce,Space
+215-2,2 x 8 Bricks,1958,30.0,Supplemental,Classic
+2152-1,Robo Raptor,1997,,RoboForce,Space
+2153-1,Robo Stalker,1997,279.0,RoboForce,Space
+2154-1,Robo Master,1997,,RoboForce,Space
+2155-1,Aircraft,2000,,Basic,Universal Building Set
+2156-1,Car,2000,17.0,Basic,Universal Building Set
+2157-1,Boat,2000,16.0,Basic,Universal Building Set
+2158-1,Helicopter,2000,10.0,Basic,Universal Building Set
+2159-1,9V Train Track Starter Collection,2006,,9V,Train
+2160-1,Crystal Scavenger,1997,112.0,Aquaraiders I,Aquazone
+216-1,2 x 10 Bricks,1958,25.0,Supplemental,Classic
+2161-1,Aqua Dozer,1997,135.0,Aquaraiders I,Aquazone
+2162-1,Hydro Reef Wrecker,1997,287.0,Aquaraiders I,Aquazone
+2163-1,Sabah Promotional Set: Toucan,1997,,Basic Model,Universal Building Set
+2164-1,Sabah Promotional Set: Whale,1997,,Basic Model,Universal Building Set
+2165-1,Rhinocerous,1998,10.0,Basic Model,Universal Building Set
+2166-1,Animal,1998,,Basic Model,Universal Building Set
+2167-1,Sabah Promotional Set: Penguin,1997,8.0,Basic Model,Universal Building Set
+2170-1,Cole DX,2011,,Ninjago,Ninjago
+217-1,Service Station,1977,210.0,Building Set with People,Building Set with People
+2171-1,Zane DX,2011,22.0,Ninjago,Ninjago
+217-2,4 x 4 Corner Bricks,1958,30.0,Supplemental,Classic
+2172-1,Nya,2011,,Ninjago,Ninjago
+2173-1,Nuckal,2011,26.0,Ninjago,Ninjago
+2174-1,Kruncha,2011,,Ninjago,Ninjago
+2175-1,Wyplash,2011,,Ninjago,Ninjago
+218-1,Firemen,1977,277.0,Building Set with People,Building Set with People
+2181-1,Infomaniac,1997,,Supplemental,Town
+218-2,2 x 4 Bricks,1958,,Supplemental,Classic
+2182-1,Bulk 3.0,2011,30.0,Heroes,Hero Factory
+2183-1,Stringer 3.0,2011,,Heroes,Hero Factory
+2186-1,Seaplane,1997,,Freestyle,Freestyle
+2187-1,Racer,1997,64.0,Freestyle,Freestyle
+2188-1,Speedboat,1997,58.0,Freestyle,Freestyle
+219-1,2 x 3 Bricks,1958,,Supplemental,Classic
+2191-1,Furno 3.0,2011,,Heroes,Hero Factory
+2192-1,Drilldozer,2011,,Villains,Hero Factory
+2193-1,Jetbug,2011,63.0,Villains,Hero Factory
+2194-1,Nitroblast,2011,,Villains,Hero Factory
+2199-1,Large Bulk Bucket,1997,466.0,Basic Set,Universal Building Set
+220-1,2 x 2 Bricks,1958,,Supplemental,Classic
+22-1,Car,1971,47.0,Minitalia,Minitalia
+221-1,Idea Book #1,1973,0.0,Books,Books
+221-2,1 x 2 Bricks,1958,156.0,Supplemental,Classic
+222-1,Building Ideas Book,1976,,Gear,Gear
+222-2,1 x 1 Bricks,1958,,Supplemental,Classic
+2229-1,Bucketful of Fun,1998,201.0,Classic Basic,Universal Building Set
+2230-1,Helicopter and Raft,2008,,Harbor,Town
+2231-1,Waspix,2011,48.0,Villains,Hero Factory
+223-2,1 x 1 Round Bricks,1958,,Supplemental,Classic
+2232-1,Raw-Jaw,2011,52.0,Villains,Hero Factory
+2233-1,Fangz,2011,,Villains,Hero Factory
+2234-1,Police Chase,1998,,Traffic,Town
+2235-1,Fire Lord,2011,,Villains,Hero Factory
+2236-1,Scorpio,2011,104.0,Villains,Hero Factory
+224-1,2 x 2 & 2 x 4 Curved Bricks,1956,,Supplemental,Classic
+224-3,2 x 2 Curved Bricks,1958,120.0,Supplemental,Classic
+2250-1,Advent Calendar 2000,2000,,Advent,Seasonal
+2250-10,Advent Calendar 2000 (Day 9) Duck,2000,7.0,Advent Sub-Set,Seasonal
+2250-11,Advent Calendar 2000 (Day 10) Plane,2000,,Advent Sub-Set,Seasonal
+2250-12,Advent Calendar 2000 (Day 11) Elf,2000,10.0,Advent Sub-Set,Seasonal
+2250-13,Advent Calendar 2000 (Day 12) Duck,2000,7.0,Advent Sub-Set,Seasonal
+2250-14,Advent Calendar 2000 (Day 13) Boat,2000,9.0,Advent Sub-Set,Seasonal
+2250-15,Advent Calendar 2000 (Day 14) Rhinocerous,2000,10.0,Advent Sub-Set,Seasonal
+2250-16,Advent Calendar 2000 (Day 15) Girl,2000,,Advent Sub-Set,Seasonal
+2250-17,Advent Calendar 2000 (Day 16) Plane,2000,,Advent Sub-Set,Seasonal
+2250-18,Advent Calendar 2000 (Day 17) Bull,2000,,Advent Sub-Set,Seasonal
+2250-19,Advent Calendar 2000 (Day 18) Hovercraft,2000,10.0,Advent Sub-Set,Seasonal
+2250-2,Advent Calendar 2000 (Day 1) Plane,2000,12.0,Advent Sub-Set,Seasonal
+2250-20,Advent Calendar 2000 (Day 19) Christmas Bunny,2000,,Advent Sub-Set,Seasonal
+2250-21,Advent Calendar 2000 (Day 20) Jet,2000,,Advent Sub-Set,Seasonal
+2250-22,Advent Calendar 2000 (Day 21) Parrot,2000,,Advent Sub-Set,Seasonal
+2250-23,Advent Calendar 2000 (Day 22) Truck,2000,10.0,Advent Sub-Set,Seasonal
+2250-24,Advent Calendar 2000 (Day 23) Helicopter,2000,,Advent Sub-Set,Seasonal
+2250-25,Advent Calendar 2000 (Day 24) Santa,2000,11.0,Advent Sub-Set,Seasonal
+2250-3,Advent Calendar 2000 (Day 2) Snowman,2000,,Advent Sub-Set,Seasonal
+2250-4,Advent Calendar 2000 (Day 3) Ship,2000,,Advent Sub-Set,Seasonal
+2250-5,Advent Calendar 2000 (Day 4) Boy,2000,,Advent Sub-Set,Seasonal
+2250-6,Advent Calendar 2000 (Day 5) Elephant,2000,,Advent Sub-Set,Seasonal
+2250-7,Advent Calendar 2000 (Day 6) Waterplane,2000,,Advent Sub-Set,Seasonal
+2250-8,Advent Calendar 2000 (Day 7) Giraffe,2000,13.0,Advent Sub-Set,Seasonal
+2250-9,Advent Calendar 2000 (Day 8) Boat,2000,10.0,Advent Sub-Set,Seasonal
+225-1,1 x 6 and 1 x 8 Bricks,1958,54.0,Supplemental,Classic
+2254-1,Mountain Shrine,2011,,Ninjago,Ninjago
+2255-1,Sensei Wu,2011,20.0,Ninjago,Ninjago
+2256-1,Lord Garmadon,2011,23.0,Ninjago,Ninjago
+2257-1,Spinjitzu Starter Set,2011,,Ninjago,Ninjago
+2258-1,Ninja Ambush,2011,71.0,Ninjago,Ninjago
+2259-1,Skull Motorbike,2011,156.0,Ninjago,Ninjago
+2260-1,Ice Dragon Attack,2011,,Ninjago,Ninjago
+226-1,8 Named Beams,1958,8.0,Supplemental,Classic
+226-2,Idea Book,1981,0.0,Books,Books
+2263-1,Turbo Shredder,2011,298.0,Ninjago,Ninjago
+227-1,4 x 8 Curved & 2 x 8 Plates,1958,5.0,Supplemental,Classic
+228-1,4 x 8 & 2 x 8 Plates,1958,,Supplemental,Classic
+2282-1,Rocka XL,2011,,Heroes,Hero Factory
+2283-1,Witch Doctor,2011,,Villains,Hero Factory
+229-1,6 x 8 & 2 x 8 Plates,1958,4.0,Supplemental,Classic
+229.1-1,2 x 8 Plates,1962,8.0,Supplemental,Classic
+230-1,Hairdressing Salon,1978,227.0,Homemaker,Homemaker
+230-2,Six Trees and Bushes,1958,6.0,Supplemental,Classic
+2304-1,Large Building Plate,1992,1.0,Duplo,Duplo
+23-1,Delivery Truck Set,1971,,Minitalia,Minitalia
+231-1,Hospital,1978,,Homemaker,Homemaker
+231-2,Esso Pumps/Sign,1956,2.0,Supplemental,Classic
+2312-1,Duplo Supplementary Bricks,1987,39.0,Basic Set,Duplo
+232-1,Bungalow,1978,472.0,Homemaker,Homemaker
+232-2,16 Road Signs,1958,16.0,Supplemental,Classic
+233-1,Light Masts,1958,,Supplemental,Classic
+234-1,Letter Bricks,1958,,Supplemental,Classic
+235-1,Garage Plate and Door (White Base and Door Frame),1958,,Supplemental,Classic
+235-2,Garage Plate and Door (Gray Base and Door Frame),1968,,Supplemental,Classic
+236-1,Garage with Automatic Door (White base and door frame),1956,69.0,Town Plan,Classic
+236-2,Garage and Van,1957,,Town Plan,Classic
+236-3,Garage with Automatic Door (Gray base and door frame),1968,,Town Plan,Classic
+237-1,Number Bricks,1960,50.0,Supplemental,Classic
+238-1,Lego System Idea Book no. 1,1960,,Books,Books
+238-2,Lego System Idea Book (by Samsonite),1961,,Books,Books
+238-3,Lego System Idea Book no. 1,1962,0.0,Books,Books
+238-4,Lego System Ideas Book no. 2,1962,0.0,Books,Books
+238-5,Lego System Ideas Book no. 2,1963,0.0,Books,Books
+238-6,Lego System Idea Book,1963,,Books,Books
+238-7,So Bauen Wir Mit LEGO,1963,,Books,Books
+238-8,Lego System Ideas Book No. 3,1964,,Books,Books
+238-9,Lego System Idea Book (by Samsonite),1964,,Books,Books
+239-1,Wir bauen mit Lego Idea Book,1966,,Books,Books
+239-2,Das große Lego-Buch Idea Book,1968,,Books,Books
+240-1,"Wooden Storage Box Large, Empty",1967,-1.0,Wooden Box Set,Classic
+240-2,Idea Book,1967,1.0,Books,Books
+24-1,Minitalia Train,1971,,Minitalia,Minitalia
+241-1,4.5v Idea Book,1969,0.0,Books,Books
+241601-1,Miku the dragon,2016,,Elves,Elves
+241602-1,Jynx cat,2016,,Elves,Elves
+242-1,International Flags,1958,5.0,Supplemental,Classic
+242.1-1,6 International Flags -1-,1963,6.0,Supplemental,Classic
+242-2,5 Danish Flags,1958,,Supplemental,Classic
+242.2-1,6 International Flags -2-,1963,,Supplemental,Classic
+242.3-1,6 International Flags -3-,1963,6.0,Supplemental,Classic
+242A-1,"International Flags - Italy, Switzerland, Belgium, Germany, Netherlands",1961,5.0,Supplemental,Classic
+242B-1,"International Flags - Britain, France, Austria, Portugal, LEGO",1961,5.0,Supplemental,Classic
+242I-1,International Flags,1958,5.0,Supplemental,Classic
+245-1,Lighting Device Pack,1958,3.0,Supplemental,Classic
+245-2,Two Santas and Tree,1978,,Christmas,Seasonal
+2453-1,Large Bulk Bucket,1998,950.0,Classic Basic,Universal Building Set
+246-2,Santa with Sleigh and Reindeer,1977,,Christmas,Seasonal
+248-2,Factory With Conveyor Belt,1971,208.0,Construction,Legoland
+2490-1,Insectoids Combi Set (Woolworth's UK promo),1998,3.0,Insectoids,Space
+2494-1,400-Piece Purple Bucket,1998,,Basic Set,Universal Building Set
+250-1,Idea Book 250,1987,,Books,Books
+250-3,Aeroplane and Pilot,1974,89.0,Building Set with People,Building Set with People
+2504-1,Spinjitzu Dojo,2011,381.0,Ninjago,Ninjago
+2505-1,Garmadon's Dark Fortress,2011,,Ninjago,Ninjago
+2506-1,Skull Truck,2011,517.0,Ninjago,Ninjago
+2507-1,Fire Temple,2011,1174.0,Ninjago,Ninjago
+2508-1,Blacksmith Shop,2011,,Ninjago,Ninjago
+2509-1,Earth Dragon Defense,2011,,Ninjago,Ninjago
+251-1,Windmill with Miller and his Wife,1974,90.0,Building Set with People,Building Set with People
+2516-1,Ninja Training Outpost,2011,,Ninjago,Ninjago
+2518-1,Nuckal's ATV,2011,174.0,Ninjago,Ninjago
+2519-1,Skeleton Bowling,2011,373.0,Ninjago,Ninjago
+2520-1,Battle Arena,2011,462.0,Ninjago,Ninjago
+252-1,Locomotive with Driver & Passenger,1974,,Building Set with People,Building Set with People
+2521-1,Lightning Dragon Battle,2011,643.0,Ninjago,Ninjago
+2531-1,Rescue Helicopter and Jeep,1998,,Recreation,Town
+253-2,Helicopter and Pilot,1975,49.0,Building Set with People,Building Set with People
+2532-1,Aircraft and Ground Crew,1998,,Airport,Town
+2535-1,Formula 1 Racing Car,1998,,Race,Town
+2536-1,Divers Jet Ski,1998,,Divers,Town
+2537-1,Extreme Team Raft,1998,,Extreme Team,Town
+2538-1,Fright Knights Fire Cart,1998,,Fright Knights,Castle
+2539-1,Fright Knights Flying Machine,1998,21.0,Fright Knights,Castle
+2540-1,Fright Knights Catapult Cart,1998,26.0,Fright Knights,Castle
+254-1,Family,1975,94.0,Building Set with People,Building Set with People
+2541-1,Adventurers Car,1998,24.0,Desert,Adventurers
+2542-1,Adventurers Aeroplane,1998,,Desert,Adventurers
+2543-1,Spacecraft,1998,18.0,UFO,Space
+2544-1,SHELL Promotional Set: TECHNIC Microbike,1998,,Riding Cycle,Technic
+255-2,Farming Scene,1975,,Building Set with People,Building Set with People
+2554-1,Formula 1 Pit Stop,1998,172.0,Race,Town
+2555-1,Swing Set,1998,53.0,Recreation,Belville
+2556-1,Ferrari Formula 1 Racing Car,1997,,Model Team,Model Team
+256-1,Police Officers and Motorcycle,1976,85.0,Building Set with People,Building Set with People
+258-1,Zoo with Baseboard,1976,472.0,Building Set with People,Building Set with People
+2584-1,Biker Bob,1998,15.0,Traffic,Town
+2585-1,Handcar,1998,27.0,9V,Train
+2586-1,Chess King,1998,,Castle,Castle
+260-1,Idea Book,1990,,Books,Books
+260-3,Complete Living Room Set,1971,177.0,Homemaker,Homemaker
+261-1,Bathroom,1979,,Homemaker,Homemaker
+2613-1,Refuse Truck,1990,1.0,Duplo,Duplo
+261-4,Complete Kitchen Set,1971,,Homemaker,Homemaker
+2617-1,Tow Truck,1989,4.0,Duplo,Duplo
+262-2,Complete Children's Room Set,1972,,Homemaker,Homemaker
+263-1,Kitchen Set,1974,173.0,Homemaker,Homemaker
+2636-1,Tow Truck,1984,2.0,Duplo,Duplo
+264-1,Living Room Set,1974,241.0,Homemaker,Homemaker
+2649-1,Sea Explorer,1984,41.0,Duplo,Duplo
+265-1,Bathroom,1974,,Homemaker,Homemaker
+266-1,Child's Bedroom,1974,,Homemaker,Homemaker
+268-1,Family Room,1979,251.0,Homemaker,Homemaker
+269-1,Kitchen,1979,210.0,Homemaker,Homemaker
+2-7,Basic Set,1973,139.0,Basic Set,Universal Building Set
+270-2,"Grandfather Clock, Chair and Table",1973,,Homemaker,Homemaker
+2707-1,Glider,2000,,Basic Model,Universal Building Set
+2708-1,Aircraft,2000,,Basic Model,Universal Building Set
+2709-1,Snowmobile,1996,8.0,Basic Model,Universal Building Set
+2710-1,Helicopter,2000,8.0,Basic Model,Universal Building Set
+271-1,Baby's Cot and Cabinet,1973,,Homemaker,Homemaker
+271-2,Traffic Police Set,1958,6.0,Town Plan,Classic
+271605-1,Lava fighter,2016,,Nexo Knights,Nexo Knights
+2718-1,Aircraft and Ground Crew,2001,,Airport,Town
+2719-1,Heli Monster,1999,9.0,Classic Basic,Universal Building Set
+27-2,Train Contact Bricks,1977,,Train,Service Packs
+272-1,Dressing Table with Mirror,1973,31.0,Homemaker,Homemaker
+2722-1,Ship,2000,12.0,Basic Model,Universal Building Set
+2728-1,The Chopper,1999,11.0,Classic Basic,Universal Building Set
+2729-1,Quattro Leg,1999,,Classic Basic,Universal Building Set
+273-1,Bureau,1973,23.0,Homemaker,Homemaker
+2734-1,Straight Track (Straight Rails),1993,,Duplo,Duplo
+2735-1,Curved Track (Curved Rails),1993,,Duplo,Duplo
+274-1,Colour T.V. and Chair,1974,45.0,Homemaker,Homemaker
+2742-1,Loudspeaker,1999,9.0,Classic Basic,Universal Building Set
+2743-1,Pendulum Nose,1999,,Classic Basic,Universal Building Set
+2744-1,Propeller Man,1999,10.0,Classic Basic,Universal Building Set
+275-1,Table and Chairs,1974,63.0,Homemaker,Homemaker
+2757-1,Bad Monkey,1999,,Classic Basic,Universal Building Set
+2759-1,Rotor Head,1999,,Classic Basic,Universal Building Set
+276-1,Doctor's Office,1977,94.0,Homemaker,Homemaker
+2769-1,Aircraft and Boat,1999,100.0,Recreation,Town
+277-1,Fireplace,1977,86.0,Homemaker,Homemaker
+2774-1,Airshow (Red Tiger),1999,141.0,Airport,Town
+2775-1,Bathroom,1991,7.0,Duplo,Duplo
+278-1,Television Room,1978,107.0,Homemaker,Homemaker
+2-8,Medium House Set,1970,,Minitalia,Minitalia
+280-1,"Sloping Roof Bricks, Red",1958,14.0,Supplemental,Classic
+280-2,"Sloping Roof Bricks, Blue",1958,14.0,Supplemental,Classic
+28-1,Train Contact Plate with Cables,1977,,Train,Service Packs
+281-1,"1 x 2 and 3 x 2 Sloping Bricks, Red",1959,21.0,Supplemental,Classic
+281-2,"1 x 2 and 3 x 2 Sloping Bricks, Blue",1959,21.0,Supplemental,Classic
+282-1,"2 x 2 Sloping Roof Bricks, Red",1958,22.0,Supplemental,Classic
+282-2,"2 x 2 Sloping Roof Bricks, Blue",1958,,Supplemental,Classic
+2824-1,Advent Calendar 2010 City,2010,,City,Seasonal
+2824-10,Advent Calendar 2010 City (Day 9) Toy Airplane,2010,,City,Seasonal
+2824-11,Advent Calendar 2010 City (Day 10) Man with Suitcase,2010,,City,Seasonal
+2824-12,Advent Calendar 2010 City (Day 11) Fireplace,2010,13.0,City,Seasonal
+2824-13,Advent Calendar 2010 City (Day 12) Sled with Wood and Axe,2010,,City,Seasonal
+2824-14,Advent Calendar 2010 City (Day 13) Toy Fire Truck,2010,15.0,City,Seasonal
+2824-15,Advent Calendar 2010 City (Day 14) Woman with Bread,2010,5.0,City,Seasonal
+2824-16,Advent Calendar 2010 City (Day 15) Table with Chairs and Lamp,2010,13.0,City,Seasonal
+2824-17,Advent Calendar 2010 City (Day 16) Couch / Sofa,2010,9.0,City,Seasonal
+2824-18,Advent Calendar 2010 City (Day 17) Shower Stall,2010,9.0,City,Seasonal
+2824-19,Advent Calendar 2010 City (Day 18) Santa Claus (almost Naked) with Brush,2010,,City,Seasonal
+2824-2,Advent Calendar 2010 City (Day 1) Snowman with Broom,2010,11.0,City,Seasonal
+2824-20,Advent Calendar 2010 City (Day 19) Toy Train Car Red,2010,15.0,City,Seasonal
+2824-21,Advent Calendar 2010 City (Day 20) Toy Bulldozer,2010,17.0,City,Seasonal
+2824-22,Advent Calendar 2010 City (Day 21) Toy Train Car Yellow,2010,15.0,City,Seasonal
+2824-23,Advent Calendar 2010 City (Day 22) Toy Helicopter,2010,7.0,City,Seasonal
+2824-24,Advent Calendar 2010 City (Day 23) Christmas Tree,2010,23.0,City,Seasonal
+2824-25,Advent Calendar 2010 City (Day 24) Santa Claus with Toy Train Engine,2010,,City,Seasonal
+2824-3,Advent Calendar 2010 City (Day 2) Boy with Sword,2010,,City,Seasonal
+2824-4,Advent Calendar 2010 City (Day 3) Skateboard with Ramp and Railing,2010,10.0,City,Seasonal
+2824-5,Advent Calendar 2010 City (Day 4) Toy Crane,2010,15.0,City,Seasonal
+2824-6,Advent Calendar 2010 City (Day 5) Drum Set,2010,10.0,City,Seasonal
+2824-7,Advent Calendar 2010 City (Day 6) Girl with Cat,2010,,City,Seasonal
+2824-8,Advent Calendar 2010 City (Day 7) Piano / Organ,2010,10.0,City,Seasonal
+2824-9,Advent Calendar 2010 City (Day 8) Dog with Bowl and Sausage,2010,7.0,City,Seasonal
+283-1,"Sloping Ridge and Valley Bricks, Red",1957,20.0,Supplemental,Classic
+283-2,"Sloping Ridge and Valley Bricks, Blue",1957,20.0,Supplemental,Classic
+2840-1,Danone Promotional Set: Girl,1998,10.0,Basic Model,Universal Building Set
+2841-1,Danone Promotional Set: Boy,1998,,Basic Model,Universal Building Set
+2842-1,{Basic Promotional Set},1997,8.0,Basic Model,Universal Building Set
+2845-1,Indian Chief,1997,,Indians,Western
+2846-1,Indian Kayak,1997,18.0,Indians,Western
+2847-1,Flyer,1997,,UFO,Space
+2848-1,Fright Knights Flying Machine,1997,19.0,Fright Knights,Castle
+2849-1,Helicopter,1997,,Airport,Town
+2850828-1,LEGO® Star Wars™ Darth Vader™ Watch,2011,0.0,Gear,Gear
+2850829-1,Luke Skywalker Watch,2011,0.0,Gear,Gear
+2851193-1,LEGO® Star Wars™ Darth Maul™ Watch,2009,0.0,Gear,Gear
+2852724-1,Accelerometer Sensor for Mindstorms NXT,2011,,NXT,Mindstorms
+2852725-1,Infrared Seeker for Mindstorms NXT (Version 2),2011,,NXT,Mindstorms
+2852726-1,Gyroscopic Sensor for Mindstorms NXT,2011,0.0,NXT,Mindstorms
+2853216-1,Infrared Link Sensor for Mindstorms NXT,2011,,NXT,Mindstorms
+2853300-1,Space Police Collection,2009,5.0,Space Police III,Space
+2853301-1,CITY Transport Collection,2009,5.0,Traffic,Town
+2853302-1,CITY Construction Collection,2009,,Construction,Town
+2853303-1,Bionicle Glatorian Legends Collection,2009,6.0,Glatorian Legends,Bionicle
+2853508-1,LEGO Star Wars: The Visual Dictionary,2009,,Books,Books
+2853590-1,Stormtrooper,2009,,Star Wars Episode 4/5/6,Star Wars
+2853835-1,White Boba Fett Figure,2010,,Star Wars,Star Wars
+2853944-1,Astronaut,2010,,Promotional,Promotional
+2854-1,Bungee Chopper,1998,70.0,Competition,Technic
+2855028-1,Exclusive Spaceman Magnet,2010,8.0,Gear,Gear
+2855040-1,Infrared Receiver Sensor for Mindstorms NXT,2011,,NXT,Mindstorms
+2855057-1,LEGO® Star Wars™ Stormtrooper™ Kid’s Watch,2011,0.0,Gear,Gear
+2855113-1,Brickmaster Star Wars,2011,251.0,Gear,Gear
+2855127-1,LEGO Harry Potter: Years 1-4 Video Game,2010,,Gear,Gear
+2856079-1,Creationary Booster Pack,2011,30.0,Game,Gear
+2856080-1,Storm Trooper Minifigure Clock,2010,0.0,Gear,Gear
+2856081-1,LEGO® Star Wars™ Darth Vader Minifigure Clock,2010,0.0,Gear,Gear
+2856089-1,Hero Factory 2.0 Collection,2011,6.0,Heroes,Hero Factory
+2856128-1,LEGO® Star Wars™ Anakin Skywalker™ Minifigure Watch,2011,,Gear,Gear
+2856130-1,LEGO® Star Wars™ Yoda™ Minifigure Watch,2011,,Gear,Gear
+2856134-1,Ninjago Card Shrine,2011,,Ninjago,Ninjago
+2856195-1,LEGO Minifigure Ultimate Sticker Collection,2011,1.0,Gear,Gear
+2856197-1,Shadow ARF Trooper,2011,,Minifig Pack,Star Wars
+2856203-1,LEGO® Star Wars™ Yoda Minifigure Clock,2011,0.0,Gear,Gear
+2856217-1,LEGO Star Wars III: The Clone Wars,2011,,Gear,Gear
+2856223-1,"Magnet Set, Minifig Retro Ninja Princess - with 2 x 4 Brick Base (Bricktober Week 1)",2011,0.0,Gear,Gear
+2856224-1,"Magnet Set, Minifig Retro Forestman - with 2 x 4 Brick Base (Bricktober Week 2)",2011,0.0,Gear,Gear
+2856225-1,"Magnet Set, Minifig Retro Classic Knight - with 2 x 4 Brick Base (Bricktober Week 3)",2011,0.0,Gear,Gear
+2856226-1,"Magnet Set, Minifig Retro Classic Space Astronaut - with 2 x 4 Brick Base (Bricktober Week 4)",2011,3.0,Gear,Gear
+2856227-1,Hero Factory Fire Villains Collection,2011,,Villains,Hero Factory
+2856236-1,LEGO® Red Brick Clock,2013,,Gear,Gear
+2856238-1,LEGO® Yellow Brick Clock,2015,0.0,Gear,Gear
+2856453-1,LEGO Brand Pirates of the Caribbean Video Game - PS3,2011,,Gear,Gear
+2858-1,Girl with Two Cats,1999,5.0,Recreation,Belville
+2866-1,Animal Playground,1998,,Duplo,Duplo
+2870-1,Paradisa Barbeque,1997,,Paradisa,Town
+2871-1,Diver and Shark,1997,17.0,Divers,Town
+2872-1,Witch and Fireplace,1997,19.0,Fright Knights,Castle
+2873-1,Small Santa Claus,1997,9.0,Christmas,Seasonal
+2876-1,Christmas Set,1997,9.0,Christmas,Seasonal
+2878-1,Santa Claus,1997,16.0,Christmas,Seasonal
+2878-2,Santa Claus Mos Burger Gift Box 1- Hawaiian Shirt Santa,2001,,Christmas,Seasonal
+2878-3,Santa Claus Mos Burger Gift Box 2 - Tuxedo Santa,2001,1.0,Christmas,Seasonal
+2878-4,Santa Claus Mos Burger Gift Box 3 - Soccer Santa,2001,1.0,Christmas,Seasonal
+2879-1,Desert Expedition,1998,195.0,Desert,Adventurers
+2880-1,Open-Top Jeep,1997,,Traffic,Town
+2881-1,Parking Gate Attendant,1997,19.0,Traffic,Town
+2882-1,Speedboat,1997,22.0,Harbor,Town
+2883-1,Boat,1997,28.0,Harbor,Town
+2884-1,Microlight,1997,,Airport,Town
+2885-1,Ice Cream Seller,1997,27.0,Food & Drink,Town
+2886-1,Formula 1 Racing Car,1997,25.0,Race,Town
+2887-1,Petrol Station Attendant and Pump,1997,,Station,Town
+2889-1,Treasure Cart,1998,24.0,Crusaders,Castle
+2890-1,Stone Bomber,1998,,Black Knights,Castle
+2891-1,Wizard Trader,1998,18.0,Castle,Castle
+2892-1,Thunder Arrow Boat,1998,21.0,Royal Knights,Castle
+290-2,Dining Suite,1973,113.0,Homemaker,Homemaker
+29-1,4.5V Motor,1977,1.0,Technic,Service Packs
+291-1,Blackboard and School Desk,1973,,Homemaker,Homemaker
+2912-1,Radical Racer,2000,16.0,Duplo,Duplo
+292-1,Kitchen Sink and Cupboards,1973,51.0,Homemaker,Homemaker
+2928-1,Airline Promotional Set,2006,,Airport,Town
+2928-2,Airline Promotional Set - ANA limited edition,2008,137.0,Airport,Town
+293-1,Piano,1973,89.0,Homemaker,Homemaker
+2933-1,Freight Train,2000,,Duplo,Duplo
+294-1,Wall Unit,1974,58.0,Homemaker,Homemaker
+2949-1,RC Dozer,2001,22.0,Duplo,Duplo
+295-1,Secretary's Desk,1974,80.0,Homemaker,Homemaker
+296-1,Ladies' Hairdressers,1977,163.0,Homemaker,Homemaker
+2962-1,Res-Q Lifeguard,1998,69.0,Res-Q,Town
+2963-1,Extreme Team Racer,1998,,Extreme Team,Town
+2964-1,Space Spider,1998,,Insectoids,Space
+2965-1,Hornet Scout,1998,,Insectoids,Space
+297-1,Nursery,1978,,Homemaker,Homemaker
+2981-1,Pooh's Corner,1999,0.0,Duplo,Duplo
+2982-1,Pooh's Birthday,1999,9.0,Duplo,Duplo
+2995-1,Adventurers Car & Skeleton,1998,,Desert,Adventurers
+2996-1,Adventurers Tomb,1998,,Desert,Adventurers
+2997-1,Small Bucket,2017,40.0,Duplo,Duplo
+2998-1,Stena Line Ferry,1998,195.0,Ferries,Universal Building Set
+30000-1,Doctor With Car,2009,30.0,Hospital,Town
+3000-1,Trike Buggy,1999,30.0,Riding Cycle,Technic
+30001-1,Fireman's Car,2009,39.0,Fire,Town
+30002-1,Police Boat,2009,30.0,Police,Town
+30003-1,Road Roller,2009,31.0,Construction,Town
+30004-1,Battle Droid on STAP,2009,,Star Wars Clone Wars,Star Wars
+30005-1,Imperial Speeder Bike,2009,33.0,Star Wars Episode 4/5/6,Star Wars
+30006-1,Clone Walker,2009,31.0,Star Wars Clone Wars,Star Wars
+30008-1,Snowman,2009,44.0,Seasonal,Seasonal
+30009-1,Christmas Tree,2009,,Seasonal,Seasonal
+300-1,T-Junction Road Plates,1978,2.0,Supplemental,Town
+30010-1,Fire Chief,2010,,Fire,Town
+3001-1,Kabaya Promotional Set: Propeller Buggy,1999,,Off-Road,Technic
+30011-1,Police Dinghy,2010,,Police,Town
+30012-1,Mini Airplane,2010,34.0,Airport,Town
+30013-1,Police Quad,2010,34.0,Police,Town
+30014-1,Police Helicopter,2011,,Police,Town
+30015-1,Jet Ski,2011,24.0,Harbor,Town
+30016-1,Small Satellite,2011,34.0,City,Town
+30017-1,Police Boat,2012,,Police,Town
+30018-1,Police Plane,2012,32.0,Police,Town
+30019-1,Fire Helicopter,2012,37.0,Fire,Town
+30020-1,Jet,2010,,Basic Model,Creator
+30021-1,Parrot,2010,48.0,Basic Model,Creator
+30022-1,Bee,2011,23.0,Creator,Creator
+30023-1,Lighthouse,2011,25.0,Creator,Creator
+30024-1,Truck,2011,,Creator,Creator
+30025-1,Clown Fish,2011,59.0,Creator,Creator
+30026-1,Panda,2011,61.0,Basic Model,Creator
+30027-1,Reindeer,2011,,Creator,Creator
+30028-1,Wreath,2011,,Christmas,Seasonal
+30029-1,LEGO Pudsey Bear,2011,,Other,Other
+30030-1,Racing Car,2010,29.0,Tiny Turbos,Racers
+3003-1,Motorbike,1999,28.0,Riding Cycle,Technic
+30031-1,World Race Powerboat,2010,27.0,World Racers,Racers
+30032-1,World Race Buggy,2010,,World Racers,Racers
+30033-1,Racing Truck,2010,,Tiny Turbos,Racers
+30034-1,Racing Tow Truck,2010,34.0,Tiny Turbos,Racers
+30035-1,Racing Car,2010,,Tiny Turbos,Racers
+30036-1,Buggy Racer,2011,26.0,Tiny Turbos,Racers
+30040-1,Octopus,2010,42.0,Atlantis,Atlantis
+30041-1,Piranha,2010,,Atlantis,Atlantis
+30042-1,Mini Sub,2010,,Atlantis,Atlantis
+30050-1,Republic Attack Shuttle - Mini,2010,54.0,Star Wars Clone Wars,Star Wars
+3005-1,Kabaya Promotional Set: Car,1999,26.0,Race,Technic
+30051-1,X-wing Fighter - Mini,2010,,Star Wars Episode 4/5/6,Star Wars
+30052-1,AAT - Mini,2011,,Star Wars Episode 2,Star Wars
+30053-1,Republic Attack Cruiser - Mini,2011,41.0,Star Wars Episode 3,Star Wars
+30054-1,AT-ST - Mini,2011,46.0,Star Wars Episode 4/5/6,Star Wars
+30055-1,Vulture Droid - Mini,2011,42.0,Star Wars Episode 3,Star Wars
+30056-1,Star Destroyer,2012,,Star Wars Episode 4/5/6,Star Wars
+30057-1,Anakin's Pod Racer,2012,,Star Wars Episode 1,Star Wars
+30058-1,STAP,2012,19.0,Star Wars,Star Wars
+30059-1,MTT,2012,51.0,Star Wars,Star Wars
+30061-1,Attack Wagon,2010,36.0,Kingdoms,Castle
+30062-1,Target Practice,2010,31.0,Kingdoms,Castle
+30066-1,Circus Clown Polybag,2013,,Duplo,Duplo
+30066-2,Circus Ringmaster Polybag,2013,,Duplo,Duplo
+30066-4,Circus Tiger Polybag,2013,,Duplo,Duplo
+30066-5,Circus Rabbit Polybag,2013,,Duplo,Duplo
+30067-1,Duplo Farm Polybag (farmer),2014,5.0,Duplo,Duplo
+30067-2,Duplo Farm Polybag (calf),2014,5.0,Duplo,Duplo
+30067-3,Duplo Farm Polybag (goat),2014,5.0,Duplo,Duplo
+30067-4,Duplo Farm Polybag (cat),2014,5.0,Duplo,Duplo
+30068-1,Food,2014,6.0,Duplo,Duplo
+30070-1,Alien Space Ship,2010,29.0,Toy Story,Toy Story
+30071-1,Army Jeep,2010,37.0,Toy Story,Toy Story
+30072-1,Woody's Camp Out,2010,,Toy Story,Toy Story
+30073-1,Buzz's Mini Ship,2010,20.0,Toy Story,Toy Story
+30080-1,Ninja Glider,2011,,Ninjago,Ninjago
+30081-1,Skeleton Chopper,2011,41.0,Ninjago,Ninjago
+30082-1,Enemy Training,2011,,Ninjago,Ninjago
+30083-1,Dragon Fight,2011,,Ninjago,Ninjago
+30084-1,Ninjago Promotional Set,2011,,Ninjago,Ninjago
+30085-1,Snake Battle,2012,42.0,Ninjago,Ninjago
+30086-1,Hidden Sword,2012,39.0,Ninjago,Ninjago
+30087-1,Cole ZX's Car,2012,,Ninjago,Ninjago
+30088-1,Rattla,2012,5.0,Ninjago,Ninjago
+30090-1,Desert Glider,2011,,Pharaoh's Quest,Pharaoh's Quest
+30091-1,Desert Rover,2011,,Pharaoh's Quest,Pharaoh's Quest
+30-1,Universal Building Set,1976,200.0,Basic Set,Universal Building Set
+30100-1,Andrea on the Beach,2012,28.0,Friends,Friends
+30101-1,Skate Boarder,2012,,Friends,Friends
+30102-1,Desk,2012,28.0,Friends,Friends
+30103-1,Car,2012,32.0,Friends,Friends
+30105-1,Stephanie and Mailbox,2012,41.0,Friends,Friends
+30106-1,Ice Cream Stand,2013,,Friends,Friends
+30107-1,Birthday Party,2013,,Friends,Friends
+30108-1,Summer Picnic,2013,,Friends,Friends
+301-1,Curved Road Plates,1978,2.0,Supplemental,Town
+30110-1,Trolley,2011,,Harry Potter,Harry Potter
+30111-1,The Lab,2011,34.0,Harry Potter,Harry Potter
+30112-1,Emma's Flower Stand,2014,35.0,Friends,Friends
+30113-1,Stephanie's Bakery Stand,2014,,Friends,Friends
+30114-1,Andrea's Beach Lounge,2014,29.0,Friends,Friends
+30115-1,Jungle Boat,2014,,Jungle Rescue,Friends
+30116-1,Rapunzel's Market Visit,2014,37.0,Disney Princess,Disney Princess
+30120-1,Guido,2011,,Cars,Cars
+3012-1,Space Hover,1999,,UFO,Space
+30121-1,Grem,2011,,Cars,Cars
+30130-1,Mini Black Pearl,2011,,Pirates of the Caribbean,Pirates of the Caribbean
+3013-1,Space Jet,1999,23.0,Spyrius,Space
+30131-1,Jacks Boat,2011,21.0,Pirates of the Caribbean,Pirates of the Caribbean
+30132-1,Voodoo Jack,2011,,Pirates of the Caribbean,Pirates of the Caribbean
+30133-1,Jack Sparrow,2011,4.0,Pirates of the Caribbean,Pirates of the Caribbean
+30140-1,ADU Walker,2011,34.0,Alien Conquest,Space
+3014-1,Ice Planet Scooter,1999,19.0,Ice Planet 2002,Space
+30141-1,ADU Jetpack,2011,19.0,Alien Conquest,Space
+30150-1,Race Car,2012,,Traffic,Town
+3015-1,Space Police Car,1999,,Space Police II,Space
+30151-1,Mining Dozer,2012,33.0,Construction,Town
+30152-1,Mining Quad,2012,,Construction,Town
+30160-1,Bat Jetski,2012,,Batman,Super Heroes
+3016-1,Boss with Cannon,1998,24.0,Ninja,Ninja
+30161-1,Batmobile,2012,45.0,Batman,Super Heroes
+30162-1,Quinjet,2012,33.0,Avengers,Super Heroes
+30163-1,Thor and the Cosmic Cube,2012,25.0,Avengers,Super Heroes
+30164-1,Lex Luthor,2012,,Batman,Super Heroes
+30165-1,Hawkeye with Equipment,2012,24.0,Avengers,Super Heroes
+30166-1,Robin and Redbird Cycle,2013,,Batman,Super Heroes
+30167-1,Iron Man vs. Fighting Drone,2013,24.0,Iron Man,Super Heroes
+30168-1,Gun Mounting System,2013,16.0,Iron Man,Super Heroes
+30170-1,Ganrash,2012,56.0,Game,Gear
+3017-1,Water Spider,1998,,Ninja,Ninja
+30180-1,Twin Prop,2012,45.0,Creator,Creator
+3018-1,Go! LEGO Shogun,1998,25.0,Ninja,Ninja
+30181-1,Helicopter,2012,,Creator,Creator
+30182-1,Santa,2012,57.0,Creator,Seasonal
+30183-1,Little Car,2013,50.0,Traffic,Creator
+30184-1,Little Helicopter,2013,56.0,Creator,Creator
+30185-1,Little Eagle,2013,,Creator,Creator
+30186-1,Christmas Tree,2013,51.0,Creator,Seasonal
+30187-1,Fast Car,2014,56.0,Basic Model,Creator
+30188-1,Cute Kitten,2014,,Creator,Creator
+30189-1,Transport Plane,2014,49.0,Creator,Creator
+30190-1,Ferrari 150° Italia,2012,,Ferrari,Racers
+3019-1,Big Bat,1998,,Ninja,Ninja
+30191-1,Scuderia Ferrari Truck,2012,,Ferrari,Racers
+30192-1,Ferrari F40,2012,,Ferrari,Racers
+30193-1,250 GT Berlinetta,2012,,Ferrari,Racers
+30194-1,458 Italia,2012,32.0,Ferrari,Racers
+30195-1,FXX,2012,52.0,Ferrari,Racers
+30196-1,Shell F1 Team,2012,47.0,Ferrari,Racers
+30197-1,Snowman,2014,60.0,Creator,Creator
+30-2,Small Ship Set,1973,,Minitalia,Minitalia
+30200-1,Zombie Chauffeur Coffin Car,2012,32.0,Monster Fighters,Monster Fighters
+3020-1,Raft of Johnse,1998,,Desert,Adventurers
+30201-1,Ghost,2012,33.0,Monster Fighters,Monster Fighters
+30202-1,Smoothie Stand,2015,,Friends,Friends
+30203-1,Mini Golf,2015,26.0,Friends,Friends
+30204-1,Wish Fountain,2015,44.0,Friends,Friends
+30205-1,Pop Star,2015,33.0,Friends,Friends
+302-1,Straight Road Plates (without crosswalk),1983,2.0,Supplemental,Town
+30210-1,Frodo with Cooking Corner,2012,,The Lord of the Rings,The Hobbit and Lord of the Rings
+3021-1,King Pharaoh the Third,1998,,Desert,Adventurers
+30211-1,Uruk Hai with Ballista,2012,21.0,The Lord of the Rings,The Hobbit and Lord of the Rings
+30212-1,Mirkwood Elf Guard,2012,27.0,An Unexpected Journey,The Hobbit and Lord of the Rings
+30213-1,Gandalf at Dol Guldur,2012,31.0,An Unexpected Journey,The Hobbit and Lord of the Rings
+30215-1,Legolas Greenleaf,2013,33.0,The Desolation of Smaug,The Hobbit and Lord of the Rings
+30216-1,Lake-town Guard,2013,31.0,The Desolation of Smaug,The Hobbit and Lord of the Rings
+30217-1,Forest Polybag : Squirrel,2015,4.0,Duplo,Duplo
+30217-2,Forest Polybag : Rabbit,2015,,Duplo,Duplo
+30217-3,Forest Polybag : Deer Fawn,2015,,Duplo,Duplo
+30217-4,Forest Polybag : Black Bear Cub,2015,4.0,Duplo,Duplo
+30218-1,Snail,2015,,Duplo,Duplo
+302-2,Straight Road Plates (with crosswalk),1978,2.0,Supplemental,Town
+30220-1,Fire Speedboat,2013,40.0,Fire,Town
+3022-1,Plane of Hurrykain,1998,23.0,Desert,Adventurers
+30221-1,Fire Car,2013,36.0,Fire,Town
+30222-1,Police Helicopter,2013,33.0,Police,Town
+30224-1,Lawn Mower,2013,,City,Town
+30225-1,Seaplane,2013,37.0,Coast Guard,Town
+30226-1,Police Helicopter ,2014,48.0,Police,Town
+30227-1,Police Watercraft,2014,36.0,Police,Town
+30228-1,Police ATV,2014,42.0,Police,Town
+30229-1,Repair Lift,2014,,Construction,Town
+30230-1,Mini Mech,2013,28.0,Galaxy Squad,Space
+3023-1,Slyboot Car,1998,23.0,Desert,Adventurers
+30231-1,Space Insectoid,2013,27.0,Galaxy Squad,Space
+30240-1,Z-95 Headhunter,2013,54.0,Star Wars Clone Wars,Star Wars
+30241-1,Mandalorian Fighter,2013,,Star Wars Clone Wars,Star Wars
+30242-1,Republic Frigate,2013,,Star Wars Episode 1,Star Wars
+30243-1,Umbaran MHC,2013,49.0,Star Wars Clone Wars,Star Wars
+30244-1,Anakin's Jedi Intercepter,2014,,Mini,Star Wars
+30246-1,Imperial Shuttle,2014,57.0,Star Wars,Star Wars
+30247-1,ARC-170 Starfighter,2014,54.0,Star Wars,Star Wars
+30250-1,Ewar's Acro-Fighter,2013,,Legends of Chima,Legends of Chima
+3025-1,25th Anniversary Silver Bucket,1998,601.0,Basic Set,Universal Building Set
+30251-1,Winzar's Pack Patrol,2013,38.0,Legends of Chima,Legends of Chima
+30252-1,Crug's Swamp Jet,2013,,Legends of Chima,Legends of Chima
+30253-1,Leonidas' Jungle Dragster,2013,30.0,Legends of Chima,Legends of Chima
+30254-1,Razcal's Double-Crosser,2013,36.0,Legends of Chima,Legends of Chima
+30255-1,Crawley,2013,11.0,Legends of Chima,Legends of Chima
+30256-1,Ice Bear Mech,2015,,Legends of Chima,Legends of Chima
+30259-1,Azari’s Magic Fire,2015,,Elves,Elves
+30260-1,Lone Ranger’s Pump Car,2013,,The Lone Ranger,The Lone Ranger
+3026-1,25th Anniversary Silver Tub,1998,1201.0,Basic Set,Universal Building Set
+30261-1,Tonto's Campfire,2013,20.0,The Lone Ranger,The Lone Ranger
+30262-1,Gorzan's Walker ,2014,,Legends of Chima,Legends of Chima
+30263-1,Spider Crawler,2014,,Legends of Chima,Legends of Chima
+30264-1,Frax' Phoenix Flyer,2014,,Legends of Chima,Legends of Chima
+30265-1,Worriz' Fire Bike,2014,31.0,Legends of Chima,Legends of Chima
+30266-1,Sykor's Ice Cruiser,2014,25.0,Legends of Chima,Legends of Chima
+30270-1,Kraang's Turtle Target Practice,2013,,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+3027-1,25th Anniversary Silver Bucket,1998,418.0,Freestyle,Freestyle
+30271-1,Mikey's Mini-Shellraiser,2014,,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+30272-1,A-Wing Starfighter,2015,,Mini,Star Wars
+30274-1,AT-DP,2015,,Mini,Star Wars
+30275-1,TIE Advanced Prototype,2015,47.0,Mini,Star Wars
+30276-1,First Order Special Forces TIE Fighter Set,2015,,Star Wars,Star Wars
+30277-1,First Order Star Destroyer,2016,,Star Wars Episode 7,Star Wars
+30278-1,Poe's X-wing Fighter,2015,64.0,Mini,Star Wars
+30279-1,Kylo Ren's Command Shuttle,2016,,Star Wars Episode 7,Star Wars
+30280-1,The Piece of Resistance,2014,,The LEGO Movie,The LEGO Movie
+3028-1,25th Anniversary Silver Tub,1998,843.0,Freestyle,Freestyle
+30281-1,Micro Manager Battle,2014,27.0,The LEGO Movie,The LEGO Movie
+30282-1,Super Secret Police Enforcer,2014,40.0,The LEGO Movie,The LEGO Movie
+30283-1,Off-Road,2015,43.0,Traffic,Creator
+30284-1,Tractor,2015,51.0,Basic Model,Creator
+30285-1,Tiger,2015,,Creature,Creator
+30286-1,Christmas Tree,2015,65.0,Christmas,Seasonal
+30291-1,Anacondrai Battle Mech,2015,43.0,Ninjago,Ninjago
+30292-1,Jay Nano Mech,2015,54.0,Ninjago,Ninjago
+30293-1,Kai Drifter,2015,43.0,Ninjago,Ninjago
+30294-1,The Cowler Dragon,2015,45.0,Ninjago,Ninjago
+30300-1,The Batman Tumbler,2014,57.0,Batman,Super Heroes
+30301-1,Batwing,2014,45.0,Batman,Super Heroes
+30302-1,Spider-Man,2014,,Spider-Man,Super Heroes
+30303-1,The Joker Bumper Car,2015,,Batman,Super Heroes
+30304-1,The Avengers Quinjet,2015,,Avengers,Super Heroes
+30305-1,Spider-Man Super Jumper,2015,38.0,Spider-Man,Super Heroes
+303-1,Basic Building Set,1987,,Basic,Universal Building Set
+30310-1,Arctic Scout,2014,,Arctic,Town
+30311-1,Swamp Police Helicopter,2015,,Police,Town
+30312-1,Demolition Driller,2015,,Construction,Town
+30313-1,Garbage Truck,2015,48.0,Traffic,Town
+30314-1,Go-Kart Racer,2015,45.0,Traffic,Town
+30315-1,Space Utility Vehicle,2015,,Space Port,Town
+303-2,Aeroplane,1964,,Airport,Classic
+30320-1,Gallimimus Trap,2015,,Jurassic World,Jurassic World
+3032-1,Medium Bucket,1999,600.0,Basic Set,Universal Building Set
+30321-1,Duck,2016,4.0,Duplo,Duplo
+30324-1,My Town Polybag : Female,2017,3.0,Duplo,Duplo
+30324-2,My Town Polybag : Policeman,2017,,Duplo,Duplo
+30324-3,My Town Polybag : Girl,2017,3.0,Duplo,Duplo
+30324-4,My Town Polybag : Cat,2017,,Duplo,Duplo
+30324-5,My Town Polybag : Male,2017,3.0,Duplo,Duplo
+3033-1,Basic Bulk Tub (American Version),1998,1200.0,Supplemental,Universal Building Set
+3033-2,Basic Bulk Tub (Overseas Version),2002,1200.0,Supplemental,Universal Building Set
+30338-1,Fire Car,2017,,Fire,4 Juniors
+30346-1,Prison Island Helicopter,2016,,Police,Town
+30347-1,Fire Car,2016,53.0,Fire,Town
+30348-1,Mini Dumper,2016,45.0,Construction,Town
+30349-1,Sports Car,2016,47.0,City,Town
+30350-1,Volcano Jackhammer,2016,53.0,City,Town
+30351-1,Police Helicopter,2017,,Police,Town
+30352-1,Police Car,2017,,Police,Town
+30354-1,Hot Rod,2017,37.0,City,Town
+30355-1,Jungle ATV,2017,,Jungle,Town
+30371-1,Knight's Cycle,2016,41.0,Nexo Knights,Nexo Knights
+30372-1,Robin's Mini Fortrex,2016,,Nexo Knights,Nexo Knights
+30373-1,Knighton Hyper Cannon,2016,,Nexo Knights,Nexo Knights
+30374-1,The Lava Slinger,2016,39.0,Nexo Knights,Nexo Knights
+30375-1,Sira's Adventurous Airglider,2016,24.0,Elves,Elves
+30376-1,Knighton Rider,2017,,Nexo Knights,Nexo Knights
+30377-1,Motor Horse polybag,2017,52.0,Nexo Knights,Nexo Knights
+30378-1,Shrunken Headquarters,2017,,Nexo Knights,Nexo Knights
+3038-1,Spider Slayer,1998,,Competition,Technic
+3039-1,Adventurers Plane,1999,23.0,Desert,Adventurers
+30396-1,Cupcake Stall,2016,28.0,Friends,Friends
+30397-1,Olaf's Summertime Fun,2016,,Disney Princess,Disney Princess
+30398-1,Adventure Camp Bridge,2016,37.0,Friends,Friends
+30399-1,Bowling Alley,2016,,Friends,Friends
+30400-1,Gymnastic Bar,2017,26.0,Friends,Friends
+3040-1,Challenger Set 200,1998,155.0,Classic Basic,Universal Building Set
+30401-1,Emma's Pool Slide,2017,45.0,Friends,Friends
+30402-1,Snowboard Tricks,2017,27.0,Friends,Friends
+304-1,Basic Building Set,1985,31.0,Basic,Universal Building Set
+3041-1,Big Bucket of Fun,1998,468.0,Classic Basic,Universal Building Set
+304-2,Tractor & Trailer,1964,,Farm,Classic
+30421-1,Skybound Plane,2016,30.0,Ninjago,Ninjago
+30422-1,Kai's Mini Dragon,2016,40.0,Ninjago,Ninjago
+30423-1,Anchor-Jet,2016,38.0,Ninjago,Ninjago
+30424-1,WU-CRU Training Dojo,2016,43.0,Ninjago,Ninjago
+30426-1,Stealthy Swamp Airboat,2017,43.0,Ninjago,Ninjago
+30446-1,The Batmobile,2016,,Batman,Super Heroes
+30447-1,Captain America's Motorcycle,2016,,Marvel,Super Heroes
+30448-1,Spider-Man vs. The Venom Symbiote,2016,49.0,Spider-Man,Super Heroes
+30449-1,The Milano,2017,64.0,Marvel,Super Heroes
+3047-1,Halloween Bucket,1998,256.0,Halloween,Seasonal
+30471-1,Helicopter,2016,,Creator,Creator
+30472-1,Parrot,2016,,Creator,Creator
+30473-1,Racer,2016,30.0,Juniors,Juniors
+30474-1,Reindeer,2016,,Christmas,Seasonal
+30475-1,Off Roader,2017,33.0,Traffic,Creator
+30476-1,Turtle,2017,33.0,Creature,Creator
+30477-1,Chameleon,2017,53.0,Creature,Creator
+30478-1,Santa Claus,2017,74.0,Creator,Seasonal
+30496-1,U-Wing Fighter,2017,55.0,Star Wars Rogue One,Star Wars
+30497-1,First Order Heavy Assault Walker - Mini,2017,54.0,Mini,Star Wars
+3050-1,Shanghai Surprise,1999,108.0,Ninja,Ninja
+305-1,Two Crater Plates,1979,,Supplemental,Space
+3051-1,Blaze Attack,1999,144.0,Ninja,Ninja
+305-2,Fire Engine,1964,170.0,Fire,Classic
+3052-1,Ninja Fire Fortress,1999,,Ninja,Ninja
+30521-1,The Mini Batmobile,2017,68.0,Batman,Super Heroes
+30522-1,Batman in the Phantom Zone polybag,2016,,Batman,Super Heroes
+30523-1,The Joker Battle Training,2017,49.0,Batman,Super Heroes
+30524-1,The Mini Batwing,2017,,Batman,Super Heroes
+3053-1,Emperor's Stronghold,1999,335.0,Ninja,Ninja
+3054-1,Kelloggs Promotional Set: TECHNIC Motorcycle,1998,30.0,Riding Cycle,Technic
+30546-1,Krypto Saves the Day,2017,55.0,Super Heroes,Super Heroes
+3055-1,Adventurers Car,1998,21.0,Desert,Adventurers
+3056-1,Go-Kart,1998,,Race,Town
+3057-1,Create 'n' Race - Master Builders,2000,106.0,Race,Technic
+3058-1,Busy City - Master Builders (Masterbuilders),2000,73.0,Construction,Town
+3059-1,Mars Mission - Master Builders (Masterbuilders),2000,,Space Port,Town
+30601-1,Scooby-Doo,2016,,Scooby-Doo,Scooby-Doo
+30602-1,First Order Stormtrooper,2016,7.0,Star Wars,Star Wars
+30603-1,Batman Classic TV Series - Mr. Freeze,2016,16.0,Batman,Super Heroes
+30604-1,Cosmic Boy,2016,7.0,Super Heroes,Super Heroes
+30605-1,Finn (FN-2187),2016,,Star Wars Episode 7,Star Wars
+30606-1,Nightwing,2016,6.0,Super Heroes,Super Heroes
+30607-1,Disco Batman - Tears of Batman,2017,,Batman,Super Heroes
+306-1,Two Lunar Landing Plates,1979,,Supplemental,Space
+3061-1,City Park Café,2012,247.0,Friends,Friends
+30611-1,R2-D2,2017,70.0,Star Wars,Star Wars
+30612-1,Batgirl,2017,,Batman,Super Heroes
+306-2,VW Garage,1958,45.0,Town Plan,Classic
+3063-1,Heartlake Flying Club,2012,,Friends,Friends
+3065-1,Olivia’s Tree House,2012,,Friends,Friends
+3066-1,Cosmos Glider,1999,,Space Port,Town
+3066-3,Circus Acrobat Polybag,2013,3.0,Duplo,Duplo
+3067-1,Test Shuttle,1999,21.0,Space Port,Town
+3068-1,Radar Buggy,1999,,Space Port,Town
+3069-1,Cosmic Wing,1999,23.0,Space Port,Town
+3070-1,Mosquito,1999,21.0,Insectoids,Space
+3071-1,Light Flyer,1999,,Insectoids,Space
+307-2,VW Auto Showroom,1958,51.0,Town Plan,Classic
+3072-1,Mega Tack,1999,,Insectoids,Space
+3073-1,Booster,1999,21.0,Insectoids,Space
+3074-1,Red Ninja's Dragon Glider,1999,20.0,Ninja,Ninja
+3075-1,Ninja Master's Boat,1999,21.0,Ninja,Ninja
+3076-1,White Ninja's Attack Cart,1999,23.0,Ninja,Ninja
+3077-1,Ninja Shogun's Small Fort,1999,21.0,Ninja,Ninja
+3078-1,Kellogg's Promotional Set: Car,1998,,Basic Model,Universal Building Set
+3079-1,Kellogg's Promotional Set: Duck,1998,14.0,Basic Model,Universal Building Set
+3080-1,Kellogg's Promotional Set: Plane,1998,16.0,Basic Model,Universal Building Set
+308-1,Bracelet Sympathy,1979,38.0,Hobby Sets,Hobby Sets
+3081-1,Kellogg's Promotional Set: Helicopter,1998,16.0,Basic Model,Universal Building Set
+308-2,Basic Building Set,1985,,Basic,Universal Building Set
+308-3,Fire Station,1958,,Town Plan,Classic
+309-1,Bracelet Spring,1979,38.0,Hobby Sets,Hobby Sets
+309-2,Church,1958,,Town Plan,Classic
+3093-1,Fun Playground,2001,31.0,Duplo,Duplo
+309314-1,Lego City - Police on Alert!,2011,19.0,Books,Books
+31000-1,Mini Speeder,2013,,Creator,Creator
+31001-1,Mini Skyfighter,2013,,Creator,Creator
+31002-1,Super Racer,2013,,Creator,Creator
+31003-1,Red Rotors,2013,145.0,Airport,Creator
+31004-1,Fierce Flyer,2013,166.0,Creator,Creator
+31005-1,Construction Hauler,2013,256.0,Creator,Creator
+31006-1,Highway Speedster,2013,286.0,Traffic,Creator
+31007-1,Power Mech,2013,,Creator,Creator
+31008-1,Thunder Wings,2013,235.0,Creator,Creator
+31009-1,Small Cottage,2013,271.0,Building,Creator
+31010-1,Treehouse,2013,356.0,Building,Creator
+31011-1,Aviation Adventures,2013,,Airport,Creator
+31012-1,Family House,2013,,Building,Creator
+31013-1,Red Thunder,2014,66.0,Creator,Creator
+31014-1,Power Digger,2014,,Creator,Creator
+31015-1,Emerald Express,2014,56.0,Creator,Creator
+31017-1,Sunset Speeder,2014,119.0,Creator,Creator
+31018-1,Highway Cruiser,2014,129.0,Creator,Creator
+31019-1,Forest Animals,2014,272.0,Creator,Creator
+31020-1,Twinblade Adventures,2014,,Creator,Creator
+31021-1,Furry Creatures,2014,285.0,Creator,Creator
+31022-1,Turbo Quad,2014,186.0,Traffic,Creator
+31023-1,Yellow Racers,2014,328.0,Creator,Creator
+31024-1,Roaring Power,2014,374.0,Creator,Creator
+31025-1,Mountain Hut,2014,,Creator,Creator
+31026-1,Bike Shop & Cafe,2014,,Creator,Creator
+31027-1,Blue Racer,2015,,Basic Model,Creator
+31028-1,Sea Plane,2015,53.0,Basic Model,Creator
+31029-1,Cargo Heli,2015,132.0,Basic Model,Creator
+310-3,Tug,1973,45.0,Boat,Boat
+31030-1,Red Go-Kart,2015,106.0,Basic Model,Creator
+31031-1,Rainforest Animals,2015,215.0,Creature,Creator
+31032-1,Red Creatures,2015,221.0,Creature,Creator
+31033-1,Vehicle Transporter,2015,,Basic Model,Creator
+31034-1,Future Flyer,2015,237.0,Robot,Creator
+31035-1,Beach Hut,2015,286.0,Building,Creator
+31036-1,Toy & Grocery Shop,2015,,Building,Creator
+31037-1,Adventure Vehicles,2015,,Creator,Creator
+31038-1,Changing Seasons,2015,535.0,Creator,Creator
+31039-1,Blue Power Jet,2015,607.0,Creator,Creator
+310-4,Basic Building Set,1985,46.0,Basic,Universal Building Set
+31040-1,Desert Racers,2016,65.0,Creator,Creator
+31041-1,Construction Vehicles,2016,64.0,Creator,Creator
+31042-1,Super Soarer,2016,,Creator,Creator
+31043-1,Chopper transporter,2016,,Creator,Creator
+31044-1,Park Animals,2016,202.0,Creator,Creator
+31045-1,Ocean Explorer,2016,213.0,Creator,Creator
+31046-1,Fast Car,2016,,Creator,Creator
+31047-1,Propeller Plane,2016,230.0,Creator,Creator
+31048-1,Lakeside Lodge,2016,,Creator,Creator
+31049-1,Twin Spin Helicopter,2016,,Creator,Creator
+310-5,ESSO Filling Station,1958,,Town Plan,Classic
+31050-1,Corner Deli,2016,467.0,Creator,Creator
+31051-1,Lighthouse Point,2016,,Creator,Creator
+31052-1,Vacation Getaways,2016,,Creator,Creator
+31053-1,Treehouse Adventures,2016,,Creator,Creator
+31054-1,Blue Express,2017,,Creator,Creator
+31055-1,Red Racer,2017,72.0,Creator,Creator
+31056-1,Green Cruiser,2016,122.0,Creator,Creator
+31057-1,Air Blazer,2016,,Creator,Creator
+31058-1,Mighty Dinosaurs,2017,174.0,Creator,Creator
+31059-1,Sunset Street Bike,2016,194.0,Creator,Creator
+31060-1,Airshow Aces,2016,,Creator,Creator
+31062-1,Robo Explorer 1,2017,205.0,Creator,Creator
+31063-1,Beachside Vacation,2017,275.0,Creator,Creator
+31064-1,Seaplane Adventures,2017,,Creator,Creator
+31065-1,Park Street Townhouse,2017,565.0,Creator,Creator
+31066-1,Space Shuttle Explorer,2017,,Creator,Creator
+31067-1,Modular Poolside Holiday,2017,356.0,Creator,Creator
+31068-1,Modular Modern Home,2017,,Creator,Creator
+31069-1,Modular Family Villa,2017,728.0,Creator,Creator
+31070-1,Turbo Track Racer,2017,,Creator,Creator
+31-1,Medium Ship Set,1973,0.0,Minitalia,Minitalia
+311-1,Ferry,1973,82.0,Boat,Boat
+311-3,Basic Set,1984,34.0,Basic Set,Universal Building Set
+311-4,Airplanes,1961,,Airport,Classic
+31-2,Universal Joint / Connectors,1973,,Technic,Service Packs
+312-3,Tanker,1973,,Boat,Boat
+312-4,Boats,1961,,Harbor,Classic
+313-1,London Bus,1966,140.0,Traffic,Classic
+31313-1,Mindstorms EV3,2013,600.0,EV3,Mindstorms
+314-1,Police Boat,1976,52.0,Boat,Boat
+314-2,Large & Small Wheels & Turn-Table,1963,,Supplemental,Classic
+3146-1,Carry and Shopping Accessories,1999,,Scala,Service Packs
+315-1,Basic Building Set,1990,62.0,Basic,Universal Building Set
+315-2,Container Transport,1976,,Boat,Boat
+315-3,European Taxie,1963,48.0,Traffic,Classic
+316-1,Fire Fighter Ship,1978,,Boat,Boat
+316-2,Farm Tractor,1963,49.0,Farm,Classic
+317-1,Truck,1963,125.0,Traffic,Classic
+317-2,Basic Building Set,1987,68.0,Basic,Universal Building Set
+3177-1,Small Car,2010,,Traffic,Town
+3178-1,Seaplane,2010,101.0,Harbor,Town
+3179-1,Repair Truck,2010,122.0,Traffic,Town
+3180-1,Tank Truck,2010,221.0,Town,Town
+318-1,Windmill Set,1963,,Building,Classic
+3181-1,Passenger Plane,2010,,Airport,Town
+3181-2,Passenger Plane - ANA Version,2010,296.0,Airport,Town
+3182-1,Airport,2010,,Airport,Town
+3183-1,Stephanie’s Cool Convertible,2012,149.0,Friends,Friends
+3184-1,Adventure Camper,2012,324.0,Friends,Friends
+3185-1,Summer Riding Camp,2012,,Friends,Friends
+3186-1,Emma's Horse Trailer,2012,233.0,Friends,Friends
+3187-1,Butterfly Beauty Shop,2012,241.0,Friends,Friends
+3188-1,Heartlake Vet,2012,371.0,Friends,Friends
+3189-1,Heartlake Stables,2012,424.0,Friends,Friends
+319-1,Truck with Trailer,1965,74.0,Traffic,Classic
+3194-1,Clikits Bracelet Heart,2004,,Clikits,Clikits
+3195-1,Clikits Bracelet Daisy,2004,9.0,Clikits,Clikits
+3196-1,Clikits Bracelet Star,2004,,Clikits,Clikits
+3197-1,Small Aircraft,2001,,Airport,Universal Building Set
+320-1,Basic Building Set,1985,78.0,Basic,Universal Building Set
+320-2,Airplane,1965,120.0,Airport,Classic
+321-1,Clowns,1965,,Basic Set,Classic
+3219-1,TIE Fighter - Mini,2003,12.0,Mini,Star Wars
+32-2,Large Ship Set,1973,57.0,Minitalia,Minitalia
+322-1,Basic Set,1981,82.0,Basic Set,Universal Building Set
+3221-1,LEGO® City Truck,2010,,Traffic,Town
+322-2,Town House,1964,171.0,Building,Classic
+3222-1,Helicopter and Limousine,2010,250.0,Airport,Town
+322-3,Basic Building Set + Storage Case,1983,2.0,Basic Set,Universal Building Set
+3223-1,Orange Fish,2003,43.0,Designer Sets,Designer Sets
+3225-1,Classic Train,1998,,9V,Train
+3226-1,Cars and Planes,1998,311.0,Freestyle,Freestyle
+323-1,Train,1964,253.0,Train,Classic
+3233-1,Fantasy Bird,1998,,Freestyle,Freestyle
+3234-1,Fantasy Boat,1998,,Freestyle,Freestyle
+324-1,Ricky Racoon on his Scooter,1979,2.0,Fabuland,Fabuland
+324-2,House with Garage,1964,174.0,Building,Classic
+3243-1,Scala Kitchen,1997,,Other,Other
+325-1,Basic Building Set,1990,,Basic,Universal Building Set
+325-2,Percy Pig's Wheelbarrow,1979,4.0,Fabuland,Fabuland
+325-3,Shell Service Station,1966,,Building,Classic
+3259-1,Kanoka Launcher And Disc,2004,,Supplemental,Bionicle
+326-1,Small Cottage,1965,63.0,Building,Classic
+327-1,Basic Building Set,1987,,Basic,Universal Building Set
+328-1,Moe Mouse's Roadster,1979,,Fabuland,Fabuland
+328-2,Biplane,1967,,Airport,Classic
+3287-1,Takutanuva,2004,,Titans,Bionicle
+329-1,Antique Car,1967,,Traffic,Classic
+329-2,Bernard Bear and Pickup Truck,1979,27.0,Fabuland,Fabuland
+3300000-1,"The Brick Apple (LEGO Store Grand Opening Set, Rockefeller Center, New York, NY)",2010,133.0,LEGO Brand Store,LEGO Brand Store
+3300001-1,Brickley,2011,,Creator,Creator
+3300002-1,Holiday Set 2 of 2,2011,117.0,Christmas,Seasonal
+3300003-1,Lego Brand Retail Store,2012,279.0,LEGO Brand Store,LEGO Brand Store
+3300005-1,"LEGO Store Grand Opening Exclusive Set, Copenhagen (København), Denmark",2011,,LEGO Brand Store,LEGO Brand Store
+3300006-1,"The Routemaster Bus (LEGO Store Grand Opening Set, Westfield, London, UK)",2011,,LEGO Brand Store,LEGO Brand Store
+3300014-1,Holiday Set 2012,2012,109.0,Christmas,Seasonal
+3300020-1,Holiday Set 1 of 2,2011,,Christmas,Seasonal
+3300-1,Harold the Helicopter,2006,,Duplo,Duplo
+330-1,Basic Building Set,1985,,Basic,Universal Building Set
+330-2,Gas Station,1978,211.0,Building Set with People,Building Set with People
+3302-1,Soccer Field,1998,,Soccer,Sports
+330-3,Jeep,1968,65.0,Traffic,Classic
+3303-1,Field Accessories,1998,50.0,Soccer,Sports
+3304-1,Dutch National Player,1998,,Soccer,Sports
+3305-1,World Team Player,1998,,Soccer,Sports
+3305-2,World Team Player - Limited Edition (England),1998,4.0,Soccer,Sports
+3305-3,World Team Player - Limited Edition (Netherlands),1998,,Soccer,Sports
+3306-1,Soccer Goalies,1998,,Soccer,Sports
+3308-1,Tribune,1998,85.0,Soccer,Sports
+3309-1,Head Tribune,1998,95.0,Soccer,Sports
+3310-1,Commentator and Press Box,1998,,Soccer,Sports
+331-1,Dump Truck,1967,,Construction,Classic
+3311-1,Camera Tower,1998,100.0,Soccer,Sports
+3312-1,Medic's Station,1998,78.0,Soccer,Sports
+3313-1,Light Poles,1998,101.0,Soccer,Sports
+3314-1,Stadium Security,1998,143.0,Soccer,Sports
+3315-1,Olivia’s House,2012,,Friends,Friends
+3316-1,"Advent Calender 2012, Friends",2012,,Friends,Seasonal
+3316-10,"Advent Calendar 2012, Friends (Day 9) - Breakfast",2012,,Friends,Seasonal
+3316-11,"Advent Calendar 2012, Friends (Day 10) - Sled Trailer #1",2012,10.0,Friends,Seasonal
+3316-12,"Advent Calendar 2012, Friends (Day 11) - Present for Dog",2012,8.0,Friends,Seasonal
+3316-13,"Advent Calendar 2012, Friends (Day 12) - Dog",2012,,Friends,Seasonal
+3316-14,"Advent Calendar 2012, Friends (Day 13) - Stool and Plate with Candies",2012,,Friends,Seasonal
+3316-15,"Advent Calendar 2012, Friends (Day 14) - Dog Basket with Bone",2012,,Friends,Seasonal
+3316-16,"Advent Calendar 2012, Friends (Day 15) - Sled Trailer #2",2012,8.0,Friends,Seasonal
+3316-17,"Advent Calendar 2012, Friends (Day 16) - Basket with Broom and Snow Balls",2012,6.0,Friends,Seasonal
+3316-18,"Advent Calendar 2012, Friends (Day 17) - Mailbox with Letter",2012,,Friends,Seasonal
+3316-19,"Advent Calendar 2012, Friends (Day 18) - Lime/White Present With Letter",2012,8.0,Friends,Seasonal
+3316-2,"Advent Calendar 2012, Friends (Day 1) - Olivia, Long Sleeve Chrismas Top",2012,4.0,Friends,Seasonal
+3316-20,"Advent Calendar 2012, Friends (Day 19) - Handbag",2012,1.0,Friends,Seasonal
+3316-21,"Advent Calendar 2012, Friends (Day 20) - Flower Arrangement",2012,8.0,Friends,Seasonal
+3316-22,"Advent Calendar 2012, Friends (Day 21) - Fireplace",2012,21.0,Friends,Seasonal
+3316-23,"Advent Calendar 2012, Friends (Day 22) - Christmas Tree",2012,18.0,Friends,Seasonal
+3316-24,"Advent Calendar 2012, Friends (Day 23) - Medium Blue/White Present with Letter",2012,,Friends,Seasonal
+3316-25,"Advent Calendar 2012, Friends (Day 24) - Corner Table with Beauty Accessories",2012,11.0,Friends,Seasonal
+3316-3,"Advent Calendar 2012, Friends (Day 2) - Sled",2012,9.0,Friends,Seasonal
+3316-4,"Advent Calendar 2012, Friends (Day 3) - Street Light with Garland",2012,,Friends,Seasonal
+3316-5,"Advent Calendar 2012, Friends (Day 4) - Skis and Ski Poles",2012,,Friends,Seasonal
+3316-6,"Advent Calendar 2012, Friends (Day 5) - Snowman",2012,7.0,Friends,Seasonal
+3316-7,"Advent Calendar 2012, Friends (Day 6) - Christina, Red Christmas Outfit",2012,4.0,Friends,Seasonal
+3316-8,"Advent Calendar 2012, Friends (Day 7) - Friends Accessories",2012,,Friends,Seasonal
+3316-9,"Advent Calendar 2012, Friends (Day 8) - Table with Stool",2012,,Friends,Seasonal
+3317-1,German National Player,1998,4.0,Soccer,Sports
+3318-1,English Player,1998,,Soccer,Sports
+3320-1,Austrian Player,1998,,Soccer,Sports
+332-1,Tow Truck,1967,56.0,Traffic,Classic
+3323-1,Kaufhof Promotional Set: German National Player and Ball,1998,,Soccer,Sports
+3324-1,Kaufhof Promotional Set: World Team Player and Ball,1998,5.0,Soccer,Sports
+3330-1,Racing Car,1998,,Basic Model,Universal Building Set
+333-1,Basic Set,1981,100.0,Basic Set,Universal Building Set
+3331-1,Bird,1998,,Basic Model,Universal Building Set
+333-2,Delivery Truck,1967,,Cargo,Classic
+3332-1,Plane,1998,,Basic Model,Universal Building Set
+3333-1,Helicopter,1998,17.0,Basic Model,Universal Building Set
+3340-1,Star Wars #1 - Sith Minifig Pack,2000,30.0,Star Wars Episode 1,Star Wars
+334-1,Truck with Flatbed,1967,72.0,Cargo,Classic
+3341-1,Star Wars #2 - Luke/Han/Boba Minifig Pack,2000,25.0,Star Wars Episode 4/5/6,Star Wars
+3342-1,Star Wars #3 - Troopers/Chewie Minifig Pack,2000,25.0,Star Wars Episode 4/5/6,Star Wars
+3343-1,Star Wars #4 - Battle Droid Minifig Pack,2000,33.0,Star Wars Episode 1,Star Wars
+3344-1,One Minifig Pack - Ninja #1,2000,10.0,Ninja,Ninja
+3345-1,Three Minifig Pack - Ninja #2,2000,24.0,Ninja,Ninja
+3346-1,Three Minifig Pack - Ninja #3,2000,,Ninja,Ninja
+3347-1,One Minifig Pack - Rock Raiders #1,2000,,Rock Raiders,Rock Raiders
+3348-1,Three Minifig Pack - Rock Raiders #2,2000,,Rock Raiders,Rock Raiders
+3349-1,Three Minifig Pack - Rock Raiders #3,2000,29.0,Rock Raiders,Rock Raiders
+3350-1,City #1,2000,,Town,Town
+335-1,Basic Building Set,1990,245.0,Basic,Universal Building Set
+3351-1,Three Minifig Pack - City #2,2000,24.0,Town,Town
+335-2,Transport Truck,1967,,Cargo,Classic
+336-1,Fire Engine,1968,76.0,Fire,Classic
+3365-1,Moon Buggy,2011,,City,Town
+3366-1,Satellite Launcher,2011,,City,Town
+3367-1,Space Shuttle,2011,230.0,City,Town
+3368-1,Rocket Launch Center,2011,,City,Town
+337-1,Basic Building Set,1987,225.0,Basic,Universal Building Set
+337-2,Truck with Crane and Caterpillar Track,1969,,Construction,Classic
+3380-1,Johnny Thunder Chupa Chups Promotional,2003,5.0,Orient Expedition,Adventurers
+338-1,Ambulance,1970,74.0,Hospital,Legoland
+3381-1,Lord Sam Sinister Chupa Chups Promotional,2003,5.0,Orient Expedition,Adventurers
+338-2,Blondi the Pig and Taxi Station,1979,35.0,Fabuland,Fabuland
+3382-1,Jing Lee the Wanderer Chupa Chups Promotional,2003,,Orient Expedition,Adventurers
+3383-1,Chef,2003,,Food & Drink,Town
+3384-1,Train Worker Chupa Chups Promotional,2003,,World City,Train
+3385-1,Conductor Charlie,2003,,World City,Train
+3386-1,Xtreme Stunts Pepper Roni Chupa Chups Promotional,2003,4.0,Island Xtreme Stunts,Island Xtreme Stunts
+3387-1,Xtreme Stunts Brickster Chupa Chups Promotional,2003,4.0,Island Xtreme Stunts,Island Xtreme Stunts
+3388-1,Xtreme Stunts Snap Lockitt Chupa Chups Promotional,2003,,Island Xtreme Stunts,Island Xtreme Stunts
+3389-1,Skateboarder Bill Chupa Chups Promotional,2003,7.0,Gravity Games,Sports
+3390-1,Basketball Street Player Chupa Chups Promotional,2003,,Basketball,Sports
+3391-1,"Dash, Mission Deep Sea, Chupa Chups Promotional",2003,,Mission Deep Sea,Alpha Team
+3-4,Basic Set,1973,,Basic Set,Universal Building Set
+340-1,Basic Building Set,1985,220.0,Basic,Universal Building Set
+3401-1,Shoot 'n' Score - without ZIDANE / Adidas Minifig,2000,24.0,Soccer,Sports
+3401-2,Shoot 'n' Score - with ZIDANE / Adidas Minifig,2000,,Soccer,Sports
+340-2,Fire Trucks,1978,277.0,Building Set with People,Building Set with People
+3402-1,Grandstand with Lights,2000,60.0,Soccer,Sports
+340-3,Railroad Control Tower,1968,74.0,Building,Classic
+3403-1,Fans' Grandstand with Scoreboard,2000,80.0,Soccer,Sports
+3404-1,Black Bus,2000,130.0,Soccer,Sports
+3405-1,Blue Bus,2000,130.0,Soccer,Sports
+3406-1,Americas Bus,2000,,Soccer,Sports
+3407-1,Red Bus,2000,130.0,Soccer,Sports
+3408-1,Super Sports Coverage,2000,,Soccer,Sports
+3409-1,Championship Challenge,2000,,Soccer,Sports
+3409-2,Championship Challenge - Special Edition with Orange Players,2000,1.0,Soccer,Sports
+3409-3,Championship Challenge,2000,295.0,Soccer,Sports
+3410-1,Field Expander,2000,52.0,Soccer,Sports
+341-1,Warehouse,1968,,Building,Classic
+3411-1,Team Transport Bus,2000,131.0,Soccer,Sports
+341-2,Cathy Cat's & Morty Mouse's Cottage,1979,,Fabuland,Fabuland
+3412-1,Point Shooting,2000,24.0,Soccer,Sports
+3413-1,Goal Keeper,2000,,Soccer,Sports
+3414-1,Precision Shooting,2000,,Soccer,Sports
+3416-1,Women's Team,2001,,Soccer,Sports
+3418-1,Point Shooting,2001,24.0,Soccer,Sports
+3419-1,Precision Shooting,2001,23.0,Soccer,Sports
+3420-1,Championship Challenge II,2002,,Soccer,Sports
+3420-2,Championship Challenge II - FC Bayern Promo Edition,2003,387.0,Soccer,Sports
+3420-3,Championship Challenge II - L'Equipe de France Promo Edition,2002,,Soccer,Sports
+3420-4,Championship Challenge II - Sports Edition,2004,387.0,Soccer,Sports
+342-1,Station,1968,,Building,Classic
+3421-1,3 v 3 Shootout,2002,224.0,Soccer,Sports
+3422-1,Shoot 'N Save (non-promo),2002,110.0,Soccer,Sports
+3422-2,Shoot 'N Save (FC Bayern Promo Edition),2003,114.0,Soccer,Sports
+3423-1,Freekick Frenzy,2002,52.0,Soccer,Sports
+3424-1,Target Practice,2002,,Soccer,Sports
+3425-1,Grand Championship Cup - U.S. Men's Team Cup Edition,2002,,Soccer,Sports
+3425-2,Grand Championship Cup,2002,568.0,Soccer,Sports
+3426-1,Team Transport Bus Adidas Edition,2002,,Soccer,Sports
+3427-1,NBA Slam Dunk,2003,55.0,Basketball,Sports
+3428-1,One vs One Action,2003,,Basketball,Sports
+3429-1,Ultimate Defense,2003,82.0,Basketball,Sports
+3430-1,Spin & Shoot,2002,70.0,Basketball,Sports
+343-1,Train Ferry,1968,,Harbor,Classic
+3431-1,Streetball 2 vs 2,2003,,Basketball,Sports
+3432-1,NBA Challenge,2003,,Basketball,Sports
+3433-1,NBA Ultimate Arena,2003,490.0,Basketball,Sports
+3438-1,McDonald's Restaurant,1999,93.0,Food & Drink,Town
+3439-1,Spy Runner,2000,105.0,Airport,Town
+3440-1,NBA Jam Session Co-Pack,2003,71.0,Basketball,Sports
+344-1,Bungalow,1969,77.0,Building,Legoland
+344-2,Service Station,1979,85.0,Fabuland,Fabuland
+3442-1,"Legoland California Truck, Limited Edition",1998,,Traffic,Town
+3444-1,2 x 4 Ridge Roof Tiles Steep Sloped Black,2000,25.0,Bulk Bricks,Bulk Bricks
+3445-1,2 x 4 Ridge Roof Tiles Steep Sloped Red,2000,25.0,Bulk Bricks,Bulk Bricks
+3446-1,2 x 2 Window White,2000,25.0,Bulk Bricks,Bulk Bricks
+3447-1,1 x 3 x 4 Wall Element Transparent Blue (Train Window),2000,25.0,Bulk Bricks,Bulk Bricks
+3448-1,1 x 4 x 5 Black Window Frames with Clear Panes,2000,20.0,Bulk Bricks,Bulk Bricks
+3449-1,1 x 4 x 6 Black Door Frame with Transparent Blue Panes,2000,,Bulk Bricks,Bulk Bricks
+3450-1,Statue of Liberty,2000,2899.0,Sculptures,Sculptures
+345-1,House with Mini Wheel Car,1969,132.0,Building,Legoland
+3451-1,Sopwith Camel,2001,575.0,Sculptures,Sculptures
+345-2,Small Bucket for Her,1993,,Basic,Universal Building Set
+3453-1,2 x 2 Black Bricks,2000,100.0,Bulk Bricks,Bulk Bricks
+3454-1,2 x 2 Light Gray Bricks,2003,,Bulk Bricks,Bulk Bricks
+3455-1,2 x 2 White Bricks,2003,100.0,Bulk Bricks,Bulk Bricks
+3456-1,2 x 2 Dark Green Bricks,2000,100.0,Bulk Bricks,Bulk Bricks
+3457-1,2 x 2 Red Bricks,2000,,Bulk Bricks,Bulk Bricks
+3458-1,2 x 4 Black Bricks,2000,50.0,Bulk Bricks,Bulk Bricks
+3459-1,2 x 4 Light Gray Bricks,2003,,Bulk Bricks,Bulk Bricks
+3460-1,2 x 4 White Bricks,2003,50.0,Bulk Bricks,Bulk Bricks
+346-1,Jumbo Jet,1970,,Airport,Legoland
+3461-1,2 x 4 Dark Green Bricks,2000,50.0,Bulk Bricks,Bulk Bricks
+346-2,House with Car,1969,167.0,Building,Legoland
+3462-1,2 x 4 Red Bricks,2000,50.0,Bulk Bricks,Bulk Bricks
+3463-1,2 x 8 Black Bricks,2000,25.0,Bulk Bricks,Bulk Bricks
+3464-1,2 x 8 Light Gray Bricks,2003,25.0,Bulk Bricks,Bulk Bricks
+3465-1,2 x 8 White Bricks,2003,,Bulk Bricks,Bulk Bricks
+3466-1,2 x 8 Dark Green Bricks,2000,,Bulk Bricks,Bulk Bricks
+3467-1,2 x 8 Red Bricks,2000,25.0,Bulk Bricks,Bulk Bricks
+3468-1,1 x 4 Black Bricks,2000,,Bulk Bricks,Bulk Bricks
+3469-1,1 x 4 Light Gray Bricks,2003,50.0,Bulk Bricks,Bulk Bricks
+3470-1,1 x 4 White Bricks,2003,50.0,Bulk Bricks,Bulk Bricks
+347-1,Fire Station with Mini Cars,1970,205.0,Fire,Legoland
+3471-1,1 x 4 Dark Green Bricks,2000,50.0,Bulk Bricks,Bulk Bricks
+347-2,Basic Building Set,1987,330.0,Basic,Universal Building Set
+3472-1,1 x 4 Red Bricks,2000,,Bulk Bricks,Bulk Bricks
+347-3,Doc David's Hospital,1979,105.0,Hospital,Fabuland
+3473-1,1 x 6 Black Bricks,2000,50.0,Bulk Bricks,Bulk Bricks
+3474-1,1 x 6 Light Gray Bricks,2000,50.0,Bulk Bricks,Bulk Bricks
+3475-1,1 x 6 White Bricks,2000,,Bulk Bricks,Bulk Bricks
+3476-1,1 x 6 Dark Green Bricks,2000,50.0,Bulk Bricks,Bulk Bricks
+3477-1,1 x 6 Red Bricks,2000,50.0,Bulk Bricks,Bulk Bricks
+3478-1,1 x 8 Black Bricks,2000,25.0,Bulk Bricks,Bulk Bricks
+3479-1,1 x 8 Light Grey Bricks,2000,25.0,Bulk Bricks,Bulk Bricks
+3480-1,1 x 8 White Bricks,2003,,Bulk Bricks,Bulk Bricks
+348-1,Garage with Automatic Doors,1971,38.0,Building,Legoland
+3481-1,1 x 8 Dark Green Bricks,2000,25.0,Bulk Bricks,Bulk Bricks
+3482-1,1 x 8 Red Bricks,2000,25.0,Bulk Bricks,Bulk Bricks
+3483-1,2 x 4 Black Plates,2000,100.0,Bulk Bricks,Bulk Bricks
+3484-1,2 x 4 White Plates,2000,100.0,Bulk Bricks,Bulk Bricks
+3485-1,2 x 4 Red Plates,2000,100.0,Bulk Bricks,Bulk Bricks
+3486-1,1 x 6 Black Plates,2000,,Bulk Bricks,Bulk Bricks
+3487-1,1 x 6 White Plates,2000,,Bulk Bricks,Bulk Bricks
+3488-1,1 x 6 Red Plates,2000,,Bulk Bricks,Bulk Bricks
+3489-1,2 x 8 Black Plates,2000,25.0,Bulk Bricks,Bulk Bricks
+3490-1,2 x 8 White Plates,2000,25.0,Bulk Bricks,Bulk Bricks
+349-1,Swiss Chalet,1971,81.0,Building,Legoland
+3491-1,2 x 8 Red Plates,2000,25.0,Bulk Bricks,Bulk Bricks
+3492-1,2 x 2 Black Smooth Tiles,2000,,Bulk Bricks,Bulk Bricks
+3493-1,2 x 2 White Smooth Tiles,2000,100.0,Bulk Bricks,Bulk Bricks
+3494-1,2 x 2 Red Smooth Tiles,2000,100.0,Bulk Bricks,Bulk Bricks
+3495-1,2 x 2 Roof Tiles Steep Sloped Black,2003,100.0,Bulk Bricks,Bulk Bricks
+3496-1,2 x 2 Roof Tiles Steep Sloped Red,2003,100.0,Bulk Bricks,Bulk Bricks
+3497-1,2 x 4 Roof Tile Black,2003,50.0,Bulk Bricks,Bulk Bricks
+3498-1,2 x 4 Roof Tile Red,2000,,Bulk Bricks,Bulk Bricks
+3499-1,Small Spruce Trees,2000,,Bulk Bricks,Bulk Bricks
+3500-1,Kobe Bryant,2003,,Basketball,Sports
+350-1,Spanish Villa,1971,126.0,Building,Legoland
+3501-1,Jet-Car,1998,,Znap,Znap
+350-2,Basic Building Set,1985,315.0,Basic,Universal Building Set
+3502-1,Bi-Wing,1998,,Znap,Znap
+350-3,Town Hall with Leonard Lion & Friends,1979,,Fabuland,Fabuland
+3503-1,Mini-Sonic,1998,22.0,Znap,Znap
+3504-1,Hook-Truck,1998,30.0,Znap,Znap
+3505-1,Aeroplane,1999,23.0,Znap,Znap
+3506-1,Motorbike,1999,,Znap,Znap
+3507-1,1 x 4 x 3 Wall Element Clear,2001,,Bulk Bricks,Bulk Bricks
+3508-1,1 x 4 x 5 Black Window Frame with Blue Pane,2001,20.0,Bulk Bricks,Bulk Bricks
+35-1,Screws for Motor Case,1977,2.0,Service Packs,Service Packs
+3510-1,Polybag,1998,25.0,Znap,Znap
+351-1,Loader Hopper with Truck,1971,170.0,Construction,Legoland
+3520-1,Forklift,1999,39.0,Znap,Znap
+352-1,Windmill and Lorry,1972,142.0,Building,Legoland
+3521-1,Racer,1999,,Znap,Znap
+3529-1,Pau Gasol,2003,,Basketball,Sports
+3530-1,Tony Parker,2003,4.0,Basketball,Sports
+353-1,Terrace House with Car and Garage,1972,153.0,Building,Legoland
+3531-1,Tri-Bike,1998,,Znap,Znap
+3532-1,Jet-Ski,1998,,Znap,Znap
+3535-1,Skateboard Street Park,2003,68.0,Gravity Games,Sports
+3536-1,Snowboard Big Air Comp,2003,81.0,Gravity Games,Sports
+3537-1,Skateboard Vert Park Challenge,2003,,Gravity Games,Sports
+3538-1,Snowboard Boarder Cross Race,2003,196.0,Gravity Games,Sports
+3540-1,Puck Passer,2003,,Hockey,Sports
+354-1,Police Heliport,1972,173.0,Police,Legoland
+3541-1,Slap Shot,2003,46.0,Hockey,Sports
+3542-1,Flip Shot,2003,,Hockey,Sports
+3543-1,Slammer Goalie,2003,,Hockey,Sports
+3544-1,Hockey Game Set,2003,153.0,Hockey,Sports
+3545-1,Hockey Puck Feeder,2003,151.0,Hockey,Sports
+3548-1,Slam Dunk Trainer,2003,,Basketball,Sports
+3548-2,Slam Dunk Trainer (Kabaya Promotional),2003,19.0,Basketball,Sports
+3549-1,Practice Shooting,2003,,Basketball,Sports
+3549-2,Practice Shooting (Kabaya Promotional),2003,17.0,Basketball,Sports
+3550-1,Jump and Shoot,2003,17.0,Basketball,Sports
+3550-2,Jump and Shoot (Kabaya Promotional),2003,17.0,Basketball,Sports
+355-1,Town Center Set with Roadways,1972,,Building,Legoland
+3551-1,Dino-Jet,1998,,Znap,Znap
+355-2,Basic Set,1981,,Basic Set,Universal Building Set
+3552-1,Hover Sub with motor,1998,126.0,Znap,Znap
+3554-1,Helicopter,1999,79.0,Znap,Znap
+3555-1,Jeep,1999,,Znap,Znap
+3557-1,Blue Player & Goal,2004,33.0,Hockey,Sports
+3558-1,Red Player & Goal,2004,,Hockey,Sports
+3559-1,Red & Blue Player,2004,40.0,Hockey,Sports
+3560-1,NBA Collectors #1,2003,,Basketball,Sports
+356-1,Swiss Villa,1973,,Building,Legoland
+3561-1,NBA Collectors #2,2003,,Basketball,Sports
+356-2,Basic Building Set with Storage Case,1987,331.0,Basic,Universal Building Set
+3562-1,NBA Collectors #3,2003,,Basketball,Sports
+3563-1,NBA Collectors #4,2003,,Basketball,Sports
+3564-1,NBA Collectors #5,2003,15.0,Basketball,Sports
+3565-1,NBA Collectors #6,2003,15.0,Basketball,Sports
+3566-1,NBA Collectors #7,2003,15.0,Basketball,Sports
+3567-1,NBA Collectors #8,2003,,Basketball,Sports
+3568-1,Soccer Target Practice,2006,24.0,Soccer,Sports
+3569-1,Grand Soccer Stadium,2006,382.0,Soccer,Sports
+3570-1,Street Soccer,2006,,Soccer,Sports
+357-1,Fire Station,1973,236.0,Fire,Legoland
+3571-1,Blackmobile with motor,1998,,Znap,Znap
+3573-1,Superstar Figure ,2007,9.0,Soccer,Sports
+3578-1,NHL Championship Challenge,2004,,Hockey,Sports
+3579-1,Street Hockey,2004,,Hockey,Sports
+358-1,Rocket Base,1973,276.0,Space,Legoland
+3581-1,Formula Z Car in Storage Case,1998,172.0,Znap,Znap
+3582-1,Ant,1999,,Znap,Znap
+3584-1,Rapid Return,2003,47.0,Basketball,Sports
+3585-1,Snowboard Super Pipe,2003,,Gravity Games,Sports
+359-1,Environment Plate,1972,1.0,Supplemental,Universal Building Set
+3591-1,Heli-Transport (Rota-Beast),1998,,Znap,Znap
+3594-1,Bob's Workshop,2009,,Duplo,Duplo
+3598-1,XXL 2000 Canister,2005,2000.0,Basic Set,Creator
+3599-1,XXL 250 Canister,2005,,Basic Set,Duplo
+3-6,Medium House Set,1970,,Minitalia,Minitalia
+3600-1,Build Your Own House Tub,2005,1201.0,Basic Set,Creator
+360-1,Gravel Quarry,1974,211.0,Construction,Legoland
+3601-1,Elton Elephant,1981,7.0,Fabuland,Fabuland
+3602-1,Bianca Lamb and Stroller,1980,4.0,Fabuland,Fabuland
+3603-1,Boris Bulldog and Mailbox,1981,,Post Office,Fabuland
+3604-1,Marc Monkey and Wheelbarrow,1980,,Fabuland,Fabuland
+3605-1,Ricky Racoon and his Scooter,1980,,Fabuland,Fabuland
+361-1,Tea Garden Cafe with Baker's Van,1974,214.0,Building,Legoland
+361-2,Garage,1979,79.0,Traffic,Town
+3612-1,Wild Animals,2002,,Duplo,Duplo
+3615-1,Percy Pig's Wheelbarrow,1981,4.0,Fabuland,Fabuland
+362-1,Windmill,1975,,Building,Legoland
+3622-1,Rowboat,1988,14.0,Harbor,Fabuland
+3623-1,Beauty Salon,1988,,Fabuland,Fabuland
+3624-1,Flower Car,1985,27.0,Fabuland,Fabuland
+3625-1,Aeroplane,1985,,Airport,Fabuland
+3626-1,Roger Raccoon's Sports Car,1983,17.0,Fabuland,Fabuland
+3627-1,Bonnie Rabbit's Flower Truck,1983,,Fabuland,Fabuland
+3628-1,Perry Panda & Chester Chimp,1981,,Fabuland,Fabuland
+3629-1,Barney Bear,1981,,Fabuland,Fabuland
+3630-1,Sports Airplane,1984,9.0,Airport,Fabuland
+363-1,Hospital with Figures,1975,,Hospital,Legoland
+3631-1,Orchestra,1985,,Fabuland,Fabuland
+3633-1,Motor Boat,1986,,Harbor,Fabuland
+3634-1,Charlie Crow's Carry-All,1980,18.0,Fabuland,Fabuland
+3635-1,Bonnie Bunny's Camper,1981,31.0,Fabuland,Fabuland
+3636-1,Bedroom,1987,,Fabuland,Fabuland
+3637-1,Gertrude Goat's Painter's Truck,1983,15.0,Fabuland,Fabuland
+3638-1,Buster Bulldog's Fire Engine,1983,17.0,Fire,Fabuland
+3639-1,Police Car,1984,12.0,Police,Fabuland
+364-1,Harbour Scene,1975,515.0,Harbor,Legoland
+3641-1,Car & Camper,1985,,Fabuland,Fabuland
+3642-1,Fire Engine,1985,,Fire,Fabuland
+3643-1,Police Car,1985,12.0,Police,Fabuland
+3644-1,Mayor's Car,1986,11.0,Fabuland,Fabuland
+3645-1,Classroom,1987,,Fabuland,Fabuland
+3646-1,Kitchen,1988,,Fabuland,Fabuland
+3647-1,School Room,1989,44.0,Fabuland,Fabuland
+3648-1,Police Chase,2011,172.0,Police,Town
+365-1,Wild West Scene,1975,591.0,Factory,Factory
+365-2,Build-N-Store Chest,1990,,Basic,Universal Building Set
+3654-1,Country Cottage,1982,,Fabuland,Fabuland
+3658-1,Police Helicopter,2011,236.0,Police,Town
+3659-1,Play Ground,1987,,Fabuland,Fabuland
+3660-1,Fisherman's Cottage,1985,,Fabuland,Fabuland
+366-1,Basic Set,1981,,Basic Set,Universal Building Set
+3661-1,Bank & Money Transfer,2011,408.0,Police,Town
+3662-1,Bus,1987,33.0,Fabuland,Fabuland
+3663-1,Max Mouse's Carousel,1989,22.0,Fabuland,Fabuland
+3664-1,Police Station,1984,63.0,Police,Fabuland
+3665-1,Ice Cream with Scooter,1980,,Fabuland,Fabuland
+3666-1,Petrol Station,1982,29.0,Fabuland,Fabuland
+3667-1,Bakery,1982,63.0,Fabuland,Fabuland
+3668-1,Merry-Go-Round,1986,48.0,Fabuland,Fabuland
+3669-1,Fire & Police Station,1982,33.0,Fabuland,Fabuland
+3670-1,Service Station,1984,54.0,Fabuland,Fabuland
+367-1,Moon Landing,1975,363.0,Space,Legoland
+3671-1,Airport,1984,,Airport,Fabuland
+3672-1,Hotel / Restaurant,1982,,Fabuland,Fabuland
+3673-1,Steamboat,1985,64.0,Harbor,Fabuland
+3674-1,Bonnie Bunny's New House,1987,,Fabuland,Fabuland
+3675-1,General Store,1987,106.0,Fabuland,Fabuland
+3676-1,Catherine Cat's Fun Park,1989,,Fabuland,Fabuland
+3677-1,Red Cargo Train,2011,,RC Train,Train
+3678-1,The Fabuland House,1982,,Fabuland,Fabuland
+3679-1,Mill with Shop,1986,80.0,Fabuland,Fabuland
+3680-1,Camping Caravan,1988,24.0,Fabuland,Fabuland
+368-1,Taxi Station,1976,157.0,Building,Legoland
+3681-1,Amusement Park,1985,104.0,Fabuland,Fabuland
+3682-1,Fire Station,1987,,Fire,Fabuland
+3683-1,Amusement Park,1988,,Fabuland,Fabuland
+369-1,Coast Guard Station,1976,,Coast Guard,Legoland
+370-1,Police Headquarters,1976,300.0,Police,Legoland
+3701-1,Fisherman Cornelius Cat,1982,3.0,Fabuland,Fabuland
+3703-1,Peter Pig the Cook,1982,,Fabuland,Fabuland
+3704-1,Marjorie Mouse,1982,3.0,Fabuland,Fabuland
+3706-1,Elmer Elephant,1982,,Fabuland,Fabuland
+3707-1,Clover Cow,1982,,Fabuland,Fabuland
+3708-1,Rufus Rabbit,1982,4.0,Fabuland,Fabuland
+3709-1,"Henry Horse, Carpenter",1983,,Fabuland,Fabuland
+3710-1,Peter Panda Takes a Bath,1983,3.0,Fabuland,Fabuland
+371-1,Tipper Truck,1971,47.0,Construction,Legoland
+3711-1,Pierre Pig and His Tuba,1984,5.0,Fabuland,Fabuland
+371-2,Motorized Truck Set,1967,314.0,Other,Other
+3712-1,Robby Rabbit and Accordion,1984,5.0,Fabuland,Fabuland
+371-3,Seaplane,1977,,Airport,Legoland
+3713-1,Drummer Gabriel Monkey,1984,,Fabuland,Fabuland
+3714-1,Bricklayer Oscar Orangutan,1985,7.0,Fabuland,Fabuland
+3715-1,Flower Stand,1985,20.0,Fabuland,Fabuland
+3716-1,Office,1985,9.0,Fabuland,Fabuland
+3717-1,Fisherman,1985,,Fabuland,Fabuland
+3718-1,Small Cafe,1986,5.0,Fabuland,Fabuland
+3719-1,Bus Stop,1987,5.0,Fabuland,Fabuland
+372-1,Texas Rangers,1977,,Factory,Factory
+3721-1,Clive Crocodile on Skateboard,1988,11.0,Fabuland,Fabuland
+372-2,Tow Truck,1971,53.0,Factory,Factory
+3722-1,"Treasure Tomb, TRU exclusive",1998,164.0,Desert,Adventurers
+3723-1,Lego Minifigure,2000,,Sculptures,Sculptures
+3724-1,Lego Dragon,2001,1538.0,Sculptures,Sculptures
+3725-1,1 x 2 Brick Light Gray,2003,100.0,Bulk Bricks,Bulk Bricks
+3726-1,1 x 2 Brick Dark Gray,2003,100.0,Bulk Bricks,Bulk Bricks
+3727-1,1 x 2 Brick Tan,2000,,Bulk Bricks,Bulk Bricks
+3729-1,2 x 4 Dark Gray Bricks,2000,50.0,Bulk Bricks,Bulk Bricks
+3730-1,2 x 4 Tan Bricks,2000,50.0,Bulk Bricks,Bulk Bricks
+373-1,Offshore Rig with Fuel Tanker,1977,,Gas Station,Legoland
+3731-1,Pumpkin Pack,2000,87.0,Halloween,Seasonal
+373-2,Ambulance,1971,65.0,Hospital,Legoland
+3732-1,Castle Expander Pack,2000,24.0,Castle,Bulk Bricks
+3733-1,Gray Windows with Clear Panes,2000,,Bulk Bricks,Bulk Bricks
+3734-1,Train Windows with Panes Blue,2000,20.0,Bulk Bricks,Bulk Bricks
+3735-1,Grey Train Doors with Panes,2000,,Train,Bulk Bricks
+3736-1,Blue Train Doors with Panes,2000,,Train,Bulk Bricks
+3737-1,Train Accessories,2000,15.0,Train,Bulk Bricks
+3738-1,Large Spruce Trees,2000,10.0,Bulk Bricks,Bulk Bricks
+3739-1,Blacksmith Shop,2002,629.0,My Own Creation,Castle
+3740-1,Small Locomotive,2001,66.0,My Own Train,Train
+374-1,Fire Station,1978,,Fire,Town
+3741-1,Large Locomotive (base unit without color trim elements),2001,,My Own Train,Train
+374-2,Fire Engine,1971,,Fire,Legoland
+3742-1,Tender Basis (without color trim elements),2001,,My Own Train,Train
+3743-1,Locomotive Blue Bricks,2001,106.0,My Own Train,Train
+3744-1,Locomotive Green Bricks,2001,,My Own Train,Train
+3745-1,Locomotive Black Bricks,2001,106.0,My Own Train,Train
+3746-1,Locomotive Brown Bricks,2001,106.0,My Own Train,Train
+3747-1,Locomotive Gray Bricks,2001,,My Own Train,Train
+3748-1,Light Unit for Train,2001,4.0,Train,Service Packs
+3750-1,Life on Mars Accessories,2001,48.0,Space,Service Packs
+3751-1,1 x 2 Brown Bricks,2003,100.0,Bulk Bricks,Bulk Bricks
+375-2,Castle,1978,776.0,Classic Castle,Castle
+3752-1,1 x 6 Brown Bricks,2002,,Bulk Bricks,Bulk Bricks
+375-3,Refrigerator Truck and Trailer,1971,127.0,Factory,Factory
+3753-1,2 x 2 Brown Bricks,2003,,Bulk Bricks,Bulk Bricks
+3754-1,2 x 4 Brown Bricks,2003,50.0,Bulk Bricks,Bulk Bricks
+3755-1,2 x 4 Roof Tile Brown,2003,50.0,Bulk Bricks,Bulk Bricks
+3756-1,2 x 4 Brown Ridge Roof Tiles Steep Sloped,2003,,Bulk Bricks,Bulk Bricks
+3758-1,35th Anniversary Bucket,1998,,Basic Set,Universal Building Set
+3759-1,35th Anniversary Tub,1998,,Basic Set,Universal Building Set
+3760-1,35th Anniversary Bucket,1998,,Freestyle,Freestyle
+376-1,Low-Loader with Excavator,1971,91.0,Construction,Legoland
+3761-1,35th Anniversary Tub,1998,842.0,Freestyle,Freestyle
+376-2,Town House with Garden,1978,244.0,Building,Town
+377-1,Shell Service Station,1978,190.0,Station,Town
+377-2,Crane with Float Truck,1971,,Construction,Legoland
+3774-1,Bridge,2005,26.0,Disney's Mickey Mouse,Disney's Mickey Mouse
+3775-1,Points,2005,,Duplo,Duplo
+378-1,Tractor,1972,36.0,Factory,Factory
+3781-1,Maximillian Mouse,1982,5.0,Fabuland,Fabuland
+3782-1,Photographer Patrick Parrot,1982,5.0,Fabuland,Fabuland
+3784-1,Hugo Hog the Tinker,1982,5.0,Fabuland,Fabuland
+3786-1,Buzzy Bulldog the Postman,1982,7.0,Post Office,Fabuland
+3787-1,"Hannah Hippopotamus, Gardener",1983,13.0,Fabuland,Fabuland
+3788-1,Paulette Poodle's Living Room,1983,15.0,Fabuland,Fabuland
+3789-1,Police Motorcycle,1984,,Police,Fabuland
+379-1,Bus Station,1979,177.0,Traffic,Town
+3791-1,William Walrus,1984,,Fabuland,Fabuland
+379-2,Car and Caravan,1972,93.0,Factory,Factory
+3792-1,Bedroom,1985,16.0,Fabuland,Fabuland
+3793-1,Buzzy Bulldog's Mailbox,1985,,Post Office,Fabuland
+3794-1,Police Motorcycle,1985,16.0,Police,Fabuland
+3795-1,Kitchen,1985,26.0,Fabuland,Fabuland
+3796-1,Small Bakery,1986,,Fabuland,Fabuland
+3797-1,Fire Chief Barty Bulldog,1987,9.0,Fire,Fabuland
+3798-1,Hanna's Garden,1988,25.0,Fabuland,Fabuland
+3-8,Mini-Wheel Model Maker No. 3,1971,65.0,Vehicle,Legoland
+3800-1,Ultimate Builders Set,2001,322.0,RCX,Mindstorms
+380-1,Village Set,1971,7.0,Building,Legoland
+3801-1,Ultimate Accessories,2000,,RCX,Mindstorms
+3803-1,Robotics Invention System Upgrade Kit (1.5),1999,69.0,RCX,Mindstorms
+3804-1,"Robotics Invention System, Version 2.0",2001,720.0,RCX,Mindstorms
+3805-1,Robotics Invention System Upgrade Kit (2.0),2002,1.0,RCX,Mindstorms
+3806-1,Gigamesh G60,2002,286.0,Spybiotics,Spybiotics
+3807-1,Snaptrax S45,2002,203.0,Spybiotics,Spybiotics
+3808-1,Shadowstrike S70,2002,236.0,Spybiotics,Spybiotics
+3809-1,Technojaw T55,2002,262.0,Spybiotics,Spybiotics
+381-1,Lorry and Fork Lift Truck,1973,,Construction,Legoland
+381-2,Police Headquarters,1979,,Police,Town
+3815-1,Heroic Heroes of the Deep,2011,,SpongeBob SquarePants,SpongeBob SquarePants
+3816-1,Glove World,2011,168.0,SpongeBob SquarePants,SpongeBob SquarePants
+3817-1,The Flying Dutchman,2012,,SpongeBob SquarePants,SpongeBob SquarePants
+3818-1,Bikini Bottom Undersea Party,2012,,SpongeBob SquarePants,SpongeBob SquarePants
+382-1,Breakdown Truck and Car,1973,91.0,Factory,Factory
+3825-1,Krusty Krab,2006,,SpongeBob SquarePants,SpongeBob SquarePants
+3826-1,Build-A-Bob,2006,445.0,SpongeBob SquarePants,SpongeBob SquarePants
+3827-1,Adventures in Bikini Bottom,2006,576.0,SpongeBob SquarePants,SpongeBob SquarePants
+3828-1,Air Temple,2006,,Avatar,Avatar
+3829-1,Fire Nation Ship,2006,,Avatar,Avatar
+3830-1,The Bikini Bottom Express,2008,209.0,SpongeBob SquarePants,SpongeBob SquarePants
+383-1,Truck with Excavator,1973,102.0,Construction,Legoland
+3831-1,Rocket Ride,2008,,SpongeBob SquarePants,SpongeBob SquarePants
+383-2,Knight's Tournament,1979,,Classic Castle,Castle
+3832-1,The Emergency Room,2008,,SpongeBob SquarePants,SpongeBob SquarePants
+3833-1,Krusty Krab Adventures,2009,208.0,SpongeBob SquarePants,SpongeBob SquarePants
+3834-1,Good Neighbors at Bikini Bottom,2009,423.0,SpongeBob SquarePants,SpongeBob SquarePants
+3835-1,Robo Champ,2009,,Game,Gear
+3836-1,Magikus,2009,,Game,Gear
+3837-1,Monster 4,2009,,Game,Gear
+3838-1,Lava Dragon,2009,,Game,Gear
+3839-1,Race 3000,2009,,Game,Gear
+3840-1,Pirate Code,2009,278.0,Game,Gear
+384-1,London Bus,1973,110.0,Factory,Factory
+3841-1,Minotaurus,2009,,Game,Gear
+3842-1,Lunar Command,2009,,Game,Gear
+3843-1,Ramses Pyramid,2009,231.0,Game,Gear
+3844-1,Creationary,2009,,Game,Gear
+3845-1,Shave a Sheep,2010,118.0,Game,Gear
+3846-1,UFO Attack,2010,88.0,Game,Gear
+3847-1,Magma Monster,2010,,Game,Gear
+3848-1,Pirate Plank,2010,,Game,Gear
+3849-1,Orient Bazaar,2010,216.0,Game,Gear
+3850031-1,Puffin,2017,,Pick A Model,LEGO Brand Store
+3850033-1,Guardsman,2017,44.0,Pick A Model,LEGO Brand Store
+3850-1,Meteor Strike,2010,,Game,Gear
+385-1,Jeep CJ-5,1976,,Factory,Factory
+3851-1,Atlantis Treasure,2010,280.0,Game,Gear
+385-2,Build-N-Store Chest,1990,450.0,Basic,Universal Building Set
+3852-1,Sunblock,2011,,Game,Gear
+3853-1,Banana Balance,2011,,Game,Gear
+3854-1,Frog Rush,2011,107.0,Game,Gear
+3855-1,Ramses Return,2011,99.0,Game,Gear
+3856-1,Ninjago,2011,247.0,Game,Gear
+3857-1,Draida Bay,2011,101.0,Game,Gear
+3858-1,Waldurk Forest,2011,,Game,Gear
+3859-1,Caverns of Nathuz,2011,223.0,Game,Gear
+3860-1,Castle Fortaan,2011,312.0,Game,Gear
+386-1,Helicopter and Ambulance,1976,,Hospital,Legoland
+3861-1,LEGO Champion,2011,,Game,Gear
+3862-1,Hogwarts,2010,,Game,Gear
+3863-1,Kokoriko,2012,115.0,Game,Gear
+3864-1,Mini Taurus,2012,165.0,Game,Gear
+3865-1,City Alarm,2012,,Game,Gear
+3866-1,Star Wars Battle of Hoth,2012,,Game,Gear
+3870-1,Takeshi Walker 1,2007,29.0,Exo-Force,Exo-Force
+387-1,Excavator and Dumper,1976,,Construction,Legoland
+3871-1,Ha-Ya-To Walker,2007,21.0,Exo-Force,Exo-Force
+3872-1,Robo Chopper,2007,,Exo-Force,Exo-Force
+3874-1,Ilrion,2012,,Game,Gear
+3885-1,Hikaru Little Flyer,2007,,Exo-Force,Exo-Force
+3885-2,Hikaru Little Flyer - Boxed Version,2007,22.0,Exo-Force,Exo-Force
+3885-3,Hikaru Little Flyer - Duracell 12 pack AA Battery Promotion,2007,1.0,Exo-Force,Exo-Force
+3886-1,Ryo Walker,2007,19.0,Exo-Force,Exo-Force
+3886-2,Ryo Walker - Boxed Version,2007,19.0,Exo-Force,Exo-Force
+3886-3,Ryo Walker - Duracell 12 pack AA Battery Promotion,2007,,Exo-Force,Exo-Force
+3888-1,Three Eights,1998,182.0,Freestyle,Freestyle
+3900-1,Bracelet,2000,20.0,Scala,Service Packs
+390-1,Helicopter,1986,24.0,Basic,Universal Building Set
+390-2,1913 Cadillac,1975,,Hobby Sets,Hobby Sets
+39-1,Motor Gearbox,1977,,Service Packs,Service Packs
+391-1,1926 Renault,1975,236.0,Hobby Sets,Hobby Sets
+3911-1,Astronaut Key Chain,2000,,Key Chain,Gear
+391-2,Police Car,1986,22.0,Basic,Universal Building Set
+3913-1,Darth Vader Key Chain,2000,,Key Chain,Gear
+391407-1,Fire Spinner,2014,21.0,Legends of Chima,Legends of Chima
+3914-1,Luke Skywalker Key Chain,2000,,Key Chain,Gear
+3915-1,Race Car Driver Key Chain,2000,,Key Chain,Gear
+3916-1,Rock Raider Key Chain,2000,0.0,Key Chain,Gear
+3917-1,2 x 4 Brick - Red Key Chain,2001,0.0,Key Chain,Gear
+3918-1,Coast Guard Female Key Chain,2002,,Key Chain,Gear
+3920-1,The Hobbit,2012,394.0,Game,Gear
+392-1,Formula 1,1975,196.0,Hobby Sets,Hobby Sets
+392-2,Fire Engine,1986,,Basic,Universal Building Set
+3922-1,Darth Maul Key Chain,2000,0.0,Key Chain,Gear
+3923-1,King Leo Key Chain,2000,0.0,Key Chain,Gear
+3924-1,Director Key Chain,2001,,Key Chain,Gear
+3925-1,Brickster Key Chain,2002,,Key Chain,Gear
+3926-1,Life on Mars Martian Key Chain,2002,0.0,Key Chain,Gear
+3928-1,Sandy Moondust Mars Rover Mission Astrobot Female,2002,5.0,Space,Space
+3929-1,Biff Starling Mars Rover Mission Astrobot Male,2002,5.0,Space,Space
+3930-1,Stephanie's Outdoor Bakery,2012,,Friends,Friends
+393-1,Norton Motorcycle,1976,,Hobby Sets,Hobby Sets
+3931-1,Emma's Splash Pool,2012,,Friends,Friends
+393-2,Tow Truck,1986,29.0,Basic,Universal Building Set
+3932-1,Andrea’s Stage,2012,83.0,Friends,Friends
+3933-1,Olivia's Invention Workshop,2012,86.0,Friends,Friends
+3934-1,Mia’s Puppy House,2012,,Friends,Friends
+3935-1,Stephanie’s Pet Patrol,2012,,Friends,Friends
+3936-1,Emma’s Fashion Design Studio,2012,,Friends,Friends
+3937-1,Olivia's Speedboat,2012,,Friends,Friends
+3938-1,Andrea's Bunny House,2012,64.0,Friends,Friends
+3939-1,Mia's Bedroom,2012,,Friends,Friends
+394-1,Harley-Davidson 1000cc,1976,142.0,Hobby Sets,Hobby Sets
+3942-1,Heartlake Dog Show,2012,202.0,Friends,Friends
+3948-1,Stormtrooper Key Chain,2001,0.0,Key Chain,Gear
+395-1,1909 Rolls-Royce,1976,283.0,Hobby Sets,Hobby Sets
+396-1,Thatcher Perkins Locomotive,1976,433.0,Hobby Sets,Hobby Sets
+3961-1,Johnny Thunder Key Chain,1998,,Key Chain,Gear
+398-1,U.S.S. Constellation,1978,973.0,Hobby Sets,Hobby Sets
+3983-1,Captain Roger Key Chain,2002,0.0,Key Chain,Gear
+4000001-1,Moulding Machines,2011,,LEGO Brand Store,LEGO Brand Store
+4000002-1,LOM Moulding 2011,2011,174.0,Other,Other
+4000005-1,Kornmarken Factory 2012,2012,315.0,Other,Other
+4000006-1,Production Kladno Campus 2012,2012,278.0,Other,Other
+4000007-1,Ole Kirk's House,2012,,Other,Other
+4000008-1,LEGO Inside Tour Exclusive 2013 Edition – Villy Thomsen Truck,2013,,Other,Other
+4000009-1,HMV 2013 Production,2013,285.0,LEGO Brand Store,LEGO Brand Store
+40000-1,Santa Claus in the Snow,2009,159.0,Christmas,Seasonal
+4000010-1,LEGO House,2014,250.0,LEGO Brand Store,LEGO Brand Store
+4000011-1,Nyiregyhaza Factory,2014,,LEGO Brand Store,LEGO Brand Store
+4000012-1,LEGO Inside Tour (LIT) Exclusive 2012 Edition - Piper Airplane,2012,618.0,Other,Other
+4000013-1,A LEGO Christmas Tale,2013,394.0,LEGO Brand Store,LEGO Brand Store
+4000014-1,The LEGOLAND Train,2014,,LEGO Brand Store,LEGO Brand Store
+4000015-1,LOM Building B,2014,215.0,LEGO Brand Store,LEGO Brand Store
+4000016-1,Billund Airport,2014,,LEGO Brand Store,LEGO Brand Store
+40001-1,Santa Claus,2009,,Christmas,Seasonal
+40002-1,Christmas Tree,2009,61.0,Christmas,Seasonal
+40003-1,Snowman,2009,,Christmas,Seasonal
+40004-1,Heart 2010,2010,26.0,Valentine,Seasonal
+40005-1,Bunny,2010,,Easter,Seasonal
+40008-1,Snowman Building Set,2010,64.0,Christmas,Seasonal
+40009-1,Holiday Building Set,2010,85.0,Christmas,Seasonal
+400-1,Universal Building Set,1977,317.0,Basic Set,Universal Building Set
+40010-1,Santa with Sleigh Building Set,2010,71.0,Christmas,Seasonal
+40011-1,Thanksgiving Turkey,2010,52.0,Thanksgiving,Seasonal
+40012-1,Halloween Pumpkin,2010,18.0,Halloween,Seasonal
+40013-1,Halloween Ghost,2010,18.0,Halloween,Seasonal
+40014-1,Halloween Bat,2010,,Halloween,Seasonal
+40015-1,Heart Book,2011,51.0,Seasonal,Seasonal
+40016-1,Valentine Letter Set,2011,,Valentine,Seasonal
+40017-1,Easter Basket,2011,86.0,Easter,Seasonal
+40018-1,Easter Bunny with Eggs,2011,95.0,Easter,Seasonal
+40019-1,Brickley,2011,59.0,Creator,Creator
+40020-1,Halloween Set,2011,71.0,Halloween,Seasonal
+4002014-1,LEGO HUB Birds,2015,,Other,Other
+4002015-1,Borkum Riffgrund 1,2015,558.0,Promotional,Promotional
+4002016-1,50 Years On Track,2016,,Other,Other
+4002-1,Riptide Racer,1996,53.0,Boat,Boat
+40021-1,Spiders Set,2011,,Halloween,Seasonal
+40022-1,Mini Santa Set,2011,72.0,Christmas,Seasonal
+40023-1,Holiday Stocking,2011,,Christmas,Seasonal
+40024-1,Christmas Tree,2011,,Christmas,Seasonal
+40025-1,{Yellow Cab},2012,,Creator,Creator
+40026-1,"Statue of Liberty (LEGO Store, Rockefeller Center, New York, NY)",2012,38.0,LEGO Brand Store,LEGO Brand Store
+40028-1,Mini Hogwarts Express,2011,,Harry Potter,Harry Potter
+40029-1,Heart 2012,2012,51.0,Seasonal,Seasonal
+400-3,Small Wheels with Axles (The Building Toy),1966,12.0,Supplemental,Classic
+40030-1,Duck with Ducklings,2012,,Easter,Seasonal
+40031-1,Bunny and Chick,2012,52.0,Easter,Seasonal
+40032-1,Witch,2012,71.0,Halloween,Seasonal
+40033-1,Turkey,2012,52.0,Thanksgiving,Seasonal
+40034-1,Christmas Train,2012,,Christmas,Seasonal
+40035-1,Rocking Horse,2012,,Christmas,Seasonal
+40036-1,Monthly Mini Model Build January 2012 - Cobra,2012,,Monthly Mini Model Build,LEGO Brand Store
+40037-1,Monthly Mini Model Build February 2012 - Hockey Player,2012,43.0,Monthly Mini Model Build,LEGO Brand Store
+40038-1,Monthly Mini Model Build March 2012 - Garden and Earthworm,2012,,Monthly Mini Model Build,LEGO Brand Store
+40039-1,Monthly Mini Model Build May 2012 - Tulip,2012,16.0,Monthly Mini Model Build,LEGO Brand Store
+400-4,Small Wheels with Axles (System),1963,12.0,Supplemental,Classic
+40040-1,Monthly Mini Model Build July 2012 - Olympic Flame,2012,15.0,Monthly Mini Model Build,LEGO Brand Store
+40041-1,Monthly Mini Model Build December 2012 - Moose,2012,27.0,Monthly Mini Model Build,LEGO Brand Store
+40042-1,Monthly Mini Model Build October 2012 - Cat,2012,25.0,Monthly Mini Model Build,LEGO Brand Store
+40043-1,Monthly Mini Model Build April 2012 - Duck,2012,,Monthly Mini Model Build,LEGO Brand Store
+40044-1,Monthly Mini Model Build June 2012 - Lawnmower,2012,,Monthly Mini Model Build,LEGO Brand Store
+40045-1,Monthly Mini Model Build August 2012 - Shark,2012,27.0,Monthly Mini Model Build,LEGO Brand Store
+40045-2,"Monthly Mini Model Build Set - 2013 August, Shark [Europe]",2013,27.0,Monthly Mini Model Build,LEGO Brand Store
+40047-1,Monthly Mini Model Build September 2012 - Owl,2012,,Monthly Mini Model Build,LEGO Brand Store
+40048-1,Birthday Cake,2012,24.0,Seasonal,Seasonal
+40049-1,Mini Sopwith Camel,2012,,Creator,Creator
+4005-1,Tug Boat,1982,,Boat,Boat
+40051-1,Valentine’s Day Heart Box,2013,54.0,Valentine,Seasonal
+40052-1,Springtime Scene,2013,88.0,Seasonal,Seasonal
+40053-1,Easter Bunny with Basket,2013,,Easter,Seasonal
+40054-1,Summer Scene,2013,40.0,Seasonal,Seasonal
+40055-1,Pumpkin,2013,,Halloween,Seasonal
+40056-1,Thanksgiving Feast,2013,46.0,Seasonal,Seasonal
+40057-1,Fall Scene,2013,72.0,Seasonal,Seasonal
+40058-1,Decorating The Tree,2013,,Creator,Seasonal
+40059-1,Santa's Sleigh,2013,,Creator,Seasonal
+40061-1,Monthly Mini Model Build January 2013 - Igloo,2013,,Monthly Mini Model Build,LEGO Brand Store
+40062-1,Monthly Mini Model Build Set February 2013 - Log Cabin,2013,,Monthly Mini Model Build,LEGO Brand Store
+40063-1,Monthly Mini Model Build March 2013 - Turtle,2013,,Monthly Mini Model Build,LEGO Brand Store
+40064-1,Monthly Mini Model Build Set April 2013 - Lamb and Sheep,2013,32.0,Monthly Mini Model Build,LEGO Brand Store
+40065-1,Monthly Mini Model Build May 2013 - Kingfisher,2013,21.0,Monthly Mini Model Build,LEGO Brand Store
+40066-1,Monthly Mini Model Build June 2013 - Fisherman,2013,,Monthly Mini Model Build,LEGO Brand Store
+40067-1,Monthly Mini Model Build July 2013 - Crab,2013,37.0,Monthly Mini Model Build,LEGO Brand Store
+40068-1,Monthly Mini Model Build August 2013 - Flamingo,2013,,Monthly Mini Model Build,LEGO Brand Store
+40069-1,Monthly Mini Model Build September 2013 - Pirate,2013,,Monthly Mini Model Build,LEGO Brand Store
+40070-1,Monthly Mini Model Build October 2013 - Witch,2013,22.0,Monthly Mini Model Build,LEGO Brand Store
+40071-1,Monthly Mini Model Build November 2013 - Tractor,2013,44.0,Monthly Mini Model Build,LEGO Brand Store
+40072,Monthly Mini Model Build December 2013 - Rocking Horse,2013,32.0,Monthly Mini Model Build,LEGO Brand Store
+40073-1,Panda,2013,,Creature,Creator
+40076-1,Zombie Car,2012,60.0,Monster Fighters,Monster Fighters
+40077-1,Geoffrey,2013,90.0,Creator,Creator
+40078-1,Hot Dog Cart,2013,39.0,Creator,Creator
+40079-1,Mini VW T1 Camper Van,2013,,Creator,Creator
+40080-1,Friends Pencil Holder,2013,,Gear,Gear
+40081-1,LEGOLAND Picture Frame - Florida Edition,2013,121.0,Legoland,Legoland
+40081-2,LEGOLAND Picture Frame - Deutschland Edition,2013,121.0,Legoland,Legoland
+40081-3,LEGOLAND Picture Frame - Billund Edition,2013,,Legoland,Legoland
+40081-4,LEGOLAND Picture Frame - Malaysia Edition,2013,,Legoland,Legoland
+40081-5,LEGOLAND Picture Frame - Windsor Edition,2013,121.0,Legoland,Legoland
+40082-1,Christmas Tree Stand,2013,115.0,Creator,Seasonal
+40083-1,Christmas Tree Truck,2013,,Creator,Seasonal
+40084-1,Hero Factory Weapon Pack,2013,6.0,Hero Factory,Hero Factory
+40085-1,LEGO Valentine,2014,,Valentine,Seasonal
+40086-1,LEGO Easter Bunny,2014,,Easter,Seasonal
+40090-1,Halloween Bat,2014,156.0,Halloween,Seasonal
+40091-1,Turkey,2014,,Thanksgiving,Seasonal
+40092-1,Reindeer,2014,139.0,Christmas,Seasonal
+40093-1,Snowman,2014,140.0,Christmas,Seasonal
+40094-1,Monthly Mini Model Build January 2014 - Snowplough,2014,,Monthly Mini Model Build,LEGO Brand Store
+40095-1,Monthly Mini Model Build February 2014 - Micro Manager,2014,50.0,Monthly Mini Model Build,LEGO Brand Store
+40096-1,Monthly Mini Model Build March 2014 - Spring Tree,2014,,Monthly Mini Model Build,LEGO Brand Store
+40097-1,Monthly Mini Model Build April 2014 - Helicopter,2014,44.0,Monthly Mini Model Build,LEGO Brand Store
+40098-1,Monthly Mini Model Build May 2014 - Dragon,2014,43.0,Monthly Mini Model Build,LEGO Brand Store
+40099-1,Monthly Mini Model Build June 2014 - Jet-Ski,2014,33.0,Monthly Mini Model Build,LEGO Brand Store
+40-1,Universal Building Set,1976,,Basic Set,Universal Building Set
+40100-1,Monthly Mini Model Build July 2014 - Surf Van,2014,,Monthly Mini Model Build,LEGO Brand Store
+4010-1,Police Rescue Boat,1987,82.0,Boat,Boat
+40101-1,Monthly Mini Model Build August 2014 - Monkey,2014,46.0,Monthly Mini Model Build,LEGO Brand Store
+40102-1,Monthly Mini Model Build September 2014 - Aircraft,2014,37.0,Monthly Mini Model Build,LEGO Brand Store
+40103-1,Monthly Mini Model Build November 2014 - Rocket,2014,48.0,Monthly Mini Model Build,LEGO Brand Store
+40104-1,Monthly Mini Model October 2014 - Monster,2014,36.0,Monthly Mini Model Build,LEGO Brand Store
+40105-1,Monthly Mini Model Build December 2014 - Gingerbread House,2014,54.0,Monthly Mini Model Build,LEGO Brand Store
+40106-1,Elves' Workshop,2014,,Christmas,Seasonal
+40107-1,Ice Skating,2014,129.0,Creator,Seasonal
+40108-1,Balloon Cart,2014,66.0,Creator,Creator
+40109-1,MINI Cooper Mini Model,2014,59.0,Creator,Creator
+40110-1,Coin Bank,2014,,Police,Town
+4011-1,Cabin Cruiser,1991,,Boat,Boat
+40112-1,Model Catwalk,2014,,Friends,Friends
+40114-1,LEGO Friends Buildable Jewelry Box,2014,,Friends,Friends
+40115-1,LEGOLAND Entrance with Family,2014,271.0,Legoland Parks,Legoland Parks
+40116-1,Hero Factory Promo,2014,,Hero Factory,Hero Factory
+40117-1,Hero Factory Villain Promo,2014,,Villains,Hero Factory
+40118-1,Buildable Brick Box 2x2,2014,,LEGO Brand Store,LEGO Brand Store
+401-2,Large Wheels with Axles (The Building Toy),1966,7.0,Supplemental,Classic
+40120-1,Valentine's Day Dinner,2015,,Valentine,Seasonal
+4012-1,Wave Cops,1996,99.0,Boat,Boat
+40121-1,Painting Easter Eggs,2015,157.0,Easter,Seasonal
+40122-1,Trick or Treat,2015,,Halloween,Seasonal
+40123-1,Thanksgiving Feast,2015,,Thanksgiving,Seasonal
+40124-1,Winter Fun,2015,,Christmas,Seasonal
+40125-1,Santa's Visit,2015,167.0,Christmas,Seasonal
+40126-1,Monthly Mini Model Build January 2015 - Alien and Space Dog,2015,,Monthly Mini Model Build,LEGO Brand Store
+40127-1,Monthly Mini Model Build February 2015 - Space Shuttle,2015,39.0,Monthly Mini Model Build,LEGO Brand Store
+40128-1,Monthly Mini Model Build March 2015 - Robot,2015,,Monthly Mini Model Build,LEGO Brand Store
+40129-1,Monthly Mini Model Build April 2015 – UFO,2015,,Monthly Mini Model Build,LEGO Brand Store
+401-3,Large Wheels with Axles (System),1964,7.0,Supplemental,Classic
+40130-1,Monthly Mini Model Build May 2015 - Koala,2015,,Monthly Mini Model Build,LEGO Brand Store
+4013-1,Create and Imagine,2003,,Basic Set,Creator
+40131-1,Monthly Mini Model Build June 2015 - Parrot,2015,55.0,Monthly Mini Model Build,LEGO Brand Store
+40132-1,Whale July 2015,2015,31.0,Monthly Mini Model Build,LEGO Brand Store
+40133-1,Monthly Mini Model Build August 2015 - Kangaroo,2015,49.0,Monthly Mini Model Build,LEGO Brand Store
+40134-1,Monthly Mini Model Build September 2015 - Scuba Diver,2015,45.0,Monthly Mini Model Build,LEGO Brand Store
+40135-1,Monthly Mini Model Build October 2015 - Angler Fish,2015,29.0,Monthly Mini Model Build,LEGO Brand Store
+40136-1,Monthly Mini Model Build November 2015 - Shark,2015,,Monthly Mini Model Build,LEGO Brand Store
+40137-1,Monthly Mini Model Build December 2015 - Submarine,2015,28.0,Monthly Mini Model Build,LEGO Brand Store
+40138-1,Christmas Train,2015,,Christmas,Seasonal
+40139-1,Gingerbread House,2015,,Construction,Creator
+40140-1,Flower Cart,2015,75.0,Basic Model,Creator
+4014-1,Creator Exclusive,2003,500.0,Basic Set,Creator
+40141-1,Bricktober Hotel,2015,,Bricktober,Modular Buildings
+40142-1,Bricktober Train Station,2015,180.0,Bricktober,Modular Buildings
+40143-1,Bricktober Bakery,2015,,Bricktober,Modular Buildings
+40144-1,Bricktober Toys R Us Store,2015,164.0,Bricktober,Modular Buildings
+40145-1,LEGO Brand Store Opening Set,2015,,LEGO Brand Store,LEGO Brand Store
+40146-1,Lufthansa Plane,2015,65.0,Promotional,Promotional
+40148-1,Year Of The Sheep,2015,99.0,Creature,Creator
+4015-1,Freighter,1982,,Boat,Boat
+40153-1,Birthday Cake,2015,120.0,Other,Other
+40154-1,Pencil Holder,2015,,Other,Other
+40155-1,Piggy Coin Bank,2015,,Other,Other
+40156-1,Organiser,2015,171.0,Friends,Friends
+40158-1,Pirates Chess Set,2015,855.0,Pirates III,Pirates
+4016-1,Racer,2001,21.0,Creator,Creator
+40161-1,What Am I?,2016,,Other,Other
+40165-1,Minifigure Wedding Favor Set,2016,90.0,LEGO Brand Store,LEGO Brand Store
+40166-1,LEGOLAND Train,2016,210.0,Legoland Parks,Legoland Parks
+40170-1,Build My City Accessory Set,2017,101.0,Supplemental,Town
+4017-1,Sea Helicopter,2001,13.0,Creator,Creator
+40171-1,Hedgehog Storage,2017,248.0,Friends,Friends
+40172-1,Brick Calendar,2017,278.0,Gear,Gear
+40174-1,Iconic Chess Set,2017,,Game,Gear
+40179-1,Personalised Mosaic Portrait,2016,4501.0,Mosaic,Sculptures
+40180-1,Bricktober Theater,2014,,Bricktober,Modular Buildings
+4018-1,Ship,2001,12.0,Creator,Creator
+40181-1,Bricktober Pizza Place,2014,139.0,Bricktober,Modular Buildings
+40182-1,Bricktober Fire Station,2014,,Bricktober,Modular Buildings
+40183-1,Bricktober Town Hall,2014,,Bricktober,Modular Buildings
+40190-1,Ferrari F138,2014,41.0,Promotional,Promotional
+4019-1,Aeroplane,2001,17.0,Airport,Creator
+40191-1,Ferrari F12 Berlinetta,2014,44.0,Promotional,Promotional
+40192-1,Ferrari 250 GTO,2014,46.0,Promotional,Promotional
+40193-1,Ferrari 512 S,2014,,Promotional,Promotional
+40194-1,Finish Line & Podium,2014,63.0,Promotional,Promotional
+40195-1,Shell Station,2014,79.0,Promotional,Promotional
+40196-1,Shell Tanker,2014,93.0,Promotional,Promotional
+4020-1,Fire Fighting Boat,1987,206.0,Boat,Boat
+40201-1,Valentines Cupid Dog,2016,,Valentine,Seasonal
+40202-1,Easter Chick,2016,111.0,Easter,Seasonal
+40203-1,Vampire and Bat,2016,150.0,Halloween,Seasonal
+40204-1,Pilgrim's Feast,2016,163.0,Thanksgiving,Seasonal
+40205-1,Elves' Workshop,2016,238.0,Seasonal,Seasonal
+40206-1,Santa,2016,,Christmas,Seasonal
+40207-1,Year Of The Monkey,2016,,Creator,Creator
+40208-1,Monthly Mini Model Build January 2016 - Polar Bear,2016,40.0,Monthly Mini Model Build,LEGO Brand Store
+40209-1,Monthly Mini Model Build February 2016 - Snow Scooter,2016,,Monthly Mini Model Build,LEGO Brand Store
+402-1,Universal Building Set,1977,,Basic Set,Universal Building Set
+40210-1,Monthly Mini Model Build March 2016 - Bunny,2016,49.0,Monthly Mini Model Build,LEGO Brand Store
+4021-1,Police Patrol,1991,195.0,Boat,Boat
+40211-1,Monthly Mini Model Build April 2016 - Bee,2016,,Monthly Mini Model Build,LEGO Brand Store
+40212-1,Monthly Mini Model Build May 2016 - Hedgehog,2016,,Monthly Mini Model Build,LEGO Brand Store
+40213-1,Monthly Mini Model Build June 2016 - Sea Plane,2016,,Monthly Mini Model Build,LEGO Brand Store
+40214-1,Monthly Mini Model Build July 2016 - Frog,2016,60.0,Monthly Mini Model Build,LEGO Brand Store
+40215-1,Monthly Mini Model Build August 2016 - Apple,2016,58.0,Monthly Mini Model Build,LEGO Brand Store
+40216-1,Monthly Mini Build September 2016 - School Bus,2016,65.0,Monthly Mini Model Build,LEGO Brand Store
+40217-1,Monthly Mini Build October 2016 - Werewolf,2016,,Monthly Mini Model Build,LEGO Brand Store
+40218-1,Monthly Mini Model Build November 2016 - Fox,2016,39.0,Monthly Mini Model Build,LEGO Brand Store
+40219-1,Monthly Mini Model Build December 2016 - Christmas Present,2016,,Monthly Mini Model Build,LEGO Brand Store
+402-2,White Turntables,1964,,Supplemental,Classic
+40220-1,London Bus,2016,117.0,Creator,Creator
+4022-1,C26 Sea Cutter,1996,193.0,Boat,Boat
+40221-1,Fountain,2016,105.0,Creator,Creator
+40222-1,24-in-1 Holiday Countdown,2016,250.0,Advent,Seasonal
+40223-1,Christmas Ornament,2016,,Seasonal,Seasonal
+40225-1,RIO 2016 MASCOTS,2016,,Promotional,Promotional
+40226-1,Birthday Buddy,2016,133.0,Creator,Creator
+40227-1,MSC Ship,2016,181.0,Promotional,Promotional
+40228-1,Geoffrey & Friends,2016,133.0,Promotional,Promotional
+402-3,White Turntables,1966,,Supplemental,Classic
+4023-1,Fun and Adventure,2003,,Basic Set,Creator
+40236-1,Romantic Valentine Picnic,2017,,Valentine,Seasonal
+40237-1,Easter Egg Hunt -2017,2017,,Easter,Seasonal
+40239-1,Monthly Mini Model Build January 2017 - Narwhal,2017,45.0,Monthly Mini Model Build,LEGO Brand Store
+40240-1,Monthly Mini Model Build February 2017 - Raccoon,2017,,Monthly Mini Model Build,LEGO Brand Store
+4024-1,Advent Calendar 2003 Creator,2003,,Creator,Seasonal
+4024-10,Advent Calendar 2003 Creator (Day 9) Airplane,2003,13.0,Creator,Seasonal
+4024-11,Advent Calendar 2003 Creator (Day 10) Sailboat,2003,,Creator,Seasonal
+40241-1,Monthly Mini Model Build March 2017 - Platypus,2017,36.0,Monthly Mini Model Build,LEGO Brand Store
+4024-12,Advent Calendar 2003 Creator (Day 11) Snowplow,2003,21.0,Creator,Seasonal
+4024-13,Advent Calendar 2003 Creator (Day 12) Snail,2003,,Creator,Seasonal
+4024-14,Advent Calendar 2003 Creator (Day 13) Robot,2003,14.0,Creator,Seasonal
+4024-15,Advent Calendar 2003 Creator (Day 14) Heart,2003,11.0,Creator,Seasonal
+4024-16,Advent Calendar 2003 Creator (Day 15) Truck,2003,21.0,Creator,Seasonal
+4024-17,Advent Calendar 2003 Creator (Day 16) Reindeer,2003,13.0,Creator,Seasonal
+4024-18,Advent Calendar 2003 Creator (Day 17) Bird,2003,10.0,Creator,Seasonal
+4024-19,Advent Calendar 2003 Creator (Day 18) Present,2003,9.0,Creator,Seasonal
+4024-2,Advent Calendar 2003 Creator (Day 1) Snowman,2003,,Creator,Seasonal
+4024-20,Advent Calendar 2003 Creator (Day 19) Fireplace,2003,17.0,Creator,Seasonal
+4024-21,Advent Calendar 2003 Creator (Day 20) Santa,2003,13.0,Creator,Seasonal
+40242-1,Monthly Mini Model Build April 2017 - Chick,2017,54.0,Monthly Mini Model Build,LEGO Brand Store
+4024-22,Advent Calendar 2003 Creator (Day 21) Robot,2003,16.0,Creator,Seasonal
+4024-23,Advent Calendar 2003 Creator (Day 22) Race Car,2003,,Creator,Seasonal
+4024-24,Advent Calendar 2003 Creator (Day 23) Helicopter,2003,,Creator,Seasonal
+4024-25,Advent Calendar 2003 Creator (Day 24) Tree,2003,13.0,Creator,Seasonal
+4024-3,Advent Calendar 2003 Creator (Day 2) Little Girl,2003,9.0,Creator,Seasonal
+40243-1,Monthly Mini Model Build May 2017 - Racecar,2017,52.0,Monthly Mini Model Build,LEGO Brand Store
+4024-4,Advent Calendar 2003 Creator (Day 3) Penguin,2003,,Creator,Seasonal
+40244-1,Monthly Mini Model Build June 2017 - Dragonfly,2017,,Monthly Mini Model Build,LEGO Brand Store
+4024-5,Advent Calendar 2003 Creator (Day 4) Sheep,2003,,Creator,Seasonal
+40245-1,Monthly Mini Model Build June 2017 - Octopus,2017,,Monthly Mini Model Build,LEGO Brand Store
+4024-6,Advent Calendar 2003 Creator (Day 5) Little Boy,2003,9.0,Creator,Seasonal
+40246-1,Monthly Mini Model Build August 2017 - Rainbow Fish,2017,32.0,Monthly Mini Model Build,LEGO Brand Store
+4024-7,Advent Calendar 2003 Creator (Day 6) Stocking,2003,,Creator,Seasonal
+40247-1,Monthly Mini Model Build September 2017 - Dinosaur,2017,,Monthly Mini Model Build,LEGO Brand Store
+4024-8,Advent Calendar 2003 Creator (Day 7) Spaceship,2003,10.0,Creator,Seasonal
+4024-9,Advent Calendar 2003 Creator (Day 8) Parrot,2003,9.0,Creator,Seasonal
+4025-1,Fire Boat,1982,150.0,Boat,Boat
+40251-1,Mini Piggy Bank,2017,,Creator,Creator
+40252-1,Mini VW Beetle,2017,141.0,Creator,Creator
+40260-1,Halloween Haunt,2017,145.0,Halloween,Seasonal
+4026-1,"Create Your Dreams {Canister, blue top}",2003,100.0,Basic Set,Creator
+40264-1,Build My Heartlake City Accessory Set,2017,121.0,Friends,Friends
+40265-1,Friends Tic-Tac-Toe,2017,58.0,Friends,Friends
+40267-1,Find A Pair Pack,2017,20.0,Duplo,Duplo
+4027-1,"Build and Imagine {canister, red top}",2003,,Basic Set,Creator
+4028-1,World of Bricks {Blue Bucket},2003,,Basic Set,Creator
+4029-1,Build with Bricks Bucket {Red Bucket},2003,,Basic Set,Creator
+4030-1,Cargo Carrier,1987,,Boat,Boat
+4031-1,Fire Rescue,1991,363.0,Boat,Boat
+403-2,Train Couplers and Wheels (The Building Toy),1967,,Supplemental,Classic
+4032-1,Passenger Plane,2003,,Airport,Town
+4032-10,Passenger Plane - Austrian Air Version,2004,137.0,Airport,Town
+4032-11,Passenger Plane - KLM Version,2006,137.0,Airport,Town
+4032-12,Passenger Plane - Malaysian Air Version,2005,137.0,Airport,Town
+4032-13,Passenger Plane - Aeroflot Version,2006,,Airport,Town
+4032-2,Passenger Plane - SAS Version,2003,140.0,Airport,Town
+4032-3,Passenger Plane - EL AL Version,2004,,Airport,Town
+4032-4,Passenger Plane - Iberia Version,2004,,Airport,Town
+4032-5,Passenger Plane - JAL Version,2004,137.0,Airport,Town
+4032-6,Passenger Plane - Lauda Air Version,2004,,Airport,Town
+4032-7,Passenger Plane - ANA Air Version,2004,138.0,Airport,Town
+4032-8,Passenger Plane - SWISS Version,2005,161.0,Airport,Town
+4032-9,Passenger Plane - Snowflake Version,2004,137.0,Airport,Town
+403-3,Train Couplers and Wheels (System),1966,12.0,Supplemental,Classic
+4037-1,Helicopter,2004,9.0,Basic Model,Creator
+4038-1,Airplane,2003,33.0,Airport,Universal Building Set
+404-1,Universal Building Set,1977,471.0,Basic Set,Universal Building Set
+4042-1,"Jens, McDonald's #2",2002,4.0,Other,Other
+404-3,Wheels for Motor (The Building Toy),1967,,Supplemental,Classic
+404-4,Wheels for the Motor (System),1967,12.0,Supplemental,Classic
+4047-1,Ultimate Wheels (Kohl's Exclusive),2003,,Designer Sets,Designer Sets
+4048-1,Mech Lab (Kohl's Exclusive),2003,,Designer Sets,Designer Sets
+4049-1,"Nesquik Promotional Set: Quicky the Bunny, Director, Cameraman and Car",2001,28.0,Studios,Studios
+4051-1,Quicky the Bunny (Nesquik Promotional),2001,,Studios,Studios
+4052-1,Director (Nesquik Promotional),2001,4.0,Studios,Studios
+4053-1,Cameraman (Nesquik Promotional),2001,,Studios,Studios
+4055-1,Medium Bucket,1997,329.0,Freestyle,Freestyle
+4056-1,Color Light,2001,13.0,Studios,Studios
+4057-1,Spot Light,2001,10.0,Studios,Studios
+4058-1,Cameraman 1,2001,,Studios,Studios
+4059-1,Director,2001,4.0,Studios,Studios
+4060-1,Grip,2001,,Studios,Studios
+4061-1,Assistant,2001,4.0,Studios,Studios
+4062-1,Actress,2001,4.0,Studios,Studios
+4063-1,Cameraman 2,2001,4.0,Studios,Studios
+4064-1,Actor 2,2001,,Studios,Studios
+4065-1,Actor 3,2001,4.0,Studios,Studios
+4066-1,Actor 1,2001,4.0,Studios,Studios
+4067-1,Buggy,2001,15.0,Studios,Studios
+4068-1,Handy Camera,2001,6.0,Studios,Studios
+4069-1,Katinco & Megaphone,2001,,Studios,Studios
+4070-1,Stand Camera,2001,,Studios,Studios
+4071-1,Bottles,2001,7.0,Studios,Studios
+4072-1,Skeleton,2001,6.0,Studios,Studios
+4073-1,Tree 1,2001,6.0,Studios,Studios
+4074-1,Tree 3,2001,14.0,Studios,Studios
+4075-1,Tree 2,2001,,Studios,Studios
+4076-1,Pteranodon,2001,17.0,Studios,Studios
+4077-1,Plesiosaur,2001,,Studios,Studios
+4078-1,T-Rex,2001,,Studios,Studios
+4079-1,Mini Rex,2001,4.0,Studios,Studios
+4090-1,Motion Madness,2003,244.0,Inventor,Inventor
+409-1,38 Slimbricks Assorted Sizes (The Building Toy),1965,114.0,Supplemental,Classic
+4093-1,Wild Windup,2003,319.0,Inventor,Inventor
+4094-1,Motor Movers,2003,,Inventor,Inventor
+4095-1,Record and Play,2003,345.0,Inventor,Inventor
+4096-1,Micro Wheels,2003,,Designer Sets,Designer Sets
+4097-1,Mini Robots,2003,,Designer Sets,Designer Sets
+4098-1,High Flyers,2003,197.0,Designer Sets,Designer Sets
+4099-1,Robobots,2003,326.0,Designer Sets,Designer Sets
+41000-1,Water Scooter Fun,2013,28.0,Friends,Friends
+4100-1,Maximum Wheels,2003,,Designer Sets,Designer Sets
+41001-1,Mia's Magic Tricks,2013,,Friends,Friends
+41002-1,Emma's Karate Course,2013,92.0,Friends,Friends
+41003-1,Olivia's Newborn Foal,2013,,Friends,Friends
+41004-1,Rehearsal Stage,2013,199.0,Friends,Friends
+41005-1,Heartlake High,2013,490.0,Friends,Friends
+41006-1,Downtown Bakery,2013,268.0,Friends,Friends
+41007-1,Heartlake Pet Salon,2013,265.0,Friends,Friends
+41008-1,Heartlake City Pool,2013,442.0,Friends,Friends
+41009-1,Andrea's Bedroom,2013,94.0,Friends,Friends
+410-1,Payloader,1973,,Construction,Legoland
+41010-1,Olivia’s Beach Buggy,2013,,Friends,Friends
+4101-1,Wild Collection,2003,487.0,Designer Sets,Designer Sets
+41011-1,Stephanie's Soccer Practice,2013,82.0,Friends,Friends
+41013-1,Emma's Sports Car,2013,163.0,Friends,Friends
+41015-1,Dolphin Cruiser,2013,631.0,Friends,Friends
+41016-1,"Advent Calender 2013, Friends",2013,,Friends,Seasonal
+41016-10,"Advent Calendar 2013, Friends (Day 9) - Basket",2013,,Friends,Seasonal
+41016-11,"Advent Calendar 2013, Friends (Day 10) - Friends Accessories",2013,,Friends,Seasonal
+41016-12,"Advent Calendar 2013, Friends (Day 11) - Basket with Money",2013,3.0,Friends,Seasonal
+41016-13,"Advent Calendar 2013, Friends (Day 12) - Presents",2013,8.0,Friends,Seasonal
+41016-14,"Advent Calendar 2013, Friends (Day 13) - Sled",2013,8.0,Friends,Seasonal
+41016-15,"Advent Calendar 2013, Friends (Day 14) - Fountain",2013,6.0,Friends,Seasonal
+41016-16,"Advent Calendar 2013, Friends (Day 15) - Bench",2013,11.0,Friends,Seasonal
+41016-17,"Advent Calendar 2013, Friends (Day 16) - Skates with Flower in Snow",2013,15.0,Friends,Seasonal
+41016-18,"Advent Calendar 2013, Friends (Day 17) - Cell Phone /Music Player Docking Station",2013,8.0,Friends,Seasonal
+41016-19,"Advent Calendar 2013, Friends (Day 18) - Snowman",2013,8.0,Friends,Seasonal
+41016-2,"Advent Calendar 2013, Friends (Day 1) - Stephanie",2013,4.0,Friends,Seasonal
+41016-20,"Advent Calendar 2013, Friends (Day 19) - Flame",2013,,Friends,Seasonal
+41016-21,"Advent Calendar 2013, Friends (Day 20) - Christmas Tree",2013,,Friends,Seasonal
+41016-22,"Advent Calendar 2013, Friends (Day 21) - Musical Score",2013,7.0,Friends,Seasonal
+41016-23,"Advent Calendar 2013, Friends (Day 22) - Basket with Leaf",2013,8.0,Friends,Seasonal
+41016-24,"Advent Calendar 2013, Friends (Day 23) - Squirrel",2013,2.0,Friends,Seasonal
+41016-25,"Advent Calendar 2013, Friends (Day 24) - Present with Letter",2013,,Friends,Seasonal
+41016-3,"Advent Calendar 2013, Friends (Day 2) - Snowmobile",2013,11.0,Friends,Seasonal
+41016-4,"Advent Calendar 2013, Friends (Day 3) - Lamp Post",2013,10.0,Friends,Seasonal
+41016-5,"Advent Calendar 2013, Friends (Day 4) - Lily, Christmas Outfit",2013,4.0,Friends,Seasonal
+41016-6,"Advent Calendar 2013, Friends (Day 5) - Stand #1",2013,17.0,Friends,Seasonal
+41016-7,"Advent Calendar 2013, Friends (Day 6) - Perfume Bottles",2013,8.0,Friends,Seasonal
+41016-8,"Advent Calendar 2013, Friends (Day 7) - Stand #2",2013,,Friends,Seasonal
+41016-9,"Advent Calendar 2013, Friends (Day 8) - Cups, Milk and Cookies",2013,,Friends,Seasonal
+41017-1,Squirrel's Tree House,2013,,Animals,Friends
+41018-1,Cat's Playground,2013,31.0,Animals,Friends
+41019-1,Turtle's Little Oasis,2013,33.0,Animals,Friends
+41020-1,Hedgehog's Hideaway,2013,,Animals,Friends
+41021-1,Poodle's Little Palace,2013,46.0,Animals,Friends
+41022-1,Bunny's Hutch,2013,,Animals,Friends
+41023-1,Fawn's Forest,2013,35.0,Animals,Friends
+41024-1,Parrot's Perch,2013,32.0,Animals,Friends
+41025-1,Puppy's Playhouse,2013,39.0,Animals,Friends
+41026-1,Sunshine Harvest,2014,236.0,Friends,Friends
+41027-1,Mia's Lemonade Stand,2014,,Friends,Friends
+41028-1,Emma's Lifeguard Post,2014,78.0,Friends,Friends
+41029-1,Stephanie's New Born Lamb,2014,,Friends,Friends
+41030-1,Olivia's Ice Cream Bike,2014,98.0,Friends,Friends
+4103-1,Fun with Bricks {small red bucket},2002,200.0,Basic Set,Creator
+41031-1,Andrea's Mountain Hut,2014,119.0,Friends,Friends
+4103-2,Fun with Bricks (4293364) - with Minifigs,2006,,Basic Set,Creator
+41032-1,First Aid Jungle Bike,2014,156.0,Jungle Rescue,Friends
+41033-1,Jungle Falls Rescue,2014,186.0,Jungle Rescue,Friends
+41034-1,Summer Caravan,2014,,Friends,Friends
+41035-1,Heartlake Juice Bar,2014,,Friends,Friends
+41036-1,Jungle Bridge Rescue,2014,365.0,Jungle Rescue,Friends
+41037-1,Stephanie's Beach House,2014,388.0,Friends,Friends
+41038-1,Jungle Rescue Base,2014,,Jungle Rescue,Friends
+41039-1,Sunshine Ranch,2014,753.0,Friends,Friends
+41040-1,Advent Calendar 2014 Friends,2014,24.0,Friends,Seasonal
+41040-10,"Advent Calendar 2014, Friends (Day 9) - Holiday Candle",2014,,Friends,Seasonal
+41040-11,"Advent Calendar 2014, Friends (Day 10) - Friends Kitchen Accessories",2014,17.0,Friends,Seasonal
+41040-12,"Advent Calendar 2014, Friends (Day 11) - Stove",2014,13.0,Friends,Seasonal
+41040-13,"Advent Calendar 2014, Friends (Day 12) - Sweets and Saucepan",2014,7.0,Friends,Seasonal
+41040-14,"Advent Calendar 2014, Friends (Day 13) - Sideboard",2014,,Friends,Seasonal
+41040-15,"Advent Calendar 2014, Friends (Day 14) - Goblets and Food",2014,12.0,Friends,Seasonal
+41040-16,"Advent Calendar 2014, Friends (Day 15) - Sink",2014,12.0,Friends,Seasonal
+41040-17,"Advent Calendar 2014, Friends (Day 16) - Cake and Cups",2014,6.0,Friends,Seasonal
+41040-18,"Advent Calendar 2014, Friends (Day 17) - Holiday Fireplace",2014,17.0,Friends,Seasonal
+41040-19,"Advent Calendar 2014, Friends (Day 18) - End Table and Book",2014,,Friends,Seasonal
+41040-2,"Advent Calendar 2014, Friends (Day 1) - Mia",2014,4.0,Friends,Seasonal
+41040-20,"Advent Calendar 2014, Friends (Day 19) - Sofa",2014,10.0,Friends,Seasonal
+41040-21,"Advent Calendar 2014, Friends (Day 20) - White Cat",2014,3.0,Friends,Seasonal
+41040-22,"Advent Calendar 2014, Friends (Day 21) - Radio and Cell Phone",2014,8.0,Friends,Seasonal
+41040-23,"Advent Calendar 2014, Friends (Day 22) - Large Present",2014,8.0,Friends,Seasonal
+41040-24,"Advent Calendar 2014, Friends (Day 23) - Christmas Tree",2014,,Friends,Seasonal
+41040-25,"Advent Calendar 2014, Friends (Day 24) - Present with Skates, Camera",2014,,Friends,Seasonal
+41040-3,"Advent Calendar 2014, Friends (Day 2) - Sled",2014,11.0,Friends,Seasonal
+41040-4,"Advent Calendar 2014, Friends (Day 3) - Gift and Basket",2014,,Friends,Seasonal
+41040-5,"Advent Calendar 2014, Friends (Day 4) - Deer and Tree",2014,4.0,Friends,Seasonal
+41040-6,"Advent Calendar 2014, Friends (Day 5) - Holiday Window Scene",2014,,Friends,Seasonal
+41040-7,"Advent Calendar 2014, Friends (Day 6) - Ewa, Christmas Outfit",2014,,Friends,Seasonal
+41040-8,"Advent Calendar 2014, Friends (Day 7) - Table",2014,11.0,Friends,Seasonal
+41040-9,"Advent Calendar 2014, Friends (Day 8) - Chairs",2014,14.0,Friends,Seasonal
+4104-1,Small Creator Bucket,2002,200.0,Basic Set,Creator
+41041-1,Turtle's Little Paradise,2014,,Animals,Friends
+41042-1,Tiger's Beautiful Temple,2014,,Animals,Friends
+41043-1,Penguin's Playground,2014,46.0,Animals,Friends
+41044-1,Macaw's Fountain,2014,39.0,Animals,Friends
+41045-1,Orangutan's Banana Tree,2014,37.0,Animals,Friends
+41046-1,Brown Bear's River,2014,,Animals,Friends
+41047-1,Seal's Little Rock,2014,,Animals,Friends
+41048-1,Lion Cub's Savannah,2014,,Animals,Friends
+41049-1,Panda's Bamboo,2014,,Animals,Friends
+41050-1,Ariel’s Amazing Treasures,2014,,Disney Princess,Disney Princess
+4105-1,Imagine and Build,2002,,Basic Set,Creator
+41051-1,Merida’s Highland Games,2014,144.0,Disney Princess,Disney Princess
+4105-2,50th Anniversary Bucket,2005,500.0,Basic Set,Creator
+41052-1,Ariel’s Magical Kiss,2014,,Disney Princess,Disney Princess
+4105-3,Red Bucket,2005,483.0,Basic Set,Creator
+41053-1,Cinderella’s Dream Carriage,2014,274.0,Disney Princess,Disney Princess
+41054-1,Rapunzel’s Creativity Tower,2014,297.0,Disney Princess,Disney Princess
+41055-1,Cinderella’s Romantic Castle,2014,,Disney Princess,Disney Princess
+41056-1,Heartlake News Van,2014,276.0,Friends,Friends
+41057-1,Heartlake Horse Show,2014,,Friends,Friends
+41058-1,Heartlake Shopping Mall,2014,1165.0,Friends,Friends
+41059-1,Jungle Tree Sanctuary,2014,,Jungle Rescue,Friends
+41060-1,Sleeping Beauty's Royal Bedroom,2015,95.0,Disney Princess,Disney Princess
+4106-1,Large red bucket,2002,,Basic Set,Creator
+41061-1,Jasmine's Exotic Palace,2015,,Disney Princess,Disney Princess
+41062-1,Elsa's Sparkling Ice Castle,2015,291.0,Disney Princess,Disney Princess
+41063-1,Ariel’s Undersea Palace,2015,,Disney Princess,Disney Princess
+41065-1,Rapunzel's Best Day Ever,2016,144.0,Disney Princess,Disney Princess
+41066-1,Anna & Kristoff's Sleigh Adventure,2016,173.0,Disney Princess,Disney Princess
+41067-1,Belle’s Enchanted Castle,2016,,Disney Princess,Disney Princess
+41068-1,Arendelle Castle Celebration,2016,475.0,Disney Princess,Disney Princess
+41069-1,Treasure's Day at the Pool,2016,70.0,Disney Princess,Disney Princess
+4107-1,Build Your Dreams,2002,,Basic Set,Creator
+41071-1,Aira's Creative Workshop,2015,98.0,Elves,Elves
+41072-1,Naida's Spa Secret,2015,248.0,Elves,Elves
+41073-1,Naida's Epic Adventure Ship,2015,312.0,Elves,Elves
+41074-1,Azari and the Magical Bakery,2015,324.0,Elves,Elves
+41075-1,The Elves’ Treetop Hideaway,2015,,Elves,Elves
+41076-1,Farran and the Crystal Hollow,2015,178.0,Elves,Elves
+41077-1,Aira's Pegasus Sleigh,2015,,Elves,Elves
+41078-1,Skyra’s Mysterious Sky Castle,2015,,Elves,Elves
+4108-1,T-Junction Road Plates,2002,2.0,Supplemental,4 Juniors
+41085-1,Vet Clinic,2015,,Friends,Friends
+41086-1,Vet Ambulance,2015,,Friends,Friends
+41087-1,Bunny and Babies,2015,47.0,Friends,Friends
+41088-1,Puppy Training,2015,,Friends,Friends
+41089-1,Little Foal,2015,,Friends,Friends
+41090-1,Olivia's Garden Pool,2015,,Friends,Friends
+4109-1,Curved Road Plates,2002,,Supplemental,4 Juniors
+41091-1,Mia's Roadster,2015,,Friends,Friends
+41092-1,Stephanie's Pizzeria,2015,,Friends,Friends
+41093-1,Heartlake Hair Salon,2015,334.0,Friends,Friends
+41094-1,Heartlake Lighthouse,2015,,Friends,Friends
+41095-1,Emma’s House,2015,727.0,Friends,Friends
+41097-1,Heartlake Hot Air Balloon,2015,254.0,Friends,Friends
+41098-1,Emma's Tourist Kiosk,2015,98.0,Friends,Friends
+41099-1,Heartlake Skate Park,2015,199.0,Friends,Friends
+41-1,Train Wagon Wheels in Red,1977,4.0,Train,Service Packs
+41100-1,Heartlake Private Jet,2015,230.0,Friends,Friends
+4110-1,Straight Road Plates,2002,,Supplemental,4 Juniors
+41101-1,Heartlake Grand Hotel ,2015,1573.0,Friends,Friends
+41102-1,Advent Calendar 2015 Friends,2015,,Friends,Seasonal
+41103-1,Pop Star Recording Studio,2015,,Friends,Friends
+41104-1,Pop Star Dressing Room,2015,297.0,Friends,Friends
+41105-1,Pop Star Show Stage,2015,,Friends,Friends
+41106-1,Pop Star Tour Bus,2015,680.0,Friends,Friends
+41107-1,Pop Star Limousine,2015,,Friends,Friends
+41108-1,Heartlake Food Market,2015,,Friends,Friends
+41109-1,Heartlake City Airport,2015,,Friends,Friends
+41110-1,Birthday Party,2016,,Friends,Friends
+4111-1,Cross Road Plates,2002,,Supplemental,4 Juniors
+41111-1,Party Train,2016,,Friends,Friends
+41112-1,Party Cakes,2016,,Friends,Friends
+41113-1,Party Gift Shop,2016,,Friends,Friends
+41114-1,Party Styling,2016,53.0,Friends,Friends
+41115-1,Emma's Creative Workshop,2016,,Friends,Friends
+41116-1,Olivia's Exploration Car,2016,185.0,Friends,Friends
+41117-1,Pop Star TV Studio,2016,195.0,Friends,Friends
+41118-1,Heartlake Supermarket,2016,,Friends,Friends
+41119-1,Heartlake Cupcake Cafe,2016,,Friends,Friends
+41120-1,Adventure Camp Archery,2016,114.0,Friends,Friends
+41121-1,Adventure Camp Rafting,2016,,Friends,Friends
+41122-1,Adventure Camp Tree House,2016,,Friends,Friends
+41123-1,Foal's Washing Station,2016,85.0,Friends,Friends
+41124-1,Heartlake Puppy Daycare,2016,,Friends,Friends
+41125-1,Horse Vet Trailer,2016,,Friends,Friends
+41126-1,Heartlake Riding Club,2016,582.0,Friends,Friends
+41127-1,Amusement Park Arcade,2016,173.0,Friends,Friends
+41128-1,Amusement Park Space Ride,2016,194.0,Friends,Friends
+41129-1,Amusement Park Hot Dog Van,2016,,Friends,Friends
+41130-1,Amusement Park Roller Coaster,2016,1122.0,Friends,Friends
+4113-1,Brick Adventures Small Bucket,2002,124.0,Basic Set,Creator
+41131-1,Advent Calendar 2016 Friends,2016,218.0,Friends,Seasonal
+41132-1,Heartlake Party Shop,2016,,Friends,Friends
+41133-1,Amusement Park Bumper Cars,2016,,Friends,Friends
+41134-1,Heartlake Performance School,2016,772.0,Friends,Friends
+41135-1,Livi’s Pop Star House,2016,,Friends,Friends
+41140-1,Daisy’s Beauty Salon,2016,,Disney Princess,Disney Princess
+41141-1,Pumpkin’s Royal Carriage,2016,79.0,Disney Princess,Disney Princess
+41142-1,Palace Pets Royal Castle,2016,185.0,Disney Princess,Disney Princess
+41143-1,Berry's Kitchen,2017,,Disney Princess,Disney Princess
+41144-1,Petite's Royal Stable,2017,,Disney Princess,Disney Princess
+41145-1,Ariel and the Magical Spell,2017,,Disney Princess,Disney Princess
+41146-1,Cinderella's Enchanted Evening,2017,347.0,Disney Princess,Disney Princess
+41147-1,Anna's Snow Adventure,2017,,Disney Princess,Disney Princess
+41148-1,Elsa's Magical Ice Palace,2017,,Disney Princess,Disney Princess
+41149-1,Moana's Island Adventure,2016,,Disney Princess,Disney Princess
+41150-1,Moana's Ocean Voyage,2016,307.0,Disney Princess,Disney Princess
+4115-1,All That Drives Bucket,2001,,Basic Set,Creator
+4116-1,Animal Adventures Bucket,2001,211.0,Basic Set,Creator
+4117-1,Fantastic Flyers & Cool Cars Bucket,2001,266.0,Basic Set,Creator
+41171-1,Emily Jones & the Baby Wind Dragon,2016,80.0,Elves,Elves
+41172-1,The Water Dragon Adventure,2016,,Elves,Elves
+41173-1,Elvendale School of Dragons,2016,230.0,Elves,Elves
+41174-1,The Starlight Inn,2016,347.0,Elves,Elves
+4117463-1,Cyber Saucer TRU 50 Years Forever Fun Bundle,1997,,UFO,Space
+41175-1,Fire Dragon's Lava Cave,2016,441.0,Elves,Elves
+41176-1,The Secret Market Place,2016,,Elves,Elves
+41177-1,The Precious Crystal Mine,2016,,Elves,Elves
+41178-1,The Dragon Sanctuary,2016,,Elves,Elves
+41179-1,Queen Dragon’s Rescue,2016,832.0,Elves,Elves
+41180-1,Ragana’s Magic Shadow Castle,2016,1013.0,Elves,Elves
+4118-1,"Buildings, Mansions and Shops",2001,,Basic Set,Creator
+41181-1,Naida's Gondola & the Goblin Thief,2017,,Elves,Elves
+41182-1,The Capture of Sophie Jones,2017,226.0,Elves,Elves
+41183-1,The Goblin King's Evil Dragon,2017,,Elves,Elves
+41184-1,Aira's Airship & the Amulet Chase,2017,343.0,Elves,Elves
+41185-1,Magic Rescue from the Goblin Village,2017,,Elves,Elves
+41186-1,Azari & the Goblin Forest Escape,2017,145.0,Elves,Elves
+41187-1,Rosalyn's Healing Hideout,2017,457.0,Elves,Elves
+41188-1,Breakout from the Goblin King's Fortress,2017,694.0,Elves,Elves
+4119-1,Regular & Transparent Bricks Bucket,2001,234.0,Basic Set,Creator
+4120-1,Fun and Cool Transportation,2001,,Basic Set,Creator
+4121-1,All Kinds of Animals / Lap Table,2001,174.0,Basic Set,Creator
+4122-1,Basic Building Set,2000,201.0,Classic Basic,Universal Building Set
+41233-1,"Lashina"" Tank",2017,142.0,Super Heroes,Super Heroes
+41234-1,Bumblebee Helicopter,2017,141.0,Super Heroes,Super Heroes
+4124-1,"Advent Calendar 2001, Creator",2001,,Creator,Seasonal
+4124-10,"Advent Calendar 2001, Creator (Day 9) Space Buggy",2001,18.0,Advent Sub-Set,Seasonal
+4124-11,"Advent Calendar 2001, Creator (Day 10) Dinosaur",2001,8.0,Advent Sub-Set,Seasonal
+4124-12,"Advent Calendar 2001, Creator (Day 11) Speedboat",2001,,Advent Sub-Set,Seasonal
+4124-13,"Advent Calendar 2001, Creator (Day 12) Reindeer",2001,10.0,Advent Sub-Set,Seasonal
+4124-14,"Advent Calendar 2001, Creator (Day 13) Snowman",2001,,Advent Sub-Set,Seasonal
+4124-15,"Advent Calendar 2001, Creator (Day 14) Jet Ski",2001,11.0,Advent Sub-Set,Seasonal
+4124-16,"Advent Calendar 2001, Creator (Day 15) Dog",2001,10.0,Advent Sub-Set,Seasonal
+4124-17,"Advent Calendar 2001, Creator (Day 16) Police Boat",2001,9.0,Advent Sub-Set,Seasonal
+4124-18,"Advent Calendar 2001, Creator (Day 17) Whale",2001,9.0,Advent Sub-Set,Seasonal
+4124-19,"Advent Calendar 2001, Creator (Day 18) Space Shuttle",2001,10.0,Advent Sub-Set,Seasonal
+4124-2,"Advent Calendar 2001, Creator (Day 1) Cat",2001,,Advent Sub-Set,Seasonal
+4124-20,"Advent Calendar 2001, Creator (Day 19) Parrot",2001,,Advent Sub-Set,Seasonal
+4124-21,"Advent Calendar 2001, Creator (Day 20) Steamship",2001,,Advent Sub-Set,Seasonal
+4124-22,"Advent Calendar 2001, Creator (Day 21) Church",2001,11.0,Advent Sub-Set,Seasonal
+4124-23,"Advent Calendar 2001, Creator (Day 22) Helicopter",2001,11.0,Advent Sub-Set,Seasonal
+4124-24,"Advent Calendar 2001, Creator (Day 23) Christmas Tree",2001,10.0,Advent Sub-Set,Seasonal
+4124-25,"Advent Calendar 2001, Creator (Day 24) Present",2001,8.0,Advent Sub-Set,Seasonal
+4124-3,"Advent Calendar 2001, Creator (Day 2) Max",2001,,Advent Sub-Set,Seasonal
+4124-4,"Advent Calendar 2001, Creator (Day 3) Fireplace",2001,,Advent Sub-Set,Seasonal
+4124-5,"Advent Calendar 2001, Creator (Day 4) Santa",2001,10.0,Advent Sub-Set,Seasonal
+4124-6,"Advent Calendar 2001, Creator (Day 5) Ambulance",2001,15.0,Advent Sub-Set,Seasonal
+4124-7,"Advent Calendar 2001, Creator (Day 6) Penguin",2001,10.0,Advent Sub-Set,Seasonal
+4124-8,"Advent Calendar 2001, Creator (Day 7) Tina",2001,,Advent Sub-Set,Seasonal
+4124-9,"Advent Calendar 2001, Creator (Day 8) Frog with Hat",2001,11.0,Advent Sub-Set,Seasonal
+4128-1,XL Freestyle Bucket,1997,,Freestyle,Freestyle
+41300-1,Puppy Championship,2017,200.0,Friends,Friends
+4130-1,Freestyle Building Set,1995,,Freestyle,Freestyle
+41301-1,Puppy Parade,2017,,Friends,Friends
+41302-1,Puppy Pampering,2017,45.0,Animals,Friends
+41303-1,Puppy Playground,2017,,Animals,Friends
+41304-1,Puppy Treats & Tricks,2017,,Animals,Friends
+41305-1,Emma's Photo Studio,2017,,Friends,Friends
+41306-1,Mia's Beach Scooter,2017,,Friends,Friends
+41307-1,Olivia's Creative Lab,2017,,Friends,Friends
+41308-1,Stephanie's Friendship Cakes,2017,,Friends,Friends
+41309-1,Andrea's Musical Duet,2017,86.0,Friends,Friends
+41310-1,Heartlake Gift Delivery,2017,185.0,Friends,Friends
+4131-1,Freestyle Building Set,1995,,Freestyle,Freestyle
+41311-1,Heartlake Pizzeria,2017,288.0,Friends,Friends
+41312-1,Heartlake Sports Center,2017,,Friends,Friends
+41313-1,Heartlake Summer Pool,2017,589.0,Friends,Friends
+41314-1,Stephanie's House,2017,,Friends,Friends
+41315-1,Heartlake Surf Shop,2017,,Friends,Friends
+41316-1,Andrea's Speedboat Transporter,2017,,Friends,Friends
+41317-1,Sunshine Catamaran,2017,602.0,Friends,Friends
+41318-1,Heartlake Hospital,2017,880.0,Friends,Friends
+41319-1,Snow Resort Hot Chocolate Van,2017,245.0,Friends,Friends
+41320-1,Heartlake Frozen Yogurt Shop,2017,369.0,Friends,Friends
+4132-1,Freestyle Building Set,1995,122.0,Freestyle,Freestyle
+41321-1,Snow Resort Off-Roader,2017,,Friends,Friends
+41322-1,Snow Resort Ice Rink,2017,300.0,Friends,Friends
+41323-1,Snow Resort Chalet,2017,,Friends,Friends
+41324-1,Snow Resort Ski Lift,2017,584.0,Friends,Friends
+41325-1,Heartlake City Playground,2017,325.0,Friends,Friends
+41326-1,Friends Advent Calendar,2017,,Friends,Seasonal
+4133-1,Small Freestyle Bucket,1995,,Freestyle,Freestyle
+4134-1,Large Freestyle Bucket,1995,,Freestyle,Freestyle
+4135-1,Freestyle Garden Friends,1996,121.0,Freestyle,Freestyle
+4137-1,Small Freestyle Clearpack,1997,,Freestyle,Freestyle
+4139-1,Freestyle Bucket,1997,249.0,Freestyle,Freestyle
+4142-1,Freestyle Building Set,1995,98.0,Freestyle,Freestyle
+414-3,"Windows Parts Pack, Red (The Building Toy)",1966,,Supplemental,Classic
+4143-1,Freestyle Building Set,1995,,Freestyle,Freestyle
+414-4,"Windows Parts Pack, White (The Building Toy)",1966,,Supplemental,Classic
+4144-1,Freestyle Brick Vac Bus,1995,,Freestyle,Freestyle
+414-5,"Windows Parts Pack, Red (System)",1966,,Supplemental,Classic
+4145-1,Freestyle Playcase,1995,,Freestyle,Freestyle
+414-6,"Windows Parts Pack, White (System)",1966,,Supplemental,Classic
+4146-1,Extra Large Freestyle Bucket,1995,,Freestyle,Freestyle
+4147-1,Freestyle Elefant Villa,1996,191.0,Freestyle,Freestyle
+41491-1,Batman & The Joker,2016,203.0,Brickheadz,Brickheadz
+41492-1,Iron Man & Cpt. America,2016,,Brickheadz,Brickheadz
+41493-1,Black Panther & Dr. Strange,2016,,Brickheadz,Brickheadz
+41496-1,Supergirl & Martian Manhunter,2017,231.0,Brickheadz,Brickheadz
+41497-1,Spider-Man & Venom,2017,144.0,Brickheadz,Brickheadz
+41500-1,Flain,2014,,Series 1,Mixels
+4150-1,Freestyle Building Set,1995,,Freestyle,Freestyle
+41501-1,Vulk,2014,,Series 1,Mixels
+41502-1,Zorch,2014,45.0,Series 1,Mixels
+41503-1,Krader,2014,66.0,Series 1,Mixels
+41504-1,Siesmo,2014,,Series 1,Mixels
+41505-1,Shuff,2014,,Series 1,Mixels
+41506-1,Teslo,2014,54.0,Series 1,Mixels
+41507-1,Zaptor,2014,,Series 1,Mixels
+41508-1,Volectro,2014,70.0,Series 1,Mixels
+41509-1,Slumbo,2014,,Series 2,Mixels
+415-1,5 Sixteens and 4 Twenties (System),1966,,Supplemental,Classic
+41510-1,Lunk,2014,51.0,Series 2,Mixels
+4151-1,Girl's Freestyle Set,1995,274.0,Freestyle,Freestyle
+41511-1,Flurr,2014,,Series 2,Mixels
+41512-1,Chomly,2014,,Series 2,Mixels
+4151270-1,Star Wars Co-Pack of 7121 and 7111,2000,2.0,Star Wars Episode 1,Star Wars
+41513-1,Gobba,2014,57.0,Series 2,Mixels
+41514-1,Jawg,2014,61.0,Series 2,Mixels
+41515-1,Kraw,2014,70.0,Series 2,Mixels
+41516-1,Tentro,2014,69.0,Series 2,Mixels
+41517-1,Balk,2014,,Series 2,Mixels
+41518-1,Glomp,2014,64.0,Series 3,Mixels
+41519-1,Glurt,2014,62.0,Series 3,Mixels
+41520-1,Torts,2014,48.0,Series 3,Mixels
+4152-1,Large Freestyle Bucket,1995,,Freestyle,Freestyle
+41521-1,Footi,2014,72.0,Series 3,Mixels
+41522-1,Scorpi,2014,70.0,Series 3,Mixels
+41523-1,Hoogi,2014,69.0,Series 3,Mixels
+41524-1,Mesmo,2014,64.0,Series 3,Mixels
+41525-1,Magnifo,2014,,Series 3,Mixels
+41526-1,Wizwuz,2014,,Series 3,Mixels
+41527-1,Rokit,2015,66.0,Series 4,Mixels
+41528-1,Niksput,2015,62.0,Series 4,Mixels
+41529-1,Nurp-Naut,2015,,Series 4,Mixels
+41530-1,Meltus,2015,66.0,Series 4,Mixels
+4153-1,Large Freestyle Playcase,1995,698.0,Freestyle,Freestyle
+41531-1,Flamzer,2015,,Series 4,Mixels
+41532-1,Burnard,2015,,Series 4,Mixels
+41533-1,Globert,2015,45.0,Series 4,Mixels
+41534-1,Vampos,2015,,Series 4,Mixels
+41535-1,Boogly,2015,,Series 4,Mixels
+41536-1,Gox,2015,62.0,Series 5,Mixels
+41537-1,Jinky,2015,,Series 5,Mixels
+41538-1,Kamzo,2015,,Series 5,Mixels
+41539-1,Krog,2015,,Series 5,Mixels
+41540-1,Chilbo,2015,65.0,Series 5,Mixels
+41541-1,Snoof,2015,,Series 5,Mixels
+41542-1,Spugg,2015,,Series 5,Mixels
+41543-1,Turg,2015,56.0,Series 5,Mixels
+41544-1,Tungster,2015,,Series 5,Mixels
+41545-1,Kramm,2015,68.0,Series 6,Mixels
+41546-1,Forx,2015,,Series 6,Mixels
+41547-1,Wuzzo,2015,74.0,Series 6,Mixels
+41548-1,Dribbal,2015,52.0,Series 6,Mixels
+41549-1,Gurggle,2015,66.0,Series 6,Mixels
+41550-1,Slusho,2015,,Series 6,Mixels
+41551-1,Snax,2015,51.0,Series 6,Mixels
+41552-1,Berp,2015,68.0,Series 6,Mixels
+41553-1,Vaka-Waka,2015,69.0,Series 6,Mixels
+41554-1,Kuffs,2016,63.0,Series 7,Mixels
+41555-1,Busto,2016,69.0,Series 7,Mixels
+41556-1,Tiketz,2016,62.0,Series 7,Mixels
+41557-1,Camillot,2016,64.0,Series 7,Mixels
+41558-1,Mixadel,2016,,Series 7,Mixels
+41559-1,Paladum,2016,,Series 7,Mixels
+41560-1,Jamzy,2016,70.0,Series 7,Mixels
+41561-1,Tapsy,2016,,Series 7,Mixels
+41562-1,Trumpsy,2016,,Series 7,Mixels
+41563-1,Splasho,2016,67.0,Series 8,Mixels
+41564-1,Aquad,2016,70.0,Series 8,Mixels
+41565-1,Hydro,2016,70.0,Series 8,Mixels
+41566-1,Sharx,2016,55.0,Series 8,Mixels
+41567-1,Skulzy,2016,,Series 8,Mixels
+41568-1,Lewt,2016,,Series 8,Mixels
+41569-1,Surgeo,2016,63.0,Series 8,Mixels
+41570-1,Skrubz,2016,,Series 8,Mixels
+4157-1,Freestyle Trial Size,1997,,Freestyle,Freestyle
+41571-1,Tuth,2016,,Series 8,Mixels
+41572-1,Gobbol,2016,62.0,Series 9,Mixels
+41573-1,Sweepz,2016,61.0,Series 9,Mixels
+41574-1,Compax,2016,66.0,Series 9,Mixels
+41575-1,Cobrax,2016,,Series 9,Mixels
+41576-1,Spinza,2016,60.0,Series 9,Mixels
+41577-1,Mysto,2016,64.0,Series 9,Mixels
+41578-1,Screeno,2016,73.0,Series 9,Mixels
+41579-1,Camsta,2016,,Series 9,Mixels
+41580-1,Myke,2016,63.0,Series 9,Mixels
+4158-1,Small Freestyle Box,1997,132.0,Freestyle,Freestyle
+41585-1,Batman,2017,91.0,Brickheadz,Brickheadz
+41586-1,Batgirl,2017,,Brickheadz,Brickheadz
+41587-1,Robin,2017,,Brickheadz,Brickheadz
+41588-1,The Joker,2017,151.0,Brickheadz,Brickheadz
+41589-1,Captain America,2017,79.0,Brickheadz,Brickheadz
+41590-1,Iron Man,2017,96.0,Brickheadz,Brickheadz
+41591-1,Black Widow,2017,,Brickheadz,Brickheadz
+41592-1,The Hulk,2017,93.0,Brickheadz,Brickheadz
+41593-1,Captain Jack Sparrow,2017,109.0,Brickheadz,Brickheadz
+41594-1,Captain Armando Salazar,2017,,Brickheadz,Brickheadz
+41595-1,Belle,2017,,Brickheadz,Brickheadz
+41596-1,Beast,2017,116.0,Brickheadz,Brickheadz
+416-1,4 Sixteens 2 Twenties (The Building Toy),1966,18.0,Supplemental,Classic
+4161-1,Girl's Freestyle Suitcase,1995,293.0,Freestyle,Freestyle
+4162-1,Freestyle Multibox,1995,600.0,Freestyle,Freestyle
+4163-1,Electric Freestyle Set,1995,,Freestyle,Freestyle
+4164-1,Mickey's Fire Engine,2000,,Disney's Mickey Mouse,Disney's Mickey Mouse
+4165-1,Minnie's Birthday Party,2000,85.0,Disney's Mickey Mouse,Disney's Mickey Mouse
+4166-1,Mickey's Car Garage,2000,90.0,Disney's Mickey Mouse,Disney's Mickey Mouse
+4167-1,Mickey's Mansion,2000,123.0,Disney's Mickey Mouse,Disney's Mickey Mouse
+4169306a-1,Christmas Tree Ornament,2005,46.0,Christmas,Seasonal
+4169306b-1,Snowman Ornament,2005,36.0,Christmas,Seasonal
+4169306c-1,Santa Claus Ornament,2005,,Christmas,Seasonal
+4171-1,Spot & Friends,2001,53.0,Basic Set,Creator
+4172-1,Tina's House,2001,44.0,Basic Set,Creator
+417-3,Cornerbricks (The Building Toy),1966,10.0,Supplemental,Classic
+4173-1,Max's Pitstop,2001,59.0,Basic Set,Creator
+417-4,Cornerbricks (System),1966,20.0,Supplemental,Classic
+4174-1,Max Goes Flying,2001,,Basic Set,Creator
+4175-1,Adventures with Max & Tina,2001,219.0,Basic Set,Creator
+4176-1,The Race of the Year,2001,326.0,Basic Set,Creator
+4177-1,Building Stories w/NaNa Bird,2001,382.0,Basic Set,Creator
+4178-1,Mickey's Fishing Adventure,2000,107.0,Disney's Mickey Mouse,Disney's Mickey Mouse
+4179-1,Large Creator Box,2002,500.0,Basic Set,Creator
+4180878,"Bionicle Poster 2002, Bohrok front Krana back, 420 x 295 mm",2002,,Gear,Gear
+4181-1,Isla De Muerta,2011,160.0,Pirates of the Caribbean,Pirates of the Caribbean
+418-2,2 x 4 Bricks (The Building Toy),1966,,Supplemental,Classic
+4182-1,The Cannibal Escape,2011,279.0,Pirates of the Caribbean,Pirates of the Caribbean
+418-3,2 x 4 Bricks (System),1966,,Supplemental,Classic
+4183-1,The Mill,2011,366.0,Pirates of the Caribbean,Pirates of the Caribbean
+4184-1,Black Pearl,2011,808.0,Pirates of the Caribbean,Pirates of the Caribbean
+4184912-1,Black Bus with Ball (Mannschaftsbus + Ball),2002,,Soccer,Sports
+4186868-1,"Large Train Engine with Tender Black (Motorizable, sets 4534, 4535)",2002,,My Own Train,Train
+4186870-1,Open Freight Wagon (White Box),2002,121.0,My Own Train,Train
+4186872-1,Passenger Wagon Green (White Box),2002,194.0,My Own Train,Train
+4186874-1,Caboose (White Box),2002,,My Own Train,Train
+4186875-1,9V Platform and Mini-Figures,2002,47.0,My Own Train,Train
+4186876-1,Passenger Wagon Blue (White Box),2002,192.0,My Own Train,Train
+4189224-1,"Dragon Sculpture, Ollie, the little dragon from Castleland (Legoland Billund)",2002,,Legoland Parks,Legoland Parks
+4191-1,The Captain’s Cabin,2011,94.0,Pirates of the Caribbean,Pirates of the Caribbean
+419-2,2 x 3 Bricks (The Building Toy),1966,75.0,Supplemental,Classic
+4192-1,Fountain of Youth,2011,,Pirates of the Caribbean,Pirates of the Caribbean
+419-3,2 x 3 Bricks (System),1966,150.0,Supplemental,Classic
+4193-1,The London Escape,2011,466.0,Pirates of the Caribbean,Pirates of the Caribbean
+4194-1,Whitecap Bay,2011,,Pirates of the Caribbean,Pirates of the Caribbean
+4195-1,Queen Anne’s Revenge,2011,,Pirates of the Caribbean,Pirates of the Caribbean
+4195641-1,Star Wars Co-Pack of 7142 and 7152,2002,2.0,Star Wars Episode 4/5/6,Star Wars
+41999-1,"4 x 4 Crawler Exclusive Edition ""BOSS Crawler"" [Co-Creation Model]",2013,,Technic,Technic
+42000-1,Grand Prix Racer,2013,1139.0,Race,Technic
+4200-1,Mining 4 x 4,2012,,Construction,Town
+42001-1,Mini Off-Roader,2013,,Technic,Technic
+42002-1,Hovercraft,2013,169.0,Technic,Technic
+42004-1,Mini Backhoe Loader,2013,,Construction,Technic
+42005-1,Monster Truck,2013,,Technic,Technic
+42006-1,Excavator,2013,,Technic,Technic
+42007-1,Moto Cross Bike,2013,253.0,Technic,Technic
+42008-1,Service Truck,2013,1275.0,Technic,Technic
+42009-1,Mobile Crane MK II,2013,,Construction,Technic
+420-1,Police Car,1973,,Police,Legoland
+42010-1,Off-Road Racer,2013,159.0,Technic,Technic
+4201-1,Loader and Tipper,2012,,Construction,Town
+42011-1,Race Car,2013,157.0,Technic,Technic
+42020-1,Twin Rotor Helicopter,2014,145.0,Technic,Technic
+4202-1,Mining Truck,2012,269.0,City,Town
+42021-1,Snowmobile,2014,185.0,Technic,Technic
+42022-1,Hot Rod,2014,413.0,Technic,Technic
+42023-1,Construction Crew,2014,,Technic,Technic
+42024-1,Container Truck,2014,,Technic,Technic
+42025-1,Cargo Plane,2014,,Airport,Technic
+42026-1,Black Champion Racer,2014,,Technic,Technic
+42026-2,Black Champion Racer,2014,137.0,Technic,Technic
+42027-1,Desert Racer,2014,,Technic,Technic
+42028-1,Bulldozer,2014,,Construction,Technic
+42029-1,Customized Pick up Truck,2014,1062.0,Technic,Technic
+420-3,2 x 2 Bricks (The Building Toy),1966,,Supplemental,Classic
+42030-1,Remote-Controlled Volvo L350F Wheel Loader,2014,1634.0,Construction,Technic
+4203-1,Excavator Transporter,2012,304.0,Construction,Town
+42031-1,Cherry Picker,2015,,Traffic,Technic
+42032-1,Compact Tracked Loader,2015,251.0,Construction,Technic
+42033-1,Record Breaker,2015,124.0,Race,Technic
+42034-1,Quad Bike,2015,148.0,Off-Road,Technic
+42035-1,Mining Truck,2015,,Construction,Technic
+42036-1,Street Motorcycle,2015,374.0,Riding Cycle,Technic
+42037-1,Formula Off-Roader,2015,493.0,Off-Road,Technic
+42038-1,Arctic Truck,2015,912.0,Off-Road,Technic
+42039-1,24 Hours Race Car,2015,,Race,Technic
+420-4,2 x 2 Bricks (System),1966,,Supplemental,Classic
+42040-1,Fire Plane,2015,,Fire,Technic
+4204-1,The Mine,2012,751.0,Construction,Town
+42041-1,Race Truck,2015,,Race,Technic
+42042-1,Crawler Crane,2015,,Technic,Technic
+42043-1,Mercedes Benz Arocs 3245,2015,2792.0,Technic,Technic
+42044-1,Display Team Jet,2016,113.0,Technic,Technic
+42045-1,Hydroplane Racer,2016,,Technic,Technic
+42046-1,Getaway Racer,2016,170.0,Technic,Technic
+42047-1,Police Interceptor,2016,,Technic,Technic
+42048-1,Race Kart,2016,,Technic,Technic
+42049-1,Mine Loader,2016,475.0,Technic,Technic
+42050-1,Drag Racer,2016,646.0,Technic,Technic
+4205-1,Off Road Command Center,2012,388.0,Police,Town
+42052-1,Heavy Lift Helicopter,2016,,Technic,Technic
+42053-1,Volvo EW 160E,2016,1166.0,Technic,Technic
+42054-1,Claas Xerion 5000 Trac VC,2016,,Technic,Technic
+42055-1,Bucket Wheel Excavator,2016,3928.0,Construction,Technic
+42056-1,Porsche 911 GT3 RS,2016,,Technic,Technic
+42057-1,Ultralight Helicopter,2017,199.0,Technic,Technic
+42058-1,Stunt Bike,2017,140.0,Technic,Technic
+42059-1,Stunt Truck,2017,,Technic,Technic
+42060-1,Roadwork Crew,2017,365.0,Technic,Technic
+4206-1,9V Train Switching Track Collection,2006,28.0,9V,Train
+42061-1,Telehandler,2017,261.0,Technic,Technic
+4206-2,Recycling Truck,2012,296.0,Traffic,Town
+42062-1,Container Yard,2017,630.0,Technic,Technic
+42063-1,BMW R 1200 GS Adventure,2017,593.0,Technic,Technic
+42063-40,Technic 40 year anniversary model (42057 + 42061 + 42063),2017,568.0,Technic,Technic
+42064-1,Ocean Explorer,2017,,Technic,Technic
+42065-1,RC Tracked Racer,2017,369.0,Technic,Technic
+42066-1,Air Race Jet,2017,1150.0,Technic,Technic
+42068-1,Airport Rescue Vehicle,2017,,Technic,Technic
+42069-1,Extreme Adventure,2017,2381.0,Technic,Technic
+42070-1,6x6 All Terrain Tow Truck,2017,,Technic,Technic
+4207-1,City Garage,2012,932.0,Traffic,Town
+4207901-1,Star Wars MINI Bonus Pack,2003,4.0,Mini,Star Wars
+4208-1,4 × 4 Fire Truck,2012,242.0,Fire,Town
+4209-1,Fire Plane,2012,507.0,Fire,Town
+42-1,Motor Case / Lower Part,1977,1.0,Service Packs,Service Packs
+4210-1,Coast Guard Platform,2008,,Coast Guard,Town
+421-1,1 x 2 Bricks,1966,,Supplemental,Classic
+4211-1,Starter Set 100,1998,,Classic Basic,Universal Building Set
+421-2,2 eights 2 sixes 2 fours 8 twos 6 ones (The Building Toy),1966,20.0,Supplemental,Classic
+4212-1,Starter Set 200,1998,,Classic Basic,Universal Building Set
+4212838-1,LEGO Stores Easter Chick for 2004,2004,,Easter,Seasonal
+4212847-1,LEGO Stores Easter Chick in egg for 2004,2004,99.0,Easter,Seasonal
+4212852-1,LEGO Stores Easter Opening Egg for 2004 - Blue,2004,178.0,Easter,Seasonal
+4213-1,Super Set 200,1998,519.0,Classic Basic,Universal Building Set
+4214-1,Medium Bucket,1998,,Classic Basic,Universal Building Set
+4215-1,Starter Set 300,1998,,Classic Basic,Universal Building Set
+4216-1,Super Set 100,1998,,Classic Basic,Universal Building Set
+4217-1,Playdesk and Bricks,1998,215.0,Classic Basic,Universal Building Set
+4219-1,Brick Pack 100,1998,288.0,Classic Basic,Universal Building Set
+4220-1,Large Box of Bricks,1998,428.0,Classic Basic,Universal Building Set
+422-1,"1 x 1, 1 x 2, 1 x 4, 1 x 6, 1 x 8 Bricks",1966,28.0,Supplemental,Classic
+4221-1,Challenger Set 100,1998,65.0,Classic Basic,Universal Building Set
+4222-1,Challenger Set 300,1998,,Classic Basic,Universal Building Set
+4223-1,Challenger Set 400 with Motor,1999,548.0,Classic Basic,Universal Building Set
+4224-1,Medium Bucket,1998,,Classic Basic,Universal Building Set
+4225-1,Challenger Set 350,1998,,Classic Basic,Universal Building Set
+4228383-1,Vakama Promotional Set (Woolworth's Exclusive),2003,,Turaga,Bionicle
+4229-1,Brick Pack 300,1998,,Classic Basic,Universal Building Set
+4232-1,Freestyle Set,1998,,Freestyle,Freestyle
+423-3,Curved and Round Bricks (The Building Toy),1966,,Supplemental,Classic
+4239-1,Freestyle Set,1998,,Freestyle,Freestyle
+4243532-1,Stunt Pack,2004,35.0,Supplemental,Racers
+4243534-1,Racers Hazard Kit,2004,,Supplemental,Racers
+4244-1,Large Bulk Bucket,1998,420.0,Freestyle,Freestyle
+425-1,Fork Lift,1976,21.0,Construction,Legoland
+4254-1,Freestyle Playdesk,1998,309.0,Freestyle,Freestyle
+4258-1,Big Box Play Scape,1998,1009.0,Freestyle,Freestyle
+426-1,7 Named Beams (The Building Toy),1966,7.0,Supplemental,Classic
+4267-1,Large Bucket,1998,,Freestyle,Freestyle
+427-1,8 Plates 2 x 8 (The Building Toy),1966,,Supplemental,Classic
+4271-1,FreeStyle Box,1998,180.0,Freestyle,Freestyle
+4274-1,Freestyle Playdesk,1998,508.0,Freestyle,Freestyle
+4277206-1,Letters and Keyring,2005,72.0,Clikits,Clikits
+4277678-1,LEGO Games Knights Kingdom Chess,2005,,Game,Gear
+4278-1,Blue Tub,2003,1000.0,Basic Set,Creator
+4279-1,CREATOR Strata Red {Red Tub},2003,1002.0,Basic Set,Creator
+4280-1,Freestyle Trial Size,1998,,Freestyle,Freestyle
+428-1,5 Plates 4 x 8 (The Building Toy),1966,5.0,Supplemental,Classic
+4281-1,Classic Trial Size,1999,,Classic Basic,Universal Building Set
+4282-1,Classic Trial Size,1999,,Classic Basic,Universal Building Set
+4283-1,Classic Trial Box,2000,,Classic Basic,Universal Building Set
+4284-1,Classic Trial Size,1999,,Classic Basic,Universal Building Set
+4285-1,Small Bucket,1999,256.0,Classic Basic,Universal Building Set
+4285968-1,Transformation Kit Dirt Crusher (Red),2005,47.0,Supplemental,Racers
+4285969-1,Transformation Kit Dirt Crusher (Blue),2005,47.0,Supplemental,Racers
+4285970-1,Transformation Kit Dirt Crusher (Green),2005,47.0,Supplemental,Racers
+4286013-1,Big Wheels Pack Dirt Crusher (Red),2005,,Supplemental,Racers
+4286024-1,Big Wheels Pack Dirt Crusher (Blue),2005,10.0,Supplemental,Racers
+4286025-1,Big Wheels Pack Dirt Crusher (Green),2005,,Supplemental,Racers
+4286784-1,Dirt Crusher Gearbox with Light,2005,,Supplemental,Racers
+4287082-1,Antenna Pack for Dirt Crusher,2005,,Supplemental,Racers
+4287744-1,City Value Pack - 7241 7246 - shrinkwrapped Target Country in Australia,2005,,City,Town
+4288-1,Large Bucket,1999,404.0,Classic Basic,Universal Building Set
+429-1,4 Plates 6 x 8 (The Building Toy),1966,4.0,Supplemental,Classic
+4291-1,Classic Build & Store Tub,1999,770.0,Classic Basic,Universal Building Set
+4293-1,Classic Value Pack,1999,817.0,Classic Basic,Universal Building Set
+4294-1,Helicopter ANA Promotional Set,2002,,Airport,Universal Building Set
+4297-1,Lightning Streak,2002,,Drome Racers,Racers
+4298-1,Blue Power,2002,,Drome Racers,Racers
+4299-1,Nesquik Quicky Racer,2002,17.0,Drome Racers,Racers
+4-3,Basic Set,1973,,Basic Set,Universal Building Set
+4300-1,Green Racer,2003,,Drome Racers,Racers
+430-1,Biplane,1975,,Airport,Legoland
+4301-1,Blue Racer,2003,24.0,Drome Racers,Racers
+430-2,Six Trees and Bushes (The Building Toy),1966,6.0,Supplemental,Classic
+4304-1,Chopper Cop,1998,24.0,Police,Town
+4305-1,Xcyber,1997,36.0,UFO,Space
+4306-1,Rings,1980,15.0,Hobby Sets,Hobby Sets
+4308-1,Racing Car,2004,28.0,Drome Racers,Racers
+4309-1,Blue Racer,2004,31.0,Drome Racers,Racers
+4310-1,Orange Racer,2004,24.0,Drome Racers,Racers
+431-1,Gas Station (The Building Toy),1966,13.0,Supplemental,Classic
+432-1,Road Signs (The Building Toy),1966,8.0,Supplemental,Classic
+433-1,6 Street Lamps with Curved Top (The Building Toy),1966,,Supplemental,Classic
+4335-1,Black Robots Pod,2004,50.0,X-Pod,X-Pod
+4336-1,Picture Frame and Mirror,1980,48.0,4 Juniors,4 Juniors
+4337-1,Dragon Pod,2005,,X-Pod,X-Pod
+4338-1,Monster Pod,2005,49.0,X-Pod,X-Pod
+4339-1,Aqua Pod,2005,,X-Pod,X-Pod
+434-1,50 lettered bricks (The Building Toy),1966,50.0,Supplemental,Classic
+4346-1,Robo Pod,2004,50.0,X-Pod,X-Pod
+4346-2,Robo Pod (Polybag),2004,47.0,X-Pod,X-Pod
+4346-3,Robo Pod (Toy Fair Nuernberg Promotion),2004,,X-Pod,X-Pod
+4347-1,Auto Pod,2004,40.0,X-Pod,X-Pod
+4347-2,Auto Pod (Polybag),2004,37.0,X-Pod,X-Pod
+4347-3,Auto Pod (Toy Fair Nuernberg Promotion),2004,,X-Pod,X-Pod
+4348-1,Aero Pod,2004,36.0,X-Pod,X-Pod
+4348-2,Aero Pod (Polybag),2004,33.0,X-Pod,X-Pod
+4348-3,Aero Pod (Toy Fair Nuernberg Promotion),2004,36.0,X-Pod,X-Pod
+4349-1,Wild Pod,2004,44.0,X-Pod,X-Pod
+4349-2,Wild Pod (polybag),2004,41.0,X-Pod,X-Pod
+4349-3,Wild Pod (Toy Fair Nuernberg Promotion),2004,44.0,X-Pod,X-Pod
+435-1,Tipper Truck,1976,23.0,Construction,Legoland
+435-2,Garage Plate and Door (The Building Toy),1966,3.0,Supplemental,Classic
+437-1,50 numbered bricks (The Building Toy),1966,,Supplemental,Classic
+4-4,Large House Set,1970,218.0,Minitalia,Minitalia
+44000-1,Furno XL,2013,103.0,Heroes,Hero Factory
+4400-1,Creations and Bricks {Red Tub},2003,705.0,Basic Set,Creator
+44001-1,Pyrox,2013,,Villains,Hero Factory
+44002-1,Rocka,2013,,Heroes,Hero Factory
+44003-1,Scarox,2013,,Villains,Hero Factory
+44004-1,Bulk,2013,50.0,Heroes,Hero Factory
+44005-1,Bruizer,2013,,Villains,Hero Factory
+44006-1,Breez,2013,49.0,Heroes,Hero Factory
+44007-1,Ogrum,2013,59.0,Villains,Hero Factory
+44008-1,Surge,2013,66.0,Heroes,Hero Factory
+44009-1,Dragon Bolt,2013,151.0,Villains,Hero Factory
+44010-1,Stormer,2013,69.0,Heroes,Hero Factory
+4401-1,Little Creations,2003,110.0,Designer Sets,Designer Sets
+44011-1,Frost Beast,2013,,Villains,Hero Factory
+44012-1,Evo,2013,51.0,Heroes,Hero Factory
+44013-1,Aquagon,2013,,Villains,Hero Factory
+44014-1,Jet Rocka,2013,,Heroes,Hero Factory
+44015-1,EVO Walker,2014,,Hero Factory,Hero Factory
+44016-1,JAW Beast vs. STORMER,2014,,Hero Factory,Hero Factory
+44017-1,STORMER Freeze Machine,2014,87.0,Hero Factory,Hero Factory
+44018-1,FURNO Jet Machine,2014,,Hero Factory,Hero Factory
+44019-1,ROCKA Stealth Machine,2014,,Hero Factory,Hero Factory
+44020-1,FLYER Beast vs. BREEZ,2014,,Hero Factory,Hero Factory
+4402-1,Sea Riders,2003,,Designer Sets,Designer Sets
+44021-1,SPLITTER Beast vs. FURNO & EVO,2014,,Hero Factory,Hero Factory
+44022-1,EVO XL Machine,2014,,Hero Factory,Hero Factory
+44023-1,ROCKA Crawler,2014,,Heroes,Hero Factory
+44024-1,TUNNELER Beast vs. SURGE,2014,,Hero Factory,Hero Factory
+44025-1,BULK Drill Machine,2014,111.0,Heroes,Hero Factory
+44026-1,CRYSTAL Beast vs. BULK,2014,83.0,Hero Factory,Hero Factory
+44027-1,BREEZ Flea Machine,2014,101.0,Heroes,Hero Factory
+44028-1,SURGE & ROCKA Combat Machine,2014,,Heroes,Hero Factory
+44029-1,"QUEEN Beast vs. FURNO, EVO & STORMER",2014,216.0,Hero Factory,Hero Factory
+4403-1,Air Blazers,2003,705.0,Designer Sets,Designer Sets
+4404-1,Land Busters,2003,,Designer Sets,Designer Sets
+4405-1,Large Creator Bucket,2003,1305.0,Basic Set,Creator
+4406-1,Buildings,2004,506.0,Creator,Creator
+4407-1,Transportation,2004,302.0,Creator,Creator
+4408-1,Animals,2004,202.0,Creator,Creator
+4410-1,Build and Create,2004,,Basic Set,Creator
+4411-1,Blue Strata XXL,2004,1200.0,Basic Set,Creator
+4412-1,Einfallsreiches Bauen [Imaginative Building],2004,,Basic Set,Creator
+4413-1,Arachno Pod,2005,57.0,X-Pod,X-Pod
+4414-1,LEGO Creator Bucket,2004,500.0,Basic Set,Creator
+4415-1,Auto Pod,2006,,Creator,X-Pod
+4416-1,Robo Pod,2006,,Creator,X-Pod
+4417-1,Aero Pod,2006,,Creator,X-Pod
+4418-1,Dino Pod,2006,,Creator,X-Pod
+442-1,Space Shuttle,1979,,Classic Space,Space
+4421-1,Box of Bricks,2005,1000.0,Supplemental,Creator
+4423-1,LEGO Creator Handy Box,2005,800.0,Supplemental,Creator
+4425-1,Better Building More Fun,2004,,Basic Set,Creator
+4427-1,Fire ATV,2012,50.0,Fire,Town
+4428-1,"Advent Calendar 2012, City",2012,24.0,City,Seasonal
+4428-10,"Advent Calendar 2012, City (Day 9) Mechanic with Wrench",2012,,Advent Sub-Set,Seasonal
+4428-11,"Advent Calendar 2012, City (Day 10) Wheel Dolly with Wheels",2012,,Advent Sub-Set,Seasonal
+4428-12,"Advent Calendar 2012, City (Day 11) Firefighter's ATV without Wheels",2012,,Advent Sub-Set,Seasonal
+4428-13,"Advent Calendar 2012, City (Day 12) Female Firefighter",2012,,Advent Sub-Set,Seasonal
+4428-14,"Advent Calendar 2012, City (Day 13) Desk with Computer and Chair",2012,8.0,Advent Sub-Set,Seasonal
+4428-15,"Advent Calendar 2012, City (Day 14) Box with Burning Logs",2012,,Advent Sub-Set,Seasonal
+4428-16,"Advent Calendar 2012, City (Day 15) Wall with Safety Equipment",2012,16.0,Advent Sub-Set,Seasonal
+4428-17,"Advent Calendar 2012, City (Day 16) Girl with Snowball",2012,5.0,Advent Sub-Set,Seasonal
+4428-18,"Advent Calendar 2012, City (Day 17) Catapult",2012,15.0,Advent Sub-Set,Seasonal
+4428-19,"Advent Calendar 2012, City (Day 18) Dog and Hydrant",2012,,Advent Sub-Set,Seasonal
+4428-2,"Advent Calendar 2012, City (Day 1) Fireman with Loudhailer",2012,5.0,Advent Sub-Set,Seasonal
+4428-20,"Advent Calendar 2012, City (Day 19) Firefighter with Cup",2012,,Advent Sub-Set,Seasonal
+4428-21,"Advent Calendar 2012, City (Day 20) Wheelbarrow with Spade and Snow",2012,,Advent Sub-Set,Seasonal
+4428-22,"Advent Calendar 2012, City (Day 21) Warning Lights and Sign",2012,9.0,Advent Sub-Set,Seasonal
+4428-23,"Advent Calendar 2012, City (Day 22) Santa's Sled",2012,8.0,Advent Sub-Set,Seasonal
+4428-24,"Advent Calendar 2012, City (Day 23) Wrapped Gifts",2012,16.0,Advent Sub-Set,Seasonal
+4428-25,"Advent Calendar 2012, City (Day 24) Santa on Snowmobile",2012,13.0,Advent Sub-Set,Seasonal
+4428-3,"Advent Calendar 2012, City (Day 2) Chainsaw with Logs",2012,8.0,Advent Sub-Set,Seasonal
+4428-4,"Advent Calendar 2012, City (Day 3) Christmas Tree",2012,16.0,Advent Sub-Set,Seasonal
+4428-5,"Advent Calendar 2012, City (Day 4) Stairs and Star for Tree",2012,8.0,Advent Sub-Set,Seasonal
+4428-6,"Advent Calendar 2012, City (Day 5) Wall with Fireman Equipment",2012,17.0,Advent Sub-Set,Seasonal
+4428-7,"Advent Calendar 2012, City (Day 6) Boy with Snowball",2012,5.0,Advent Sub-Set,Seasonal
+4428-8,"Advent Calendar 2012, City (Day 7) Toy Fire Engine with Remote",2012,,Advent Sub-Set,Seasonal
+4428-9,"Advent Calendar 2012, City (Day 8) Wall with Ski Equipment",2012,24.0,Advent Sub-Set,Seasonal
+4429-1,Helicopter Rescue,2012,425.0,Hospital,Town
+442A-1,6 International Flags (The Building Toy),1971,6.0,Supplemental,Classic
+442B-1,6 International Flags (The Building Toy),1971,6.0,Supplemental,Classic
+4430-1,Mobile Fire Command Center,2012,520.0,Fire,Town
+4431-1,Ambulance,2012,,Hospital,Town
+4432-1,Garbage Truck,2012,211.0,Traffic,Town
+4433-1,Dirt Bike Transporter,2012,,Off-Road,Town
+4434-1,Tipper Truck,2012,221.0,Construction,Town
+4435-1,Car and Caravan,2012,217.0,Traffic,Town
+4436-1,Patrol Car,2012,,Police,Town
+4437-1,Police Pursuit,2012,129.0,Police,Town
+4438-1,Robbers' Hideout,2012,316.0,Police,Town
+4439-1,Heavy-Duty Helicopter,2012,392.0,Police,Town
+4440-1,Forest Police Station,2012,632.0,Police,Town
+4441-1,Police Dog Van,2012,312.0,Police,Town
+4442-1,Glider,2012,,Airport,Town
+4443-1,Coca-Cola Defender 1,2002,,Soccer,Sports
+4444-1,Coca-Cola Defender 2,2002,4.0,Soccer,Sports
+4445-1,Coca-Cola Middle Fielder 1,2002,4.0,Soccer,Sports
+4446-1,Coca-Cola Forward 1,2002,,Soccer,Sports
+4447-1,Coca-Cola Forward 2,2002,4.0,Soccer,Sports
+4448-1,Coca-Cola Defender 3,2002,,Soccer,Sports
+4449-1,Coca-Cola Defender 4,2002,,Soccer,Sports
+4450-1,Coca-Cola Middle Fielder 2,2002,4.0,Soccer,Sports
+445062-1,Star Wars Co-Pack of 4500 and 4504,2004,2.0,Star Wars Episode 4/5/6,Star Wars
+445-1,Police Units,1976,,Police,Legoland
+4451-1,Coca-Cola Forward 3,2002,4.0,Soccer,Sports
+445-2,Lighting Device Pack (The Building Toy),1966,,Supplemental,Classic
+4452-1,Coca-Cola Forward 4,2002,,Soccer,Sports
+4453-1,Coca-Cola Goal Keeper,2002,,Soccer,Sports
+4454-1,Coca-Cola Referee,2002,,Soccer,Sports
+4455-1,Coca-Cola Hotdog Girl,2002,,Soccer,Sports
+4456-1,Coca-Cola Doctor,2002,,Soccer,Sports
+4457-1,Coca-Cola TV Cameraman,2002,4.0,Soccer,Sports
+4458-1,Coca-Cola TV Camera,2002,,Soccer,Sports
+4459-1,Coca-Cola PK Kicker,2002,,Soccer,Sports
+445A-1,Lighting Device Pack with Improved Plugs (The Building Toy),1970,,Supplemental,Classic
+4460-1,Coca-Cola Goal,2002,,Soccer,Sports
+4461-1,Coca-Cola Bench,2002,,Soccer,Sports
+4462-1,Coca-Cola Hotdog Trolley,2002,18.0,Soccer,Sports
+4463-1,Coca-Cola Light,2002,,Soccer,Sports
+4464-1,Coca-Cola Bottle Case,2002,,Soccer,Sports
+4465-1,Coca-Cola Vending Machine,2002,6.0,Soccer,Sports
+4466-1,Coca-Cola Sign Board,2002,3.0,Soccer,Sports
+4467-1,Coca-Cola Stretcher,2002,,Soccer,Sports
+4468-1,Coca-Cola Stand,2002,,Soccer,Sports
+4469-1,Coca-Cola Drink Stand,2002,8.0,Soccer,Sports
+4470-1,Coca-Cola Ball,2002,,Soccer,Sports
+4471-1,Coca-Cola Secret A,2002,4.0,Soccer,Sports
+4472-1,Coca-Cola Secret B,2002,4.0,Soccer,Sports
+4473-1,Police Helicopter,2013,,Police,Town
+4475-1,Jabba's Message,2003,,Star Wars Episode 4/5/6,Star Wars
+4476-1,Jabba's Prize,2003,,Star Wars Episode 4/5/6,Star Wars
+4477-1,T-16 Skyhopper,2003,98.0,Star Wars Episode 4/5/6,Star Wars
+4478-1,"Geonosian Fighter, Black Box",2003,,Star Wars Episode 2,Star Wars
+4478-2,Geonosian Fighter Blue Box,2004,153.0,Star Wars Episode 2,Star Wars
+4479-1,TIE Bomber,2003,,Star Wars Episode 4/5/6,Star Wars
+4480-1,Jabba's Palace,2003,,Star Wars Episode 4/5/6,Star Wars
+4481-1,Hailfire Droid,2003,680.0,Star Wars,Star Wars
+4482-1,AT-TE,2003,650.0,Star Wars Episode 2,Star Wars
+4483-1,"AT-AT, black box",2003,,Star Wars Episode 4/5/6,Star Wars
+4483-2,"AT-AT, blue box",2004,,Star Wars Episode 4/5/6,Star Wars
+4484-1,X-wing Fighter & TIE Advanced - Mini,2003,,Mini,Star Wars
+4485-1,Sebulba's Podracer & Anakin's Podracer - Mini,2003,,Mini,Star Wars
+4486-1,AT-ST & Snowspeeder - Mini,2003,,Mini,Star Wars
+4487-1,Jedi Starfighter & Slave I - Mini,2003,,Mini,Star Wars
+4488-1,Millennium Falcon - Mini,2003,87.0,Mini,Star Wars
+4489-1,AT-AT - Mini,2003,,Mini,Star Wars
+4490-1,Republic Gunship - Mini,2003,102.0,Mini,Star Wars
+4491-1,Trade Federation MTT - Mini,2003,99.0,Mini,Star Wars
+4492-1,Imperial Star Destroyer - Mini,2004,87.0,Mini,Star Wars
+4493-1,Sith Infiltrator - Mini,2004,,Mini,Star Wars
+4494-1,Imperial Shuttle - Mini,2004,82.0,Mini,Star Wars
+4495-1,AT-TE - Mini,2004,63.0,Mini,Star Wars
+4495173-1,LEGO Creative Building Set,2006,,Basic Set,Creator
+4496-1,Fun with Building Tub,2004,1000.0,Basic Set,Creator
+4496-2,50th Anniversary Tub,2005,1000.0,Basic Set,Creator
+4496-3,Fun with Building Tub - Reissue,2006,,Basic Set,Creator
+4497-1,Pretend and Create,2004,1000.0,Basic Set,Creator
+4499536-1,Offre Speciale 4 Boites (7236 7238 7235 7241),2007,0.0,City,Town
+45000-1,Creative Builder,2013,120.0,Educational and Dacta,Educational and Dacta
+4500-1,Rebel Snowspeeder [Redesign] - Blue box,2003,216.0,Star Wars Episode 4/5/6,Star Wars
+45001-1,Playground,2013,,Educational and Dacta,Educational and Dacta
+4500-2,"Rebel Snowspeeder (redesign), Original Trilogy Edition box",2004,,Star Wars Episode 4/5/6,Star Wars
+45002-1,Tech Machines Set,2013,92.0,Educational and Dacta,Educational and Dacta
+45003-1,LEGO Soft Bricks Set,2013,,Soft Bricks,Educational and Dacta
+45007-1,Large Farm,2014,152.0,Duplo,Duplo
+450-1,Fork Lift,1973,,Construction,Legoland
+4501-1,"Mos Eisley Cantina, Blue box",2003,,Star Wars Episode 4/5/6,Star Wars
+45011-1,Duplo World People,2015,16.0,Duplo,Duplo
+4501-2,"Mos Eisley Cantina, Original Trilogy Edition box",2004,194.0,Star Wars Episode 4/5/6,Star Wars
+45020-1,Creative Lego Brick Set,2016,998.0,Educational and Dacta,Educational and Dacta
+4502-1,"X-wing Fighter (Dagobah), Blue box",2003,566.0,Star Wars Episode 4/5/6,Star Wars
+4502-2,"X-wing Fighter (Dagobah), Original Trilogy Edition box",2004,565.0,Star Wars Episode 4/5/6,Star Wars
+4504-1,"Millennium Falcon (Redesign), Blue box",2003,996.0,Star Wars Episode 4/5/6,Star Wars
+4504-2,"Millennium Falcon (Redesign), Original Trilogy Edition box",2003,979.0,Star Wars Episode 4/5/6,Star Wars
+4505-1,Sea Machines,2004,168.0,Designer Sets,Designer Sets
+4506-1,Deep Sea Predators,2004,353.0,Designer Sets,Designer Sets
+4507-1,Prehistoric Creatures,2004,726.0,Designer Sets,Designer Sets
+4508-1,Titan XP,2004,784.0,Designer Sets,Designer Sets
+45100-1,Story Starter Core Set,2013,1145.0,Educational and Dacta,Educational and Dacta
+45103-1,StoryStarter Expansion Pack: Community,2015,,Educational and Dacta,Educational and Dacta
+451-1,"1 x 6 x 3 Window, Red or White",1966,12.0,Supplemental,Classic
+45110-1,BuildToExpress Set,2013,,Educational and Dacta,Educational and Dacta
+4511-1,High Speed Train,2003,335.0,World City,Train
+45120-1,LearnToLearn Core set,2014,2016.0,Supplemental,Educational and Dacta
+4512-1,Cargo Train,2003,546.0,World City,Train
+4513-1,Grand Central Station,2003,,World City,Train
+4514-1,Cargo Crane,2003,,World City,Train
+4515-1,Straight Rails,1991,,9V,Train
+4518-1,Creator Set,2004,805.0,Basic Set,Creator
+4519-1,Rail Crossing,1999,1.0,9V,Train
+4520-1,Curved Rails,1991,8.0,9V,Train
+452-1,Mobile Ground Tracking Station,1979,79.0,Classic Space,Space
+4521221-1,Gold chrome plated C-3PO,2007,3.0,Gear,Gear
+452-2,"1 x 6 x 2 Window, Red or White",1966,16.0,Supplemental,Classic
+4524081-1,Mindstorms NXT CD,2007,0.0,Mindstorms,Mindstorms
+4524-1,Advent Calendar 2002 Creator,2002,24.0,Creator,Seasonal
+4524-10,Advent Calendar 2002 Creator (Day 9) Space Buggy,2002,,Creator,Seasonal
+4524-11,Advent Calendar 2002 Creator (Day 10) Dinosaur,2002,8.0,Creator,Seasonal
+4524-12,Advent Calendar 2002 Creator (Day 11) Speedboat,2002,,Creator,Seasonal
+4524-13,Advent Calendar 2002 Creator (Day 12) Reindeer,2002,,Creator,Seasonal
+4524-14,Advent Calendar 2002 Creator (Day 13) Snowman,2002,15.0,Creator,Seasonal
+4524-15,Advent Calendar 2002 Creator (Day 14) Jet Ski,2002,11.0,Creator,Seasonal
+4524-16,Advent Calendar 2002 Creator (Day 15) Duck,2002,,Creator,Seasonal
+4524-17,Advent Calendar 2002 Creator (Day 16) Police Boat,2002,,Creator,Seasonal
+4524-18,Advent Calendar 2002 Creator (Day 17) Whale,2002,,Creator,Seasonal
+4524-19,Advent Calendar 2002 Creator (Day 18) Space Shuttle,2002,11.0,Creator,Seasonal
+4524-2,Advent Calendar 2002 Creator (Day 1) Squirrel,2002,10.0,Creator,Seasonal
+4524-20,Advent Calendar 2002 Creator (Day 19) Parrot,2002,9.0,Creator,Seasonal
+4524-21,Advent Calendar 2002 Creator (Day 20) Steamship,2002,10.0,Creator,Seasonal
+4524-22,Advent Calendar 2002 Creator (Day 21) Building,2002,,Creator,Seasonal
+4524-23,Advent Calendar 2002 Creator (Day 22) Helicopter,2002,11.0,Creator,Seasonal
+4524-24,Advent Calendar 2002 Creator (Day 23) Tree,2002,11.0,Creator,Seasonal
+4524-25,Advent Calendar 2002 Creator (Day 24) Present,2002,,Creator,Seasonal
+4524-3,Advent Calendar 2002 Creator (Day 2) Boy,2002,1.0,Creator,Seasonal
+4524-4,Advent Calendar 2002 Creator (Day 3) Fireplace,2002,,Creator,Seasonal
+4524-5,Advent Calendar 2002 Creator (Day 4) Santa,2002,10.0,Creator,Seasonal
+4524-6,Advent Calendar 2002 Creator (Day 5) Car,2002,15.0,Creator,Seasonal
+4524-7,Advent Calendar 2002 Creator (Day 6) Penguin,2002,,Creator,Seasonal
+4524-8,Advent Calendar 2002 Creator (Day 7) Girl,2002,1.0,Creator,Seasonal
+4524-9,Advent Calendar 2002 Creator (Day 8) Dog with hat,2002,11.0,Creator,Seasonal
+4525-1,Road and Rail Repair,1994,84.0,9V,Train
+4526-1,Batman,2012,,Constraction,Super Heroes
+4527-1,The Joker,2012,57.0,Constraction,Super Heroes
+4528-1,Green Lantern,2012,38.0,Constraction,Super Heroes
+4529-1,Iron Man,2012,44.0,Constraction,Super Heroes
+45300-1,WeDo Core Set,2016,279.0,WeDo,Educational and Dacta
+4530-1,The Hulk,2012,,Constraction,Super Heroes
+45301-1,WeDo 2.0 Smart Hub,2016,1.0,WeDo,Educational and Dacta
+45302-1,WeDo 2.0 Smarthub Rechargeable Battery,2016,,WeDo,Educational and Dacta
+45303-1,WeDo 2.0 Medium Motor,2016,1.0,WeDo,Educational and Dacta
+45304-1,WeDo 2.0 Motion Sensor,2016,1.0,WeDo,Educational and Dacta
+45305-1,WeDo 2.0 Tilt Sensor,2016,1.0,WeDo,Educational and Dacta
+453-1,Two Crater Plates,1979,2.0,Supplemental,Space
+4531-1,Manual Points,1991,6.0,9V,Train
+453-2,"1 x 6 x 2 Shuttered Windows, Red or White",1966,16.0,Supplemental,Classic
+4532-1,Manual Level Crossing,1996,,9V,Train
+4533-1,Train Track Snow Remover,1999,57.0,9V,Train
+4534-1,LEGO Express,2002,,My Own Train,Train
+4535-1,LEGO Express Deluxe,2002,,My Own Train,Train
+4536-1,Blue Hopper Car,1991,,9V,Train
+4537-1,Octan Twin Tank Rail Tanker,1993,173.0,9V,Train
+4538-1,Special Edition,2004,200.0,Basic Set,Creator
+4539-1,Manual Level Crossing,1991,,9V,Train
+4540315-1,LEGO Creative Bucket (TRU Exclusive),2009,480.0,Basic Set,Creator
+454-1,Two Lunar Landing Plates,1979,,Supplemental,Space
+4541-1,Rail and Road Service Truck,1999,126.0,9V,Train
+454-2,"1 x 4 x 2 Window, Red or White",1966,18.0,Supplemental,Classic
+4543-1,Railroad Tractor Flatbed,1991,179.0,9V,Train
+4544-1,Car Transport Wagon with Car,1994,142.0,9V,Train
+4546-1,Road and Rail Maintenance,1991,76.0,9V,Train
+4547-1,Club Car,1993,292.0,9V,Train
+4547551-1,Darth Vader 10 Year Anniversary Promotional Minifigure,2009,7.0,Star Wars,Star Wars
+4548-1,Transformer and Speed Regulator,1991,3.0,9V,Train
+4548431-1,Brick Tub 'Die Lego Show' - Limited Edition,2008,701.0,Basic Set,Creator
+4549-1,Container Double Stack,1993,450.0,9V,Train
+45500-1,EV3 Intelligent Brick,2013,,EV3,Mindstorms
+45501-1,EV3 Rechargeable DC Battery,2013,1.0,EV3,Mindstorms
+45502-1,EV3 Large Servo Motor,2013,1.0,EV3,Mindstorms
+45503-1,EV3 Medium Servo Motor,2013,,EV3,Mindstorms
+45504-1,EV3 Ultrasonic Sensor,2013,1.0,EV3,Mindstorms
+45505-1,EV3 Gyro Sensor,2013,1.0,EV3,Mindstorms
+45506-1,EV3 Color Sensor,2013,1.0,EV3,Mindstorms
+45507-1,EV3 Touch Sensor,2013,,EV3,Mindstorms
+45508-1,EV3 Infrared Beacon,2013,1.0,EV3,Mindstorms
+45509-1,EV3 Infrared Sensor,2013,,EV3,Mindstorms
+455-1,Lear Jet,1976,45.0,Airport,Legoland
+4551-1,Crocodile Locomotive,1991,313.0,9V,Train
+45514-1,EV3 Cable Pack,2013,,EV3,Mindstorms
+45517-1,Transformer 10V DC,2016,,Mindstorms,Educational and Dacta
+455-2,"1 x 3 x 2 Window, Red or White",1966,,Supplemental,Classic
+4552-1,Cargo Crane,1995,,9V,Train
+4553-1,Train Wash,1999,189.0,9V,Train
+4554-1,Metro Station,1991,,9V,Train
+45544-1,EV3 Core Set,2013,546.0,EV3,Mindstorms
+4555-1,Cargo Station,1995,,9V,Train
+45560-1,EV3 Expansion Set,2013,853.0,EV3,Mindstorms
+4556-1,Train Station,1999,,9V,Train
+45570-1,Space Challenge Set,2014,1368.0,Mindstorms,Educational and Dacta
+4557-1,Freight Loading Station,1999,,9V,Train
+4558-1,Metroliner,1991,786.0,9V,Train
+4559-1,Cargo Railway,1996,845.0,9V,Train
+4559288-1,Power Miners Promotional Polybag,2009,,Power Miners,Power Miners
+4559385-1,{Power Miners Promotional Polybag},2009,,Power Miners,Power Miners
+4559387-1,{Power Miners Promotional Polybag},2009,,Power Miners,Power Miners
+4560-1,Railway Express,1999,672.0,9V,Train
+456-1,Spirit of St. Louis,1977,,Airport,Legoland
+4561-1,Railway Express with Transformer and Speed Regulator,1999,673.0,9V,Train
+456-2,"1 x 2 x 2 Window, Red or White",1966,30.0,Supplemental,Classic
+4562-1,Creator Box,2004,,Basic Set,Creator
+4563-1,Load and Haul Railroad,1991,,9V,Train
+4564-1,Freight Rail Runner,1994,591.0,9V,Train
+4565-1,Freight and Crane Railway,1996,915.0,9V,Train
+4566-1,Gear,2001,,Xalax,Racers
+4567-1,Surfer,2001,,Xalax,Racers
+4568-1,Loopin,2001,7.0,Xalax,Racers
+4569-1,Warrior,2001,8.0,Xalax,Racers
+4570-1,Shredd,2001,7.0,Xalax,Racers
+457-1,"1 x 1 x 2 Window, Red or White",1966,38.0,Supplemental,Classic
+4571-1,Spiky,2001,7.0,Xalax,Racers
+4572-1,Scratch,2001,,Xalax,Racers
+4573-1,Lightor,2001,,Xalax,Racers
+4574-1,Rip,2001,7.0,Xalax,Racers
+4575-1,Pulse,2001,,Xalax,Racers
+4576-1,Duster,2001,,Xalax,Racers
+4577-1,Snake,2001,,Xalax,Racers
+4578-1,Ghost,2001,7.0,Xalax,Racers
+4579-1,Ice Ramp Racers,2001,112.0,Xalax,Racers
+45800-1,FIRST LEGO League Challenge 2014 - World Class,2014,,FIRST LEGO League,FIRST LEGO League
+45801-1,Trash Trek (FLL),2015,1992.0,FIRST LEGO League,FIRST LEGO League
+45802-1,Animal Allies,2016,2165.0,FIRST LEGO League,FIRST LEGO League
+458-1,"1 x 2 x 1 Window, Red or White",1966,38.0,Supplemental,Classic
+4582-1,Red Bullet,2002,,Drome Racers,Racers
+4583-1,Maverick Storm,2002,31.0,Drome Racers,Racers
+4584-1,Hot Scorcher,2002,,Drome Racers,Racers
+4585-1,Nitro Pulverizer,2002,,Drome Racers,Racers
+4586-1,Stunt Race Track,2002,,Track System,Racers
+4586940-1,Basic Set Limited Edition,2010,480.0,Basic Set,Creator
+4587-1,Duel Racers,2002,193.0,Drome Racers,Racers
+4588-1,Off Road Race Track,2002,364.0,Track System,Racers
+4589-1,RC-Nitro Flash,2002,,Radio Control,Racers
+4590-1,Flash Turbo,2002,28.0,Drome Racers,Racers
+459-1,"1 x 1 x 1 Window, Red or White",1966,,Supplemental,Classic
+4591-1,Star Burst/Star Strike,2002,28.0,Drome Racers,Racers
+4591715-1,Golden Die [TRU Exclusive],2009,7.0,Game,Gear
+4591726-1,Stormtrooper,2009,,Star Wars Episode 4/5/6,Star Wars
+4592-1,Red Monster,2002,,Drome Racers,Racers
+4593-1,Zero Hurricane & Red Blizzard,2002,,Drome Racers,Racers
+4594-1,Maverick Sprinter & Hot Arrow,2002,66.0,Drome Racers,Racers
+4595-1,Zero Tornado & Hot Rock,2002,71.0,Drome Racers,Racers
+4595400-1,Rocket Kit,2010,,Supplemental,Racers
+4596-1,Storming Cobra,2002,,Drome Racers,Racers
+4597068-1,Boba Fett,2010,5.0,Star Wars Other,Star Wars
+4597-1,Captain America,2012,44.0,Constraction,Super Heroes
+4599605-1,Easter Chicks,2010,15.0,Easter,Seasonal
+4600-1,Police Cruiser,2001,23.0,Police,4 Juniors
+460-1,Rescue Units,1973,,Hospital,Legoland
+4601-1,Fire Cruiser,2001,22.0,Fire,4 Juniors
+460-2,"1 x 2 x 3 Door, Red or White",1966,,Supplemental,Classic
+4603-1,Res-Q Wrecker,2001,,Traffic,4 Juniors
+4604-1,Police Copter,2001,16.0,Police,4 Juniors
+4605-1,Fire Response SUV,2001,30.0,Fire,4 Juniors
+4606-1,Aqua Res-Q Transport,2001,40.0,Traffic,4 Juniors
+4607-1,Copter Transport,2001,66.0,Traffic,4 Juniors
+4608-1,Bank Breakout,2001,,Police,4 Juniors
+4609-1,Fire Attack Team,2001,95.0,Fire,4 Juniors
+4610-1,Aqua Res-Q Super Station,2001,,Traffic,4 Juniors
+4611-1,Police HQ,2001,,Police,4 Juniors
+4612-1,Super Glider,2002,7.0,Airport,4 Juniors
+4613-1,Turbo Chopper,2002,13.0,Airport,4 Juniors
+4613985-1,Build a Bullseye Target Gift Card Promotional,2010,32.0,Christmas,Seasonal
+4614-1,Ultralight Flyer,2002,16.0,Airport,4 Juniors
+4615-1,Red Recon Flyer,2002,21.0,Airport,4 Juniors
+4616-1,Rapid Response Tanker,2002,35.0,Gas Station,4 Juniors
+4617-1,Dual Turbo Prop,2002,32.0,Airport,4 Juniors
+4618-1,Twin Rotor Cargo,2002,44.0,Airport,4 Juniors
+4619-1,A.I.R. Patrol Jet,2002,,Airport,4 Juniors
+4620-1,A.I.R. Operations HQ,2002,,Airport,4 Juniors
+462-1,Mobile Rocket Launcher,1979,77.0,Classic Space,Space
+4621-1,Jack Stone Red Flash Station,2002,32.0,Fire,4 Juniors
+462-2,"2 x 8 Plates, White",1966,16.0,Supplemental,Classic
+4622-1,Res-Q Digger,2002,67.0,Traffic,4 Juniors
+4623-1,DUPLO Pink Brick Box,2012,,Duplo,Duplo
+4624-1,DUPLO Brick Box,2012,,Duplo,Duplo
+4625-1,LEGO Pink Brick Box,2012,219.0,Basic Model,Creator
+4626-1,Farm Brick Box,2012,,Basic Set,Creator
+4627-1,Fun With Bricks,2012,,Duplo,Duplo
+4628-1,Fun with Bricks,2012,,Creator,Creator
+4629-1,Build and Play Box,2012,,Duplo,Duplo
+4630-1,Build and Play Box,2012,,Basic Set,Creator
+463-1,"4 x 8 Plates, White",1966,8.0,Supplemental,Classic
+4631-1,My First Build,2012,,Duplo,Duplo
+4632-1,Building Plates,2012,,Duplo,Duplo
+4635-1,Fun with Vehicles,2012,525.0,Creator,Creator
+4636-1,Police Building Set,2012,130.0,Creator,Creator
+4636204-1,Ninjago Promotional Giveaway,2011,11.0,Ninjago,Ninjago
+4637-1,Safari Building Set,2012,,Creator,Creator
+464-1,"6 x 8 Plates, White",1966,,Supplemental,Classic
+4641-1,Speed Boat,2011,,Harbor,Town
+4642-1,Fishing Boat,2011,,Harbor,Town
+4643-1,Power Boat Transporter,2011,245.0,Harbor,Town
+4644-1,Marina,2011,,Harbor,Town
+4645-1,Harbor,2011,550.0,Harbor,Town
+4648933-1,Hero Factory Accessories,2011,6.0,Hero Factory,Hero Factory
+4648939-1,Golden Die with 1-6 dot tiles,2011,8.0,Game,Gear
+4649858-1,Shadow ARF Trooper Promotional Polybag,2011,,Star Wars Clone Wars,Star Wars
+4651-1,Police Motorcycle,2003,12.0,Police,4 Juniors
+4652-1,Tow Truck,2003,26.0,Traffic,4 Juniors
+4653-1,Dump Truck,2003,,Construction,4 Juniors
+4654-1,Tanker Truck,2003,,Gas Station,4 Juniors
+4655-1,Quick Fix Station,2003,,Gas Station,4 Juniors
+4657-1,Fire Squad HQ,2003,,Fire,4 Juniors
+4659018-1,Master Builder Academy: Kits 2-6 Subscription,2011,5.0,Master Building Academy,Master Building Academy
+4659-1,Duplo Garbage Truck,2005,13.0,Duplo,Duplo
+4659597-1,Friends - Bracelets,2012,,Gear,Gear
+4659602-1,Display Stand,2012,,Friends,Friends
+4659607-1,Hero Factory Booster Pack,2012,6.0,Hero Factory,Hero Factory
+4659612-1,Spinner Ring,2012,1.0,Ninjago,Ninjago
+4659758-1,Build a Bullseye 3 in 1 Target Gift Card Promotional,2011,,Christmas,Seasonal
+4660865-1,Target Lego Gift Card 2011 3 in 1 Set,2011,,Christmas,Seasonal
+4662-1,Duplo Post Office,2005,17.0,Duplo,Duplo
+4665-1,Big Farm,2005,,Duplo,Duplo
+4666-1,Speedy Police Car,2003,25.0,Police,4 Juniors
+4667-1,Loadin' Digger,2003,,Construction,4 Juniors
+4668-1,Outrigger Construction Crane,2003,67.0,Construction,4 Juniors
+4669-1,Turbo-Charged Police Boat,2003,,Police,4 Juniors
+4677-1,Name Letter Pack,2004,67.0,Other,Other
+4679-1,Bricks and Creations Tub,2004,2.0,Basic Set,Creator
+4679-2,Bricks and Creations Tub - (TRU Exclusive),2005,,Basic Set,Creator
+4679a-1,Bricks and Creations Tub (Bottom Tub and its contents only),2004,,Basic Set,Creator
+4679a-2,Bricks and Creations Tub - (TRU Exclusive) (Bottom Tub and its contents only),2005,1000.0,Basic Set,Creator
+4679b-2,Free 500 LEGO Bricks (Bonus box and its contents only),2005,500.0,Supplemental,Creator
+4695-1,Knight Bus - Mini,2004,58.0,Harry Potter,Harry Potter
+4696-1,Blue Bucket,2004,,Basic Set,Creator
+470-1,"1 x 1, 1 x 2, 2 x 2, 2 x 3, 2 x 4 Plates (System)",1966,,Supplemental,Classic
+4701-1,Sorting Hat,2001,,Sorcerer's Stone,Harry Potter
+4702-1,The Final Challenge,2001,,Sorcerer's Stone,Harry Potter
+4704-1,The Chamber of the Winged Keys,2001,180.0,Sorcerer's Stone,Harry Potter
+4705-1,Snape's Class,2001,,Sorcerer's Stone,Harry Potter
+4706-1,Forbidden Corridor,2001,239.0,Sorcerer's Stone,Harry Potter
+4707-1,Hagrid's Hut,2001,298.0,Sorcerer's Stone,Harry Potter
+4708-1,Hogwarts Express,2001,412.0,Harry Potter,Harry Potter
+4709-1,Hogwarts Castle,2001,,Sorcerer's Stone,Harry Potter
+471-1,Tiles (System),1966,,Supplemental,Classic
+4711-1,Flying Lesson,2002,,Sorcerer's Stone,Harry Potter
+4712-1,Troll on the Loose,2002,,Sorcerer's Stone,Harry Potter
+4714-1,Gringott's Bank,2002,263.0,Sorcerer's Stone,Harry Potter
+471518-1,Happy The Cute Dolphin,2015,17.0,Friends,Friends
+471602-1,Pony Grooming Kit,2016,28.0,Friends,Friends
+4719-1,Quality Quidditch Supplies,2003,,Chamber of Secrets,Harry Potter
+4720-1,Knockturn Alley,2003,,Chamber of Secrets,Harry Potter
+4721-1,Hogwarts Classroom,2001,,Sorcerer's Stone,Harry Potter
+4722-1,Gryffindor,2001,70.0,Sorcerer's Stone,Harry Potter
+4723-1,Diagon Alley Shops,2001,85.0,Sorcerer's Stone,Harry Potter
+4726-1,Quidditch Practice,2002,131.0,Chamber of Secrets,Harry Potter
+4727-1,Aragog in the Dark Forest,2002,,Chamber of Secrets,Harry Potter
+4728-1,Escape from Privet Drive,2002,282.0,Chamber of Secrets,Harry Potter
+4729-1,Dumbledore's Office,2002,451.0,Chamber of Secrets,Harry Potter
+4730-1,Chamber of Secrets,2002,,Chamber of Secrets,Harry Potter
+4731-1,Dobby's Release,2002,,Chamber of Secrets,Harry Potter
+4733-1,The Dueling Club,2002,133.0,Chamber of Secrets,Harry Potter
+4735-1,Slytherin,2002,93.0,Chamber of Secrets,Harry Potter
+4736-1,Freeing Dobby,2010,,Harry Potter,Harry Potter
+4737-1,Quidditch Match,2010,153.0,Harry Potter,Harry Potter
+4738-1,Hagrid's Hut (3rd edition),2010,442.0,Harry Potter,Harry Potter
+4741-1,Blacktron Super Vehicle (Value 3-Pack),1993,,Blacktron II,Space
+4742-1,Chill Speeder,2004,57.0,Mission Deep Freeze,Alpha Team
+4743-1,Ice Blade,2004,103.0,Mission Deep Freeze,Alpha Team
+4744-1,Tundra Tracker,2004,140.0,Mission Deep Freeze,Alpha Team
+4745-1,Blue Eagle vs. Snow Crawler,2004,257.0,Mission Deep Freeze,Alpha Team
+4746-1,Mobile Command Center,2004,425.0,Mission Deep Freeze,Alpha Team
+4748-1,Ogel's Mountain Fortress,2004,,Mission Deep Freeze,Alpha Team
+4750-1,Draco's Encounter with Buckbeak,2004,37.0,Prisoner of Azkaban,Harry Potter
+4751-1,Harry and the Marauder's Map,2004,,Prisoner of Azkaban,Harry Potter
+4752-1,Professor Lupin's Classroom,2004,158.0,Prisoner of Azkaban,Harry Potter
+4753-1,Sirius Black's Escape,2004,,Prisoner of Azkaban,Harry Potter
+4754-1,Hagrid's Hut (2nd edition),2004,,Prisoner of Azkaban,Harry Potter
+4755-1,Knight Bus,2004,244.0,Prisoner of Azkaban,Harry Potter
+4756-1,Shrieking Shack,2004,450.0,Prisoner of Azkaban,Harry Potter
+4757-1,Hogwarts Castle (2nd edition),2004,902.0,Prisoner of Azkaban,Harry Potter
+4758-1,Hogwarts Express (2nd edition),2004,368.0,Harry Potter,Harry Potter
+4759-1,Three Christmas Decorations - Santa Tree and Snowman,2004,,Christmas,Seasonal
+4762-1,Rescue from the Merpeople,2005,177.0,Goblet of Fire,Harry Potter
+4766-1,Graveyard Duel,2005,,Goblet of Fire,Harry Potter
+4767-1,Harry and the Hungarian Horntail,2005,265.0,Goblet of Fire,Harry Potter
+4768-1,The Durmstrang Ship,2005,552.0,Goblet of Fire,Harry Potter
+4768-2,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),2005,,Goblet of Fire,Harry Potter
+4770-1,Blizzard Blaster,2004,,Mission Deep Freeze,Alpha Team
+4774-1,Scorpion Orb Launcher,2004,223.0,Mission Deep Freeze,Alpha Team
+4778-1,Desert Biplane,2005,108.0,Airport,Town
+4780-1,Box of Bricks,2005,500.0,Supplemental,Creator
+4781-1,Box of Bricks,2005,300.0,Supplemental,Creator
+4782-1,Box of Bricks,2005,200.0,Supplemental,Creator
+4782-2,Creator 200 Piece Box of Bricks - Individual Retail Version,2005,200.0,Supplemental,Creator
+4788-1,Ogel Mutant Ray,2002,,Mission Deep Sea,Alpha Team
+4789-1,Alpha Team Aquatic Mech,2002,,Mission Deep Sea,Alpha Team
+4790-1,Alpha Team Robot Diver,2002,,Mission Deep Sea,Alpha Team
+4791-1,Alpha Team Sub-Surface Scooter,2002,,Mission Deep Sea,Alpha Team
+4792-1,Alpha Team Navigator and ROV,2002,93.0,Mission Deep Sea,Alpha Team
+4793-1,Ogel Sub Shark,2002,,Mission Deep Sea,Alpha Team
+4794-1,Alpha Team Command Sub,2002,188.0,Mission Deep Sea,Alpha Team
+4795-1,Ogel Underwater Base and AT Sub,2002,,Mission Deep Sea,Alpha Team
+4796-1,Ogel Mutant Squid,2002,,Mission Deep Sea,Alpha Team
+4797-1,Ogel Mutant Killer Whale,2002,61.0,Mission Deep Sea,Alpha Team
+4798-1,Evil Ogel Attack,2002,21.0,Mission Deep Sea,Alpha Team
+4799-1,Ogel Drone Octopus,2002,18.0,Mission Deep Sea,Alpha Team
+4800-1,Jet Sub,2002,23.0,Mission Deep Sea,Alpha Team
+480-1,Rescue Helicopter,1975,,Fire,Legoland
+4801-1,Defense Archer,2000,,Knights Kingdom I,Castle
+480-4,"Slopes and Slopes Double 2 x 4, Red (The Building Toy)",1966,,Supplemental,Classic
+480-5,"Slopes and Slopes Double 2 x 4, Blue (The Building Toy)",1966,14.0,Supplemental,Classic
+4805-1,Ninja Knights,1999,31.0,Ninja,Ninja
+480-6,"Slopes and Slopes Double 2 x 4, Red (System)",1966,,Supplemental,Classic
+4806-1,Axe Cart,2000,,Knights Kingdom I,Castle
+480-7,"Slopes and Sloped Double 2 x 4, Blue (System)",1966,,Supplemental,Classic
+4807-1,Fire Attack,2000,24.0,Knights Kingdom I,Castle
+4810-1,Blue Creator Bucket,2001,,Basic Set,Creator
+4811-1,Defense Archer,2000,,Knights Kingdom I,Castle
+481-3,"Slopes and Slopes Double 2 x 3 and 2 x 1, Red (The Building Toy)",1966,21.0,Supplemental,Classic
+481-4,"Slopes and Slopes Double 2 x 3 an 2 x 1, Blue (The Building Toy)",1966,21.0,Supplemental,Classic
+481-5,"Slopes Regular, Double, Angle, Valley and Corner, Red (System)",1966,,Supplemental,Classic
+481-6,"Slopes Regular, Double, Angle, Valley and Corner, Blue (System)",1966,,Supplemental,Classic
+4816-1,Knight's Catapult,2000,50.0,Knights Kingdom I,Castle
+4817-1,Dungeon,2000,,Knights Kingdom I,Castle
+4818-1,Dragon Rider,2000,15.0,Knights Kingdom I,Castle
+4819-1,Rebel Chariot,2000,49.0,Knights Kingdom I,Castle
+4820-1,Princess' Palace,2005,71.0,Duplo,Duplo
+482-3,"Slopes and Slopes Double 2 x 2, Red (The Building Toy)",1966,22.0,Supplemental,Classic
+482-4,"Slopes and Slopes Double 2 x 2, Blue (The Building Toy)",1966,,Supplemental,Classic
+4828-1,LEGO Princess Royal Stables,2007,,Duplo,Duplo
+483-1,Alpha-1 Rocket Base,1979,,Classic Space,Space
+483-4,"Angle, Valley and Corner Slopes, Red (The Building Toy)",1966,20.0,Supplemental,Classic
+483-5,"Angle, Valley and Corner Slopes, Blue (The Building Toy)",1966,20.0,Supplemental,Classic
+4837-1,Mini Trains,2008,,Creator,Creator
+4838-1,Mini Vehicles,2008,79.0,Creator,Creator
+4840-1,The Burrow,2010,,Harry Potter,Harry Potter
+4841-1,Hogwarts Express (3rd edition),2010,646.0,Harry Potter,Harry Potter
+4842-1,Hogwarts Castle [Fourth Edition],2010,,Harry Potter,Harry Potter
+4850-1,Spider-Man's First Chase,2003,190.0,Spider-Man,Super Heroes
+485-1,Fire Truck,1976,60.0,Fire,Legoland
+4851-1,The Origins,2003,219.0,Spider-Man,Super Heroes
+485-2,Lighting Brick (System),1966,4.0,Supplemental,Classic
+4852-1,The Final Showdown,2003,,Spider-Man,Super Heroes
+4853-1,Spider-Man's Street Chase,2004,81.0,Spider-Man,Super Heroes
+4854-1,Doc Ock's Bank Robbery,2004,,Spider-Man,Super Heroes
+4855-1,Spider-Man's Train Rescue,2004,298.0,Spider-Man,Super Heroes
+4856-1,Doc Ock's Hideout,2004,485.0,Spider-Man,Super Heroes
+4857-1,Doc Ock's Fusion Lab,2004,,Spider-Man,Super Heroes
+4858-1,Doc Ock's Crime Spree,2004,57.0,Spider-Man 2,4 Juniors
+4860-1,Doc Ock's Cafe Attack,2004,132.0,Spider-Man 2,4 Juniors
+4865-1,The Forbidden Forest,2011,64.0,Harry Potter,Harry Potter
+4866-1,The Knight Bus,2011,,Harry Potter,Harry Potter
+4867-1,Hogwarts,2011,,Harry Potter,Harry Potter
+4868-1,Rahaga Gaaki,2005,28.0,Rahaga,Bionicle
+4869-1,Rahaga Pouks,2005,28.0,Rahaga,Bionicle
+4870-1,Rahaga Kualus,2005,,Rahaga,Bionicle
+487-1,Space Cruiser,1979,172.0,Classic Space,Space
+487-2,1 x 1 Bricks with Numbers (System),1966,44.0,Supplemental,Classic
+4875-1,Groovy Friends Gems,2005,,Clikits,Clikits
+4876-1,Fun Friends Hair Bands,2005,,Clikits,Clikits
+4877-1,Rahaga Norik,2005,,Rahaga,Bionicle
+4878-1,Rahaga Bomonga,2005,,Rahaga,Bionicle
+4879-1,Rahaga Iruini,2005,,Rahaga,Bionicle
+488-1,1 x 1 Bricks with Letters (System),1966,,Supplemental,Classic
+4881-1,Robo Platoon,2005,219.0,Designer Sets,Designer Sets
+4882-1,Speed Wings,2004,162.0,Designer Sets,Designer Sets
+4882-2,Speed Wings - ANA version,2004,,Designer Sets,Designer Sets
+4883-1,Gear Grinders,2005,279.0,Designer Sets,Designer Sets
+4884-1,Wild Hunters,2005,630.0,Designer Sets,Designer Sets
+4886-1,Building Bonanza,2004,667.0,Building,Designer Sets
+4888-1,Ocean Odyssey,2005,,Designer Sets,Designer Sets
+489-1,Traffic Signs,1966,14.0,Supplemental,Classic
+4891-1,Highway Haulers,2006,,Model,Creator
+4892-1,Prehistoric Power,2006,,Creature,Creator
+4893-1,Revvin' Riders,2006,362.0,Riding Cycle,Creator
+4894-1,Mythical Creatures,2006,588.0,Creature,Creator
+4895-1,Motion Power,2006,,Airport,Creator
+4896-1,Roaring Roadsters,2006,,Model,Creator
+4897-1,Police Trike,2008,24.0,Police,Town
+4898-1,Coast Guard Boat,2008,,Coast Guard,Town
+4899-1,Farmer & Tractor,2009,28.0,Farm,Town
+4900-1,Fire Helicopter,2008,30.0,Fire,Town
+490-1,Mobile Crane,1975,,Construction,Legoland
+490-2,Trees and Bushes,1966,,Supplemental,Classic
+4903-1,Lion,2005,,Designer Sets,Designer Sets
+4904-1,Elephant (Life cereal promotion),2005,34.0,Designer Sets,Designer Sets
+4905-1,Giraffe,2005,37.0,Designer Sets,Designer Sets
+4906-1,Helicopter,2005,,Airport,Creator
+4910-1,Hover Scout,1999,40.0,Rock Raiders,Rock Raiders
+491-1,Formula 1 Racer,1977,67.0,Factory,Factory
+4911-1,Designer Set,2005,37.0,Creator,Creator
+491-2,"Shell Station Brick and Sign, 6 Named Beams",1966,,Supplemental,Classic
+4912-1,Police Jet Ski,2005,,Police,Town
+4914-1,Fire Chief's Car,2005,31.0,Fire,Town
+4915-1,Mini Construction,2007,68.0,Construction,Creator
+4916-1,Mini Animals,2007,77.0,Creature,Creator
+4917-1,Mini Robots,2007,,Robot,Creator
+4918-1,Mini Flyers,2007,,Airport,Creator
+4919-1,Blue Tub,2005,1500.0,Basic Set,Creator
+4920-1,Rapid Rider,1999,39.0,Rock Raiders,Rock Raiders
+492-1,Truck & Payloader,1977,59.0,Construction,Legoland
+492-2,Nordic and American Flags,1966,,Supplemental,Classic
+4924-1,Advent Calendar 2004 Creator,2004,,Creator,Seasonal
+4924-10,Advent Calendar 2004 Creator (Day 9) Skiing Elf,2004,16.0,Creator,Seasonal
+4924-11,Advent Calendar 2004 Creator (Day 10) Sledding Santa,2004,,Creator,Seasonal
+4924-12,Advent Calendar 2004 Creator (Day 11) Goose,2004,14.0,Creator,Seasonal
+4924-13,Advent Calendar 2004 Creator (Day 12) Green Present,2004,7.0,Creator,Seasonal
+4924-14,Advent Calendar 2004 Creator (Day 13) Santa Ornament,2004,,Creator,Seasonal
+4924-15,Advent Calendar 2004 Creator (Day 14) Helicopter,2004,13.0,Creator,Seasonal
+4924-16,Advent Calendar 2004 Creator (Day 15) Reindeer,2004,9.0,Creator,Seasonal
+4924-17,Advent Calendar 2004 Creator (Day 16) Elf Girl,2004,,Creator,Seasonal
+4924-18,Advent Calendar 2004 Creator (Day 17) Speedboat,2004,13.0,Creator,Seasonal
+4924-19,Advent Calendar 2004 Creator (Day 18) Racing Car,2004,23.0,Creator,Seasonal
+4924-2,Advent Calendar 2004 Creator (Day 1) Elf Ornament,2004,15.0,Creator,Seasonal
+4924-20,Advent Calendar 2004 Creator (Day 19) Snowman,2004,13.0,Creator,Seasonal
+4924-21,Advent Calendar 2004 Creator (Day 20) Leaf Ornament,2004,18.0,Creator,Seasonal
+4924-22,Advent Calendar 2004 Creator (Day 21) Santa,2004,13.0,Creator,Seasonal
+4924-23,Advent Calendar 2004 Creator (Day 22) Sailing Ship,2004,,Creator,Seasonal
+4924-24,Advent Calendar 2004 Creator (Day 23) Tree,2004,12.0,Creator,Seasonal
+4924-25,Advent Calendar 2004 Creator (Day 24) Air Boat,2004,,Creator,Seasonal
+4924-3,Advent Calendar 2004 Creator (Day 2) Plane,2004,13.0,Creator,Seasonal
+4924-4,Advent Calendar 2004 Creator (Day 3) Parrot,2004,13.0,Creator,Seasonal
+4924-5,Advent Calendar 2004 Creator (Day 4) Robot,2004,19.0,Creator,Seasonal
+4924-6,Advent Calendar 2004 Creator (Day 5) Blue Present,2004,7.0,Creator,Seasonal
+4924-7,Advent Calendar 2004 Creator (Day 6) Ship,2004,19.0,Creator,Seasonal
+4924-8,Advent Calendar 2004 Creator (Day 7) Angel Ornament,2004,,Creator,Seasonal
+4924-9,Advent Calendar 2004 Creator (Day 8) Van,2004,16.0,Creator,Seasonal
+4930-1,Rock Raiders,1999,48.0,Rock Raiders,Rock Raiders
+493-1,Space Command Center (Flatplate version),1979,,Classic Space,Space
+493-2,European Flags,1966,8.0,Supplemental,Classic
+493-3,Space Command Center (Craterplate version),1979,177.0,Classic Space,Space
+4933-1,Street Sweeper,2007,14.0,Traffic,Town
+4936-1,Medic and Patient,2007,,Hospital,Town
+4937-1,Life Guard - Quick Magic Box Promotional,2007,38.0,Coast Guard,Town
+4938-1,Fireman's Car,2007,,Fire,Town
+4939-1,Cool Cars,2007,,Model,Creator
+4940-1,Granite Grinder,1999,109.0,Rock Raiders,Rock Raiders
+494-1,"Gates and Fence, Red (System)",1967,,Supplemental,Classic
+4941-1,Plastic Figure - RASCUS (Nestle Promotional),2005,,Knights Kingdom II,Castle
+494-2,"Gates and Fence, White (The Building Toy)",1967,17.0,Supplemental,Classic
+4942-1,Plastic Figure - Dark Knight (Nestle Promotional),2005,3.0,Knights Kingdom II,Castle
+4943-1,Plastic Figure - Lord VLADEK (Nestle Promotional),2005,3.0,Knights Kingdom II,Castle
+4944-1,Plastic Figure - Sir JAYKO (Nestle Promotional),2005,,Knights Kingdom II,Castle
+4945-1,Plastic Figure - Sir SANTIS (Nestle Promotional),2005,3.0,Knights Kingdom II,Castle
+4946-1,Plastic Figure - Sir DANJU (Nestle Promotional),2005,3.0,Knights Kingdom II,Castle
+4947-1,Yellow and Black Racer,2006,28.0,Tiny Turbos,Racers
+4948-1,Black and Red Racer,2006,22.0,Tiny Turbos,Racers
+4949-1,Blue and Yellow Racer,2006,24.0,Tiny Turbos,Racers
+4950-1,Loader - Dozer,1999,,Rock Raiders,Rock Raiders
+4953-1,Fast Flyers,2007,305.0,Airport,Creator
+4954-1,Model Town House,2007,,Building,Creator
+4955-1,Big Rig,2007,550.0,Traffic,Creator
+4956-1,House,2007,731.0,Building,Creator
+4957-1,Ferris Wheel,2007,,Recreation,Creator
+4958-1,Monster Dino,2007,,Creature,Creator
+4959-1,The Loader-Dozer,1999,,Rock Raiders,Rock Raiders
+4962-1,Baby Zoo,2006,,Duplo,Duplo
+4962-2,Baby Zoo (re-release),2014,,Duplo,Duplo
+4963-1,Police Patrol,2006,,Duplo,Duplo
+4966-1,Doll's House,2006,90.0,Duplo,Duplo
+4970-1,Chrome Crusher,1999,168.0,Rock Raiders,Rock Raiders
+497-1,Galaxy Explorer,1979,,Classic Space,Space
+4980-1,Tunnel Transport,1999,351.0,Rock Raiders,Rock Raiders
+4981-1,The Chum Bucket,2007,336.0,SpongeBob SquarePants,SpongeBob SquarePants
+4982-1,Mrs. Puff's Boating School,2007,,SpongeBob SquarePants,SpongeBob SquarePants
+4986-1,Duplo Digger,2007,,Duplo,Duplo
+4987-1,Gravel Pit,2007,,Duplo,Duplo
+4990-1,Rock Raiders HQ,1999,414.0,Rock Raiders,Rock Raiders
+4991-1,Police Helicopter,2007,,Police,Town
+4992-1,Fire Boat,2007,,Fire,Town
+4993-1,Cool Convertible,2008,648.0,Traffic,Creator
+4994-1,Fierce Creatures,2008,193.0,Creature,Creator
+4995-1,Cargo Copter,2008,272.0,Cargo,Creator
+4996-1,Beach House,2008,,Building,Creator
+4997-1,Transport Ferry,2008,,Harbor,Creator
+4998-1,Stegosaurus,2008,730.0,Creature,Creator
+4999-1,Vestas Windmill,2008,809.0,Town,Town
+5000021-1,Pirates of the Caribbean Classic Collection,2011,2.0,Pirates of the Caribbean,Pirates of the Caribbean
+5000022-1,Hulk,2012,4.0,Avengers,Super Heroes
+5000023-1,"LEGO Store Grand Re-Opening Exclusive Set (Colorado Mills, Denver, CO)",2012,,LEGO Brand Store,LEGO Brand Store
+5000027-1,Pirates of the Caribbean 4 Collection,2011,2.0,Pirates of the Caribbean,Pirates of the Caribbean
+5000030-1,Booster Pack Kendo Jay,2012,31.0,Ninjago,Ninjago
+5000062-1,Darth Maul,2012,,Minifig Pack,Star Wars
+5000063-1,TC-14,2012,3.0,Minifig Pack,Star Wars
+5000067-1,Star Wars Sith Kit,2011,2.0,Star Wars,Star Wars
+5000068-1,Harry Potter Classic Kit,2011,3.0,Harry Potter,Harry Potter
+5000-1,Replacement 4.5V Motor,1987,1.0,Service Packs,Service Packs
+5000143-1,Star Wars with Boba Fett Minifigure Watch,2011,0.0,Gear,Gear
+5000196304-1,The Hobbit - The Battle of the Five Armies (Blu-ray with Minifigures),2015,,The Battle of the Five Armies,The Hobbit and Lord of the Rings
+5000202-1,Elrond,2012,,The Lord of the Rings,The Hobbit and Lord of the Rings
+5000214-1,Star Wars Character Encyclopedia,2011,,Books,Books
+5000215-1,Harry Potter: Building the Magical World,2011,4.0,Books,Books
+5000245-1,Stephanie,2012,5.0,Friends,Friends
+5000249-1,LEGO® Star Wars™ Boba Fett™ Minifigure Clock,2012,,Gear,Gear
+5000281-1,Chase McCain,2012,,Police,Town
+50003-1,Batman,2013,252.0,Game,Gear
+50004-1,Story Mixer,2013,425.0,Game,Gear
+5000437-1,Vintage Minifigure Collection Vol. 1 - 2012 Edition,2012,21.0,Collectible Minifigures,Collectible Minifigures
+5000438-1,Vintage Minifigure Collection Vol. 2 - 2012 Edition,2012,22.0,Collectible Minifigures,Collectible Minifigures
+5000439-1,Vintage Minifigure Collection Vol. 3 - 2012 Edition,2012,19.0,Collectible Minifigures,Collectible Minifigures
+5000440-1,Vintage Minifigure Collection Vol. 4 - 2012 Edition,2012,,Collectible Minifigures,Collectible Minifigures
+5000463-1,8 stud Red Storage Brick,2014,0.0,Gear,Gear
+50006-1,Legends Of Chima,2013,211.0,Game,Gear
+5000642-1,Star Wars poster,2012,0.0,Gear,Gear
+5000644-1,Monster Fighters Promotional Pack,2012,,Monster Fighters,Monster Fighters
+5000646-1,City poster,2012,0.0,Gear,Gear
+5000672-1,The LEGO® Ideas Book,2011,0.0,Books,Books
+5000728-1,DC Universe Super Heroes Collection,2012,,Constraction,Super Heroes
+5001096-1,Batman™ 2: DC Super Heroes - Xbox 360,2012,,Gear,Gear
+5001-1,Wheel Bushes for 4.5V Basic Motor,1987,,Service Packs,Service Packs
+50011-1,The Battle for Helms Deep,2013,338.0,Game,Gear
+5001121-1,BR LEGO Minifigure,2013,,Other,Other
+5001130-1,The Battle of Helm's Deep Collection,2012,2.0,The Two Towers,The Hobbit and Lord of the Rings
+5001132-1,The Lord of the Rings Collection,2012,7.0,The Lord of the Rings,The Hobbit and Lord of the Rings
+5001133-1,Monster Fighters Collection,2012,7.0,Monster Fighters,Monster Fighters
+5001134-1,Mining Collection,2012,5.0,Construction,Town
+5001136-1,Buildable Galaxy Collection,2012,3.0,Planet Series 1,Star Wars
+5001137-1,Battle Pack Collection,2012,,Star Wars,Star Wars
+5001159-1,Darth Vader Light Key Chain,2012,0.0,Key Chain,Gear
+5001160-1,Stormtrooper Light Key Chain,2012,0.0,Key Chain,Gear
+5001252-1,2013 Calendar,2012,,Gear,Gear
+5001266-1,8 stud Blue Storage Brick,2014,0.0,Gear,Gear
+5001267-1,8 stud Yellow Storage Brick,2014,,Gear,Gear
+5001270-1,MBA Kits 2 - 3,2012,2.0,Master Building Academy,Master Building Academy
+5001273-1,MBA Kits 4 - 6,2012,3.0,Master Building Academy,Master Building Academy
+5001307-1,Buildable Galaxy Collection II,2012,,Planet Series 2,Star Wars
+5001308-1,The Old Republic Collection,2012,2.0,Star Wars,Star Wars
+5001309-1,Return of the Jedi Collection,2012,2.0,Star Wars,Star Wars
+5001357-1,Ninjago Kendo Cole Kids' Watch,2012,,Gear,Gear
+5001370-1,LEGO® Time-Teacher Minifigure Watch & Clock,2012,,Gear,Gear
+5001371-1,LEGO® Time-Teacher Girl Minifigure Watch & Clock,2012,0.0,Gear,Gear
+5001377-1,Lunch Box,2012,,Gear,Gear
+5001380-1,Mini box pink,2012,0.0,Gear,Gear
+5001382-1,Mini box red,2012,0.0,Gear,Gear
+5001383-1,4-stud Blue Storage Brick,2012,,Gear,Gear
+5001384-1,4-stud Green Storage Brick,2012,0.0,Gear,Gear
+5001385-1,4-stud Red Storage Brick,2012,,Gear,Gear
+5001386-1,8-stud Blue Storage Brick,2012,,Gear,Gear
+5001387-1,8-stud Green Storage Brick,2012,0.0,Gear,Gear
+5001388-1,Red Storage Brick,2012,,Gear,Gear
+5001621-1,Han Solo (Hoth),2013,2.0,Star Wars,Star Wars
+5001622-1,LEGO Store Employee,2013,5.0,LEGO Brand Store,LEGO Brand Store
+5001623-1,Jor-El,2013,,Superman,Super Heroes
+5001709-1,Clone Trooper Lieutenant,2013,4.0,Star Wars Clone Wars,Star Wars
+5001925-1,Horizon Express Kit,2013,,RC Train,Train
+5002041-1,The LEGO Movie Accessory Pack,2014,50.0,The LEGO Movie,The LEGO Movie
+5002045-1,Pyjamas Emmet,2014,4.0,The LEGO Movie,The LEGO Movie
+5002-1,Rubber Chain Tracks,1987,2.0,Service Packs,Service Packs
+5002112-1,Bracelets,2014,18.0,Friends,Friends
+5002113-1,Beach Hammock,2014,,Friends,Friends
+5002122-1,TC-4,2014,,Minifig Pack,Star Wars
+5002123-1,Darth Revan,2014,,Star Wars,Star Wars
+5002125-1,Electro,2015,5.0,Spider-Man,Super Heroes
+5002126-1,Martian Manhunter,2014,,Justice League,Super Heroes
+5002127-1,Flashback Shredder,2014,6.0,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+5002136-1,Arctic Accessory Set,2014,25.0,Arctic,Town
+5002145-1,Rocket Raccoon,2014,,Guardians of the Galaxy,Super Heroes
+5002146-1,Minifigure Collection 2013 Vol 1 of 3,2013,,Collectible Minifigures,Collectible Minifigures
+5002201-1,Friends Brick Light (Pink),2013,0.0,Gear,Gear
+5002203-1,Radio DJ Robot,2014,4.0,The LEGO Movie,The LEGO Movie
+5002204-1,Western Emmet,2014,6.0,The LEGO Movie,The LEGO Movie
+5002207-1,LEGO® Classic Minifigure Link Watch,2013,0.0,Gear,Gear
+5002210-1,C-3PO and R2-D2 Minifigure Watch,2013,0.0,Gear,Gear
+5002212-1,LEGO® Star Wars™ Chewbacca™ Minifigure Watch,2013,0.0,Gear,Gear
+5002422-1,The Joker Minifigure Clock,2013,0.0,Gear,Gear
+5002423-1,LEGO® DC Universe Super Heroes Batman™ Minifigure Clock,2013,0.0,Gear,Gear
+5002424-1,LEGO® DC Universe Super Heroes Superman™ Minifigure Clock,2013,0.0,Gear,Gear
+5002467-1,Friends 2x4 Key Light,2013,0.0,Key Chain,Gear
+5002506-1,LEGO® Minifigures: Character Encyclopedia,2013,0.0,Books,Books
+5002518-1,LEGO® Belkin Brand iPhone 5 Case Pink/Violet,2013,0.0,Gear,Gear
+5002773-1,Lego Brickmaster - The Quest for CHI,2013,187.0,Books,Books
+5002780-1,LEGO® Play Book,2013,0.0,Books,Books
+5002792-1,LEGO® Marvel Super Heroes PC DVD Video Game,2013,,Game,Gear
+5002793-1,LEGO® Marvel Super Heroes PS VITA Video Game,2013,,Game,Gear
+5002812-1,D2C Minifigure Retro Set 2014,2014,,Space,Space
+5002813-1,Train Ornament,2014,,Creator,Seasonal
+5002887-1,The LEGO® Book,2009,0.0,Books,Books
+5002888-1,The LEGO® Minifigure: Year by Year,2013,,Books,Books
+5002914-1,THE LEGO® MOVIE™ Emmet Key Light,2014,,Key Chain,Gear
+5002915-1,Batman Key Light,2014,0.0,Key Chain,Gear
+5002916-1,THE LEGO® MOVIE™ Unikitty Key Light,2014,,Key Chain,Gear
+5002919-1, Scenery and Dagger Trap polybag,2015,,Ninjago,Ninjago
+5002928-1,Party Polybag,2015,11.0,Friends,Friends
+5002929-1,Friends Interior Design Kit,2015,28.0,Friends,Friends
+5002930-1,Hair Accessories,2015,,Friends,Friends
+5002931-1,Disco Dance Floor,2015,,Friends,Friends
+5002938-1,Stormtrooper Sergeant,2015,,Star Wars,Star Wars
+5002939-1,The Phantom,2015,23.0,Star Wars Rebels,Star Wars
+5002941-1,Bionicle Hero Pack,2015,6.0,Bionicle,Bionicle
+5002942-1,Bionicle Villain Pack,2015,10.0,Bionicle,Bionicle
+5002943-1,Winter Soldier,2015,,Avengers,Super Heroes
+5002946-1,Silver Centurion,2016,0.0,Avengers,Super Heroes
+5002947-1,Admiral Yularen,2015,4.0,Star Wars,Star Wars
+5003022-1,THE LEGO® MOVIE™ Bad Cop Minifigure Alarm Clock,2014,0.0,Gear,Gear
+5003023-1,THE LEGO® MOVIE™ Bad Cop Minifigure Link Watch,2014,,Gear,Gear
+5003024-1,THE LEGO® MOVIE™ Lucy/Wyldstyle Minifigure Link Watch,2014,0.0,Gear,Gear
+5003025-1,THE LEGO® MOVIE™ Emmet Minifigure Link Watch,2014,,Gear,Gear
+5003026-1,THE LEGO® MOVIE™ Lucy/Wyldstyle Minifigure Alarm Clock,2014,0.0,Gear,Gear
+5003027-1,THE LEGO® MOVIE™ Emmet Minifigure Alarm Clock,2014,0.0,Gear,Gear
+5003082-1,Pirates Adventure,2015,28.0,Pirates III,Pirates
+5003083-1,Christmas Tree Ornament,2015,,Promotional,Promotional
+5003084-1,The Hulk,2015,,Avengers,Super Heroes
+5003096-1,LEGO® City Fire Collection: 60004 and 850618,2014,,Fire,Town
+5003-1,"Light Bricks, 4.5V",1987,,Service Packs,Service Packs
+5003246-1,EV3 Track Rubber Elements,2015,30.0,Educational and Dacta,Educational and Dacta
+5003545-1,THE LEGO® MOVIE™ PS4 Video Game,2014,0.0,Game,Gear
+5003559-1,THE LEGO® MOVIE™ Xbox One Video Game,2014,0.0,Game,Gear
+5003561-1,Legends of Chima Lunch Set,2014,0.0,Gear,Gear
+5003562-1,Legends of Chima Sorting System,2014,0.0,Gear,Gear
+5003563-1,Friends Lunch Set,2014,,Gear,Gear
+5003564-1,Friends Sorting System,2014,0.0,Gear,Gear
+5003565-1, 1 stud Blue Storage Brick,2014,,Gear,Gear
+5003566-1,1 stud Red Storage Brick,2014,0.0,Gear,Gear
+5003568-1,2 stud Blue Storage Brick,2014,0.0,Gear,Gear
+5003569-1,2 stud Red Storage Brick,2014,0.0,Gear,Gear
+5003570-1,2 stud Yellow Storage Brick,2014,0.0,Gear,Gear
+5003574-1,4 stud Blue Storage Brick,2014,0.0,Gear,Gear
+5003575-1,4 stud Red Storage Brick,2014,0.0,Gear,Gear
+5003576-1,4 stud Yellow Storage Brick,2014,0.0,Gear,Gear
+5003578-1,Legends of Chima The Lion the Crocodile and the Power of CHI!,2014,,Gear,Gear
+5003579-1,Batman Head Lamp,2014,0.0,Gear,Gear
+5003580-1,Catwoman Key Light,2014,,Key Chain,Gear
+5003582-1,Superman Head Lamp,2014,,Gear,Gear
+5003583-1,LEGO® Star Wars™ Darth Vader™ Head Lamp,2014,0.0,Gear,Gear
+5003584-1,Bad Cop Key Light,2014,0.0,Key Chain,Gear
+5003586-1,THE LEGO MOVIE President Business Key Light,2014,,Key Chain,Gear
+5004064-1,LEGO® Super Heroes DC Universe™ Batman™ Minifigure Link Watch,2014,0.0,Gear,Gear
+5004065-1,LEGO® Super Heroes DC Universe™ Superman™ Minifigure Link Watch,2014,,Gear,Gear
+5004066-1,The LEGO Movie The Original Motion Picture Soundtrack,2014,,Gear,Gear
+5004067-1,The LEGO Movie Lunch Set,2014,,Gear,Gear
+5004076-1,Minifigure Gift Set (Target Exclusive),2014,20.0,Promotional,Promotional
+5004077-1,2015 Target Minifigure Gift Set,2015,,Promotional,Promotional
+5004-1,Keys for Windup Motor,1987,2.0,Service Packs,Service Packs
+5004102-1,THE LEGO® MOVIE™ The Essential Guide,2014,,Books,Books
+5004103-1,LEGO® Brickmaster: Star Wars™ Crystal,2013,1.0,Books,Books
+5004115-1,LEGO® Brick Black Adult Watch,2014,0.0,Gear,Gear
+5004116-1,LEGO® Friends Stephanie Watch with Mini-Doll,2014,,Gear,Gear
+5004117-1,LEGO® Multi-stud Red Adult Tachymeter Watch,2014,,Gear,Gear
+5004118-1,LEGO® NINJAGO™ Kai Minifigure Clock,2014,0.0,Gear,Gear
+5004119-1,LEGO® Brick White Adult Watch,2014,,Gear,Gear
+5004120-1,LEGO® Star Wars™: The Yoda Chronicles,2014,,Gear,Gear
+5004127-1,LEGO® NINJAGO™ Kai Minifigure Link Watch,2014,,Gear,Gear
+5004128-1,LEGO® Happiness Yellow Adult Watch,2014,0.0,Gear,Gear
+5004129-1,LEGO® NINJAGO™ Zane Minifigure Clock,2014,,Gear,Gear
+5004130-1,LEGO® Friends Olivia Watch with Mini-Doll,2014,0.0,Gear,Gear
+5004131-1,LEGO® NINJAGO™ Zane Minifigure Link Watch,2014,0.0,Gear,Gear
+5004195-1,LEGO® Star Wars™: The Visual Dictionary (Updated and Expanded),2014,4.0,Books,Books
+5004196-1,LEGO® Star Wars™: Choose Your Side! Ultimate Sticker Collection,2014,0.0,Gear,Gear
+5004197-1,Friends Character Encyclopedia,2014,6.0,Books,Books
+5004237-1,THE LEGO® MOVIE™: Blu-ray Combo Pack (Blu-ray + DVD + UltraViolet Digital HD),2014,0.0,Gear,Gear
+5004238-1,THE LEGO MOVIE Everything Is Awesome Edition,2014,,Gear,Gear
+5004248-1,LEGO® Friends Andrea Key Light,2014,0.0,Key Chain,Gear
+5004249-1,LEGO® Friends Emma Key Light,2014,0.0,Key Chain,Gear
+5004250-1,LEGO® Friends Mia Key Light,2014,,Key Chain,Gear
+5004251-1,LEGO® Friends Olivia Key Light,2014,,Key Chain,Gear
+5004252-1,LEGO® Friends Stephanie Key Light,2014,,Key Chain,Gear
+5004259-1,Holiday Ornament Collection,2014,,Creator,Seasonal
+5004260-1,"Friends Animal Collection 3 in 1 (41044, 41045, 41046)",2014,3.0,Animals,Friends
+5004261-1,"The Hobbit Ultimate Kit (79015, 79016, 79017, 79018)",2014,,The Battle of the Five Armies,The Hobbit and Lord of the Rings
+5004262-1,LEGO 1x2 Brick Key Light (Blue),2014,,Key Chain,Gear
+5004263-1,LEGO 1x2 Brick Key Light (Green),2014,0.0,Key Chain,Gear
+5004264-1,LEGO 1x2 Brick Key Light (Red),2014,0.0,Key Chain,Gear
+5004266-1,LEGO Mini Box (Yellow),2014,0.0,Gear,Gear
+5004267-1,LEGO 1 stud Red Storage Brick,2014,,Gear,Gear
+5004268-1,LEGO 1 stud Blue Storage Brick,2014,0.0,Gear,Gear
+5004273-1,LEGO Friends Storage Brick 2 Bright Purple,2014,,Gear,Gear
+5004274-1,LEGO Friends Storage Brick 1 - Medium Lilac,2014,,Gear,Gear
+5004279-1,LEGO® 2-stud Red Storage Brick,2015,0.0,Gear,Gear
+5004280-1,LEGO 2 stud Blue Storage Brick,2014,,Gear,Gear
+5004281-1,Angry Kitty Key Light,2014,,Key Chain,Gear
+5004282-1,THE LEGO MOVIE Astro Kitty Key Light,2014,0.0,Key Chain,Gear
+5004283-1,Bizniz Kitty Key Light,2014,0.0,Key Chain,Gear
+5004284-1,THE LEGO® MOVIE™ Queasy Kitty Key Light,2014,,Key Chain,Gear
+5004363-1,Brick USB Flash Drive,2015,,Gear,Gear
+5004388-1,Nexo Knights Intro Pack,2016,6.0,Nexo Knights,Nexo Knights
+5004389-1,Battle Station,2016,8.0,Nexo Knights,Nexo Knights
+5004404-1,Police Chase,2016,,City,Town
+5004406-1,First Order General,2016,,Star Wars Episode 7,Star Wars
+5004408-1,Rebel A-wing Pilot,2016,,Star Wars Rebels,Star Wars
+5004409-1,Bionicle 2016 Accessory Pack,2016,5.0,Bionicle,Bionicle
+5004419-1,Classic Knights Minifigure,2016,,Monthly Mini Model Build,LEGO Brand Store
+5004420-1,Toy Soldier,2016,,Christmas,Seasonal
+5004421-1,Musicians Minifigure collection,2016,17.0,Promotional,Promotional
+5004468-1,Easter Minifigure,2016,4.0,Easter,Seasonal
+5004549-1,LEGO MIXEL COLLECTION 4,2015,9.0,Series 4,Mixels
+5004550-1,Speed Champions Collection,2015,4.0,Speed Champions,Speed Champions
+5004551-1,LEGO® MIXELS™ Glowkies,2015,3.0,Series 4,Mixels
+5004552-1,Super Heroes Avengers Collection,2015,6.0,Avengers,Super Heroes
+5004553-1,LEGO MIXELS INFERNITES,2015,3.0,Series 4,Mixels
+5004554-1,Ultra Agents Collection,2015,2.0,Ultra Agents,Agents
+5004556-1,LEGO® MIXELS™ Orbitons,2015,3.0,Series 4,Mixels
+5004557-1,Pirates Collection,2015,,Pirates III,Pirates
+5004558-1,Pirates Collection 2,2015,2.0,Pirates III,Pirates
+5004559-1,Speed Champions Collection 2,2015,2.0,Speed Champions,Speed Champions
+5004573-1,Athletes Minifigure collection,2016,,Promotional,Promotional
+5004574-1,Cops & Robbers Minifigure collection,2016,,Promotional,Promotional
+5004590-1,Bat Pod,2015,338.0,Batman,Super Heroes
+5004600-1,Wonder Woman Minifigure Alarm,2015,0.0,Gear,Gear
+5004601-1,Wonder Woman Watch,2015,,Gear,Gear
+5004602-1,Batman Minifigure Link Watch,2015,0.0,Gear,Gear
+5004603-1,Superman Minifigure Link Watch,2015,0.0,Gear,Gear
+5004604-1,Classic Minifigure Link Watch,2015,0.0,Gear,Gear
+5004605-1,Boba Fett Minifigure Watch,2015,0.0,Gear,Gear
+5004606-1,Darth Maul Watch,2015,,Gear,Gear
+5004607-1,Darth Vader Watch,2015,,Gear,Gear
+5004608-1,Luke Skywalker Watch,2015,0.0,Gear,Gear
+5004609-1,Stormtrooper Watch,2015,0.0,Gear,Gear
+5004610-1,Yoda Watch,2015,,Gear,Gear
+5004611-1,Emmet Minifigure Watch,2015,0.0,Gear,Gear
+5004612-1,Lucy Wyldstyle Minifigure Link Watch,2016,0.0,Gear,Gear
+5004750-1,Kai Key Light,2015,,Key Chain,Gear
+5004751-1,Wonder Woman Key Light,2015,0.0,Key Chain,Gear
+5004752-1,Boba Fett Key Light,2015,0.0,Key Chain,Gear
+5004796-1,Jay Key Light,2015,0.0,Key Chain,Gear
+5004798-1,LEGO Star Wars: The Dark Side,2014,4.0,Books,Books
+5004799-1,LEGO® Architecture: The Visual Guide,2014,0.0,Books,Books
+5004838-1,WeDo 2.0 Add-On Power Pack,2016,2.0,WeDo,Educational and Dacta
+5004853-1,LEGO Star Wars Character Encyclopedia: Updated and Expanded,2015,6.0,Books,Books
+5004854-1,LEGO® Star Wars in 100 scenes,2015,0.0,Books,Books
+5004868-1,LEGO® Mixels™ Munchos,2015,3.0,Series 6,Mixels
+5004869-1,LEGO® Mixels™ Glorp Corp,2015,3.0,Series 6,Mixels
+5004870-1,LEGO® Mixels™ Weldos,2015,4.0,Series 6,Mixels
+5004928-1,Kiss Kiss Tuxedo Batman,2017,1.0,Key Chain,Gear
+5004929-1,Batman Battle Pod,2017,27.0,Batman,Super Heroes
+5004930-1,Accessory pack,2017,,Batman,Super Heroes
+5004932,LEGO My Travel Companion,2017,,LEGO Exclusive,LEGO Exclusive
+5004936-1,Iconic Cave,2017,,Collectible Minifigures,Collectible Minifigures
+5005-1,Battery Box 4.5V,1987,1.0,Service Packs,Service Packs
+5005156-1,Seasonal Gingerbread Man,2016,,Promotional,Promotional
+5006-1,Replacement 2-Piece Battery Motor Housing,1987,2.0,Service Packs,Service Packs
+5007-1,Basic Motor 4.5V,1987,1.0,Service Packs,Service Packs
+5008-1,Brick Separator,1990,,Service Packs,Service Packs
+5009-1,"Building Plate 16 x 32, Yellow",1990,1.0,Service Packs,Service Packs
+50-1,Universal Building Set,1976,390.0,Basic Set,Universal Building Set
+5010-1,"Building Plate 16 x 32, Green",1990,1.0,Service Packs,Service Packs
+5011-1,9V Basic Motor,1992,1.0,Service Packs,Service Packs
+5012-1,Soccer Player with Goal,2003,11.0,Soccer,Sports
+501-3,JUMBO Pull Toy,1966,,Jumbo Bricks,Classic
+5013-1,Basketball,2003,25.0,Basketball,Sports
+5014-1,Slammer,2003,28.0,Hockey,Sports
+5015-1,Skateboard Bill,2003,17.0,Gravity Games,Sports
+5016-1,Basketball Promotional Set,2003,17.0,Basketball,Sports
+5017-1,Hockey Promotional Set,2003,36.0,Hockey,Sports
+5018-1,Gravity Games Promotional Set,2003,17.0,Gravity Games,Sports
+502-2,Pre-School Medium Set,1968,,Jumbo Bricks,Classic
+5030-1,Signs for Use with Lighting Bricks 9V,1992,,Service Packs,Service Packs
+503-1,Basic Building Set,1987,39.0,Basic,Universal Building Set
+5031-1,"Propellers, Wheels, Rotor Unit",1987,,Service Packs,Service Packs
+503-2,Pre-School Large Set,1968,16.0,Jumbo Bricks,Classic
+5032-1,Jack,1987,,Service Packs,Service Packs
+5033-1,1x4 Lighing Brick and 4 Colour Globes,1987,,Service Packs,Service Packs
+5034-1,1x2 Lighting Brick and 4 Colour Globes,1987,5.0,Service Packs,Service Packs
+5035-1,"Town Siren, 2 x 2",1987,,Service Packs,Service Packs
+5036-1,"Space Siren, 2 x 2",1987,1.0,Service Packs,Service Packs
+5037-1,Current Carrying Plates,1988,9.0,Service Packs,Service Packs
+5038-1,9V Battery Box,1988,1.0,Service Packs,Service Packs
+5039-1,Monorail Stop / Reverse Switch,1987,,Service Packs,Service Packs
+5040-1,Monorail 9V Motor,1988,,Service Packs,Service Packs
+504-1,Basic Building Set,1985,41.0,Basic,Universal Building Set
+5041-1,Wire for 9V (9cm),1988,,Technic,Service Packs
+5042-1,"Space Light and Radar Plates, Disks, Cones",1991,50.0,Space,Service Packs
+5043-1,"Mini Antennas, Control Sticks and Antennas",1991,26.0,Service Packs,Service Packs
+5044-1,"Plateau, Approach for Harbour",1991,3.0,Service Packs,Service Packs
+5045-1,"Magnets, Magnet Holders",1991,12.0,Service Packs,Service Packs
+5046-1,"Hub, Tire and Wheel Suspension",1991,10.0,Service Packs,Service Packs
+5047-1,"Hinges, Couplings, Turntables",1993,,Service Packs,Service Packs
+5048-1,Town Accessories,1993,36.0,Town,Service Packs
+5049-1,Transparent Windows and Bricks,1993,,Service Packs,Service Packs
+5050-1,Plane Accessories,1993,,Service Packs,Service Packs
+5051-1,"Windscreens, Seats, Steering Wheel",1993,,Service Packs,Service Packs
+5052-1,"Antennas, Control Sticks",1993,39.0,Service Packs,Service Packs
+5053-1,"Small Plates with Tool Holders, Disks, Cones",1993,,Service Packs,Service Packs
+5054-1,Decorated Elements,1993,28.0,Service Packs,Service Packs
+5055-1,Magnets and Magnet Holders,1993,12.0,Service Packs,Service Packs
+5056-1,Space Elements,1993,37.0,Space,Service Packs
+5057-1,Space Accessories,1993,27.0,Space,Service Packs
+5058-1,Pirate Accessories,1993,,Pirates,Service Packs
+5059-1,Castle Equipment,1993,34.0,Castle,Service Packs
+5060-1,Cannons,1993,,Service Packs,Service Packs
+5061-1,"Connector Leads, 75cm and 25cm",1987,6.0,Train,Service Packs
+5062-1,Shunting Trip Posts and Signal,1987,,Train,Service Packs
+5063-1,Power Supply Rail,1987,,Train,Service Packs
+5064-1,Locomotive Wheels,1987,8.0,Train,Service Packs
+5065-1,3m Wiring and Two-Way Plug,1987,11.0,Service Packs,Service Packs
+5066-1,Magnetic Train Coupler,1987,6.0,Train,Service Packs
+5067-1,"Rubber Wheel Rims, Grey",1987,8.0,Train,Service Packs
+5068-1,Motor Frame and Coupling,1987,5.0,Train,Service Packs
+5069-1,12V Lighting Bricks,1987,,Service Packs,Service Packs
+5070-1,"Wheel Sets, Black",1987,2.0,Train,Service Packs
+507-1,Basic Building Set,1987,60.0,Basic,Universal Building Set
+5071-1,"Wheel Sets, Large, Red",1987,2.0,Train,Service Packs
+5072-1,"Wagonplate, 6 x 28 Studs",1987,,Train,Service Packs
+5073-1,Light Transmitting Elements for Train Sets,1987,,Train,Service Packs
+5074-1,"Bogie Plates, Black",1987,2.0,Train,Service Packs
+5075-1,"Battery Tender, Red",1987,,Train,Service Packs
+5076-1,Plates 2 x 8,1989,,Service Packs,Service Packs
+5077-1,Sliding Gates and Rails,1987,,Service Packs,Service Packs
+5078-1,Crane Accessories,1993,15.0,Service Packs,Service Packs
+5079-1,Change-Over Unit,1989,1.0,Train,Service Packs
+50799-1,Knights' Kingdom Adventure Box,2005,3.0,Knights Kingdom II,Castle
+5080-1,Remote Control for Switch,1989,,Train,Service Packs
+508-1,Basic Building Set,1985,,Basic,Universal Building Set
+5081-1,Remote Control for Signal,1989,,Train,Service Packs
+5082-1,Flash Light Unit,1989,,Train,Service Packs
+5083-1,Remote Control for Crossing,1989,1.0,Train,Service Packs
+5084-1,12V Light Brick,1989,1.0,Service Packs,Service Packs
+5085-1,Power Supply Rail with Socket,1989,,Train,Service Packs
+5086-1,12V Motor (old),1993,1.0,Service Packs,Service Packs
+509-1,38 Slimbricks Assorted Sizes,1965,228.0,Supplemental,Classic
+5099-1,Pneumatic Valves,1997,,Technic,Service Packs
+5100-1,TECHNIC Battery Box,1987,1.0,Technic,Service Packs
+510-1,Basic Building Set,1985,102.0,Basic,Universal Building Set
+5101-1,4.5v TECHNIC Motor,1987,1.0,Technic,Service Packs
+510-2,Tiles,1965,,Supplemental,Classic
+5102-1,"Pneumatic Tube, 60 cm and 100 cm",1987,,Technic,Service Packs
+5103-1,"Pneumatic Spring Cylinder, 48 mm",1987,1.0,Technic,Service Packs
+5104-1,"Pneumatic Cylinder, 48 mm",1987,1.0,Technic,Service Packs
+5105-1,"Pneumatic Cylinder, 64 mm",1987,,Technic,Service Packs
+5106-1,Two-Way Valve and Non-Return Valve,1987,2.0,Technic,Service Packs
+5107-1,Pneumatic Pump 2 Cylinder,1991,,Technic,Service Packs
+5108-1,Pneumatic Piston 2 Cylinder,1989,,Technic,Service Packs
+5109-1,Pneumatic Tubes and Pieces,1989,6.0,Technic,Service Packs
+5110-1,Pneumatic Value Pack,1997,0.0,Technic,Service Packs
+5110-2,"Cross Axles, Nuts",1990,,Technic,Service Packs
+5111-1,"9V Motor Wire, 128cm",1990,1.0,Technic,Service Packs
+5112-1,"Lifting Grabs, Crane Hook",1987,,Technic,Service Packs
+5113-1,TECHNIC Airscrew,1987,1.0,Technic,Service Packs
+5114-1,Extra 9 Volt Motor,1991,1.0,Technic,Service Packs
+5115-1,9V Battery Box,1992,,Technic,Service Packs
+5116-1,Pneumatic Cylinder 1.25,1997,,Technic,Service Packs
+5117-1,Compressor Pump,1997,,Technic,Service Packs
+5118-1,TECHNIC Cables,1995,35.0,Technic,Service Packs
+5119-1,Micro Motor,1996,4.0,Technic,Service Packs
+5120-1,Polarity Switch,1993,,Technic,Service Packs
+5121-1,Decorated Elements,1994,30.0,Service Packs,Service Packs
+5122-1,Pirate Accessories,1994,,Pirates,Service Packs
+5124-1,Wheels and Bearings,1994,28.0,Service Packs,Service Packs
+5125-1,Spaceport Accessories,1995,,Town,Service Packs
+5126-1,Crane and Digger Accessories,1995,18.0,Service Packs,Service Packs
+5127-1,Antennas and Control Sticks,1995,,Service Packs,Service Packs
+5128-1,"Transparent Plates, Bricks, Toolholders",1996,80.0,Service Packs,Service Packs
+5129-1,Space Accessories,1996,22.0,Space,Service Packs
+5130-1,"Windows, Seats, Steering Wheels",1996,14.0,Service Packs,Service Packs
+5131-1,"Hinges, Couplings, Turntables",1996,30.0,Service Packs,Service Packs
+5132-1,"Wheels, Bearings and Suspension",1995,,Service Packs,Service Packs
+5133-1,Town Accessories,1996,47.0,Town,Service Packs
+5134-1,Cannons and Wheels,1995,28.0,Service Packs,Service Packs
+5135-1,Castle Accessories,1995,34.0,Castle,Service Packs
+5136-1,Belville Accessories,1995,,Belville,Service Packs
+5137-1,Town Accessories,1994,44.0,Town,Service Packs
+5138-1,Castle Accessories,1994,39.0,Castle,Service Packs
+5139-1,Cannons with Wheels,1994,28.0,Service Packs,Service Packs
+5140-1,"Bricks, Red",1987,62.0,Service Packs,Service Packs
+5141-1,"Bricks, Blue",1987,,Service Packs,Service Packs
+5142-1,"Bricks, White",1987,62.0,Service Packs,Service Packs
+5143-1,"Bricks, Yellow",1987,62.0,Service Packs,Service Packs
+5144-1,"Bricks, Black",1987,62.0,Service Packs,Service Packs
+5145-1,"Bricks, Gray",1987,,Service Packs,Service Packs
+5146-1,"Plates, Blue",1987,42.0,Service Packs,Service Packs
+5147-1,"Plates, Red",1987,42.0,Service Packs,Service Packs
+5148-1,Wheels,1987,,Service Packs,Service Packs
+5149-1,Doors and Windows,1987,38.0,Service Packs,Service Packs
+5150-1,Pirate Elements,1990,35.0,Pirates,Service Packs
+515-1,Basic Building Set,1990,115.0,Basic,Universal Building Set
+5151-1,"Roof Bricks, Red, 45 Degrees",1987,59.0,Service Packs,Service Packs
+5152-1,"Roof Bricks, Red, 25 Degrees",1987,60.0,Service Packs,Service Packs
+5153-1,Plane Accessories,1991,23.0,Service Packs,Service Packs
+5154-1,Decorated Elements,1991,,Service Packs,Service Packs
+5155-1,Space Jets and Wings,1991,19.0,Service Packs,Service Packs
+5156-1,Transparent Bricks,1991,,Service Packs,Service Packs
+5157-1,Town and Space Equipment,1991,32.0,Service Packs,Service Packs
+5158-1,"T-Junction, Circle Plates",1990,,Town,Service Packs
+5159-1,Straight Runways,1990,2.0,Town,Service Packs
+5160-1,Aquazone Accessories,1995,,Aquazone,Service Packs
+5161-1,Inverted Slope Bricks,1987,16.0,Service Packs,Service Packs
+5162-1,Fences and Gates,1987,10.0,Service Packs,Service Packs
+5163-1,"Turntables, 4 x 4 and 2 x 2",1987,,Service Packs,Service Packs
+5164-1,"Hinges, Turntables and Couplings",1991,20.0,Service Packs,Service Packs
+5165-1,"Hinges, Couplings and Tilting Bearings",1991,,Service Packs,Service Packs
+5166-1,"Lampholders, Plates with Holder",1991,18.0,Service Packs,Service Packs
+5167-1,"Hinges, Tilt Bearings",1987,,Service Packs,Service Packs
+5168-1,Digger Bucket Assembly,1987,,Service Packs,Service Packs
+5169-1,Crane Set Assembly,1987,7.0,Service Packs,Service Packs
+517-1,Basic Building Set,1987,,Basic,Universal Building Set
+5171-1,Decorated Elements,1987,28.0,Service Packs,Service Packs
+5172-1,Rocket Stages,1987,30.0,Service Packs,Service Packs
+5173-1,Space Jet & Wings,1987,19.0,Space,Service Packs
+5174-1,Wheels and Bearings,1987,28.0,Service Packs,Service Packs
+5175-1,Space Elements,1987,26.0,Space,Service Packs
+5176-1,Transparent Bricks,1987,19.0,Service Packs,Service Packs
+5177-1,Town and Space Accessories,1987,,Service Packs,Service Packs
+5178-1,Plane Accessories,1987,23.0,Service Packs,Service Packs
+5179-1,Hinges and Couplings,1987,26.0,Service Packs,Service Packs
+5180-1,"T-Junction, Circle (Airport)",1987,2.0,Town,Service Packs
+518-1,2 x 4 Plates (cardboard box version),1962,192.0,Supplemental,Classic
+518-10,2 x 4 Plates - Blue (architectural hobby und modelbau version),1962,26.0,Architecture,Architecture
+518-11,2 x 4 Plates - Light Gray (architectural hobby und modelbau version),1962,26.0,Architecture,Architecture
+5181-1,"Runways, Straight (Airport)",1987,2.0,Town,Service Packs
+518-12,2 x 4 Plates - Red (architectural hobby und modelbau version),1962,26.0,Architecture,Architecture
+518-13,2 x 4 Plates - Trans-Clear (architectural hobby und modelbau version),1962,26.0,Architecture,Architecture
+518-14,2 x 4 Plates - White (architectural hobby und modelbau version),1962,26.0,Architecture,Architecture
+518-15,2 x 4 Plates - Yellow (architectural hobby und modelbau version),1962,,Architecture,Architecture
+5182-1,Hinges and Couplings,1989,,Service Packs,Service Packs
+5183-1,Hinges and Couplings,1989,,Service Packs,Service Packs
+5184-1,Castle Equipment,1989,38.0,Castle,Service Packs
+5185-1,Dustbins with Lids,1989,,Service Packs,Service Packs
+5186-1,Fence,1989,,Service Packs,Service Packs
+5187-1,Bricks with Groove and Garage Panels,1989,26.0,Service Packs,Service Packs
+5188-1,"Seats, Steering Wheels and Windscreens",1989,10.0,Service Packs,Service Packs
+518-9,2 x 4 Plates - Black (architectural hobby und modelbau version),1962,,Architecture,Architecture
+5189-1,Ladder (Black and Grey),1989,16.0,Service Packs,Service Packs
+5190-1,Seats and Windscreens,1989,,Service Packs,Service Packs
+519-1,2 x 3 Plates (cardboard box version),1962,240.0,Supplemental,Classic
+519-10,2 x 3 Plates - Blue (architectural hobby und modelbau version),1962,32.0,Architecture,Architecture
+519-11,2 x 3 Plates - Light Gray (architectural hobby und modelbau version),1962,32.0,Architecture,Architecture
+5191-1,Balloon Tires,1989,4.0,Service Packs,Service Packs
+519-12,2 x 3 Plates - Red (architectural hobby und modelbau version),1962,32.0,Architecture,Architecture
+519-13,2 x 3 Plates - Trans-Clear (architectural hobby und modelbau version),1962,32.0,Architecture,Architecture
+519-14,2 x 3 Plates - White (architectural hobby und modelbau version),1962,32.0,Architecture,Architecture
+519-15,2 x 3 Plates - Yellow (architectural hobby und modelbau version),1962,,Architecture,Architecture
+5192-1,Cypress Trees,1989,,Service Packs,Service Packs
+5193-1,Sloping Frames,1989,6.0,Service Packs,Service Packs
+5194-1,"Hinge Plate, Fork-Lift",1989,3.0,Service Packs,Service Packs
+5195-1,Assorted Arches,1989,6.0,Service Packs,Service Packs
+5196-1,"Crane, Crane Hooks and Ladders",1989,5.0,Service Packs,Service Packs
+5197-1,"Lampholders, Plate with Holders",1989,,Service Packs,Service Packs
+5198-1,"Small Plates, Disks and Cones",1989,56.0,Service Packs,Service Packs
+519-9,2 x 3 Plates - Black (architectural hobby und modelbau version),1962,32.0,Architecture,Architecture
+5199-1,Mini Antennas and Stick,1989,,Service Packs,Service Packs
+5200-1,Signal Masts and Feet,1987,8.0,Train,Service Packs
+520-1,2 x 2 Plates - Black (cardboard box version),1962,40.0,Supplemental,Classic
+520-10,2 x 2 Plates - Blue (architectural hobby und modelbau version),1962,42.0,Architecture,Architecture
+520-11,2 x 2 Plates - Light Gray (architectural hobby und modelbau version),1962,42.0,Architecture,Architecture
+5201-1,Angle Pieces,1997,20.0,Technic,Service Packs
+520-12,2 x 2 Plates - Red (architectural hobby und modelbau version),1962,,Architecture,Architecture
+520-13,2 x 2 Plates - Trans-Clear (architectural hobby und modelbau version),1962,42.0,Architecture,Architecture
+520-14,2 x 2 Plates - White (architectural hobby und modelbau version),1962,,Architecture,Architecture
+520-15,2 x 2 Plates - Yellow (architectural hobby und modelbau version),1962,,Architecture,Architecture
+520-16,Basic Building Set,1985,173.0,Basic,Universal Building Set
+520-2,2 x 2 Plates - Blue (cardboard box version),1962,,Supplemental,Classic
+5202-1,Angle Beams,1997,8.0,Technic,Service Packs
+520-3,2 x 2 Plates - Green (cardboard box version),1962,,Supplemental,Classic
+5203-1,Silver Wheels,1999,4.0,Technic,Service Packs
+520-4,2 x 2 Plates - Light Gray (cardboard box version),1963,,Supplemental,Classic
+5204-1,Cyber Slam Accessories,1999,,Technic,Service Packs
+520-5,2 x 2 Plates - Red (cardboard box version),1963,,Supplemental,Classic
+5205-1,Pulleys and Rubber Belts,1999,,Technic,Service Packs
+520-6,2 x 2 Plates - Trans-Clear (cardboard box version),1963,,Supplemental,Classic
+5206-1,Speed Computer,2000,19.0,Supplemental,Technic
+520-7,2 x 2 Plates - White (cardboard box version),1963,40.0,Supplemental,Classic
+520-8,2 x 2 Plates - Yellow (cardboard box version),1962,,Supplemental,Classic
+520-9,2 x 2 Plates - Black (architectural hobby und modelbau version),1962,,Architecture,Architecture
+5210-1,Elastic Bands,1997,1.0,Technic,Service Packs
+521-1,1 x 1 and 1 x 2 Plates (cardboard box version),1962,,Supplemental,Classic
+521-10,1 x 1 and 1 x 2 Plates - Blue (architectural hobby und modelbau version),1962,,Architecture,Architecture
+521-11,1 x 1 and 1 x 2 Plates - Light Gray (architectural hobby und modelbau version),1962,82.0,Architecture,Architecture
+521-12,1 x 1 and 1 x 2 Plates - Red (architectural hobby und modelbau version),1962,82.0,Architecture,Architecture
+521-13,1 x 1 and 1 x 2 Plates - Trans-Clear (architectural hobby und modelbau version),1962,82.0,Architecture,Architecture
+521-14,1 x 1 and 1 x 2 Plates - White (architectural hobby und modelbau version),1962,82.0,Architecture,Architecture
+521-15,1 x 1 and 1 x 2 Plates - Yellow (architectural hobby und modelbau version),1962,82.0,Architecture,Architecture
+5215-1,"Bricks Assorted, Green",1999,62.0,Service Packs,Service Packs
+5216-1,"Roof Bricks Assorted, Black",1999,,Service Packs,Service Packs
+5217-1,Black Plates Assorted,1999,,Service Packs,Service Packs
+5218-1,Pneumatic Pack,2000,,Supplemental,Technic
+521-9,1 x 1 and 1 x 2 Plates - Black (architectural hobby und modelbau version),1962,,Architecture,Architecture
+5219-1,Wheel Pack,2000,28.0,Supplemental,Technic
+5220-1,Styling Pack,2000,,Supplemental,Technic
+522-1,Police Station,1977,,Duplo,Duplo
+5221-1,Motor Pack,2000,,Supplemental,Technic
+5222-1,Chassis Pack,2000,137.0,Supplemental,Technic
+5223-1,Wind-up Motor,2001,41.0,Supplemental,Technic
+5225-1,9v Motor with gear reduction,1998,1.0,Technic,Service Packs
+5226-1,Cross Axles,1998,,Technic,Service Packs
+5227-1,Fiber Optic Cables,2000,8.0,Technic,Service Packs
+5228-1,Small Beams and Plates,1997,26.0,Technic,Service Packs
+5229-1,Gears & Differentials,1997,,Technic,Service Packs
+5231-1,TECHNIC Beams and Plates [Yellow],1987,20.0,Technic,Service Packs
+5232-1,TECHNIC Beams and Plates [Blue],1987,,Technic,Service Packs
+5233-1,Bedroom,1980,,Homemaker,Homemaker
+5233-2,Small Beams and Plates with holes,1993,,Technic,Service Packs
+5234-1,TECHNIC Beams and Plates {black},1987,20.0,Technic,Service Packs
+5235-1,Large Beams with Holes,1993,10.0,Technic,Service Packs
+5235-2,Schoolroom,1982,,Homemaker,Homemaker
+5236-1,TECHNIC Beams [Blue],1987,,Technic,Service Packs
+5237-1,TECHNIC Beams {black},1987,,Technic,Service Packs
+5238-1,TECHNIC Beams {red},1987,,Technic,Service Packs
+5239-1,Cross Axles,1987,34.0,Technic,Service Packs
+5240-1,TECHNIC Wheels with 43 mm + 24 mm tyres,1987,,Technic,Service Packs
+5241-1,Gear Wheel Assortment,1987,,Technic,Service Packs
+5242-1,Differential Gear Housing,1987,,Technic,Service Packs
+5243-1,TECHNIC Chainlinks,1987,,Technic,Service Packs
+5244-1,TECHNIC Bulldozer Chainlinks,1987,54.0,Technic,Service Packs
+5245-1,"Differential Gears / Universal Joint, Differential Housing and Wheels",1994,,Technic,Service Packs
+5246-1,X-Large Tires / 81 mm Tyres and Hubs,1987,4.0,Technic,Service Packs
+5247-1,Toggle Joints,1987,66.0,Technic,Service Packs
+5248-1,62 mm Tires and Hubs / 62 mm Tyres and Hubs,1987,4.0,Technic,Service Packs
+5249-1,TECHNIC Beams and Plates [Red],1987,,Technic,Service Packs
+5250-1,TECHNIC Beams {yellow},1987,8.0,Technic,Service Packs
+525-1,Basic Building Set,1990,185.0,Basic,Universal Building Set
+5251-1,Shock Absorbers,1989,,Technic,Service Packs
+5252-1,Large Shock Absorbers,1993,2.0,Technic,Service Packs
+5253-1,"Cross Axles (Sizes 2, 3, 4, 6)",1987,12.0,Technic,Service Packs
+5254-1,"Cross Axles (Sizes 8, 10, 12)",1987,,Technic,Service Packs
+5255-1,Connector Pegs / Connectorpegs,1987,,Technic,Service Packs
+5256-1,Suspension Pack,1987,12.0,Technic,Service Packs
+5257-1,"Connector Pegs, Toggle Joints, and Wheels",1987,,Technic,Service Packs
+5258-1,"Crown Wheels, Gear Racks, Point Wheels, Worm Gears",1987,10.0,Technic,Service Packs
+5259-1,"Universal Joint, Rubber Bands, and Wheels",1987,,Technic,Service Packs
+5260-1,Connecting Rods and Stop Bushes,1987,,Technic,Service Packs
+5261-1,"Plates, Gear Racks, etc.",1987,,Technic,Service Packs
+5262-1,Gear Wheels,1987,9.0,Technic,Service Packs
+5263-1,"Universal Joint, Differential Housing, and Point Wheels",1987,6.0,Technic,Service Packs
+5264-1,Rotors and Bush/Cross Axles,1987,,Technic,Service Packs
+5265-1,Large Tires and Wheels / TECHNIC Wheels with 43 mm + 24 mm Tyres,1989,16.0,Technic,Service Packs
+5266-1,"Gear Wheel Assortment / Gear Racks, Gear Wheels and Pulley Wheels",1989,,Technic,Service Packs
+5267-1,Cross Axles & Extensions,1993,16.0,Technic,Service Packs
+5268-1,Small Tires,1995,8.0,Technic,Service Packs
+5269-1,"Liftarms & Triangles / Liftarms, Triangles etc.",1995,12.0,Technic,Service Packs
+5270-1,43 mm Tires and Hubs / 43 mm Tyres and Hubs,1987,,Technic,Service Packs
+527-1,Basic Building Set,1987,,Basic,Universal Building Set
+5271-1,White Hubs & Tires / 49.6 mm Tyres & Hubs,1991,,Technic,Service Packs
+5272-1,Cylinder Motor,1991,,Technic,Service Packs
+5273-1,Tires,1992,,Technic,Service Packs
+5274-1,"8 Tires / Tyres (4x24, 4x 30 mm) w/hubs",1992,16.0,Technic,Service Packs
+5275-1,Toggle Joints and Connectors,1993,48.0,Technic,Service Packs
+5276-1,"Gear Wheels Etc. / Gear Wheels, Worm Gears, Universal Joints and Gear Racks",1993,23.0,Technic,Service Packs
+5277-1,Pulleys & V-Belts,1993,,Technic,Service Packs
+5278-1,TECHNIC Chainlinks,1994,,Technic,Service Packs
+5279-1,"Plates, Gear Racks",1993,,Technic,Service Packs
+5280-1,"Liftarms & Triangles / Liftarms, Triangles",1995,10.0,Technic,Service Packs
+5281-1,Balloon Tires Medium,1994,4.0,Technic,Service Packs
+5282-1,Balloon Tires Large,1994,4.0,Technic,Service Packs
+5283-1,Balloon Tires Small,1994,4.0,Technic,Service Packs
+5284-1,Loading Grabs,1996,,Technic,Service Packs
+5285-1,2 Large Shock Absorbers / Large Shock Absorbers,1994,2.0,Technic,Service Packs
+5286-1,Toggle Joints & Connectors,1994,64.0,Technic,Service Packs
+5287-1,"Plates & Gear Racks / Plates, Gear Racks etc.",1995,18.0,Technic,Service Packs
+5288-1,Worm Gear Boxes,1995,12.0,Technic,Service Packs
+5289-1,Toggle Joints & Connectors,1996,,Technic,Service Packs
+5290-1,Plates & Gear Racks,1996,16.0,Technic,Service Packs
+5291-1,Liftarms & Triangles,1996,12.0,Technic,Service Packs
+5292-1,LEGO TECHNIC Storage Case,1996,1.0,Technic,Service Packs
+5293-1,9V Battery Box,1996,1.0,Technic,Service Packs
+5294-1,"Toggle Joints & Connectors / Pegs, Bushings, & Couplers",1998,,Technic,Service Packs
+5295-1,Racks & Pivots,1998,12.0,Technic,Service Packs
+5-3,Basic Set,1973,330.0,Basic Set,Universal Building Set
+5300-1,Electric Train Motor,1991,3.0,Train,Service Packs
+530-1,Basic Building Set,1985,,Basic,Universal Building Set
+5301-1,Wagon Plate 6 x 28,1992,1.0,Train,Service Packs
+5302-1,"Bogieplates, Black",1992,2.0,Train,Service Packs
+5303-1,"Buffers, Magnets & Couplers",1992,6.0,Train,Service Packs
+5304-1,Wheelsets,1992,,Train,Service Packs
+5305-1,Connection Wire,1992,1.0,Train,Service Packs
+5306-1,Plates 2x2 with Wire 9 V 26 cm,1992,1.0,Technic,Service Packs
+5307-1,Head Light Brick,1992,3.0,Train,Service Packs
+5308-1,Head Light Brick,1994,,Train,Service Packs
+5309-1,"Wagon Plate, Red (6 x 28)",1996,,Train,Service Packs
+5310-1,Lighting Brick,1996,4.0,Train,Service Packs
+5311-1,9V Wires (25.6 cm),1996,,Technic,Technic
+5313-1,Space Port Accessories,1999,16.0,Town,Service Packs
+5314-1,RES-Q Equipment (Tools),1999,31.0,Town,Service Packs
+5315-1,Connectors,1999,60.0,Service Packs,Service Packs
+5316-1,Transparent Elements,1999,,Service Packs,Service Packs
+5317-1,Wild West Accessories,1999,48.0,Western ,Service Packs
+5318-1,Head Wear,1999,26.0,Service Packs,Service Packs
+5319-1,Decorated Elements,1999,,Town,Service Packs
+5320-1,"Plates, Small",1999,66.0,Service Packs,Service Packs
+5321-1,Large Plates,1999,,Service Packs,Service Packs
+533-1,Basic Set,1984,93.0,Basic Set,Universal Building Set
+535-1,Basic Building Set,1990,,Basic,Universal Building Set
+5369-1,Creator Tub,2005,700.0,Basic Set,Creator
+5370-1,Large Make and Create Bucket with Special LEGO Bonus Bricks,2005,,Basic Set,Creator
+5370a-1,Large Make and Create Bucket with Special LEGO Bonus Bricks (Bucket and its contents only),2005,,Basic Set,Creator
+5370b-1,Large Make and Create Bucket with Special LEGO Bonus Bricks (Bonus box and its contents only),2005,201.0,Supplemental,Creator
+537-1,Basic Building Set,1987,,Basic,Universal Building Set
+5372-1,Skeleton Chariot,2008,25.0,Fantasy Era,Castle
+5373-1,Knight & Catapult,2008,24.0,Fantasy Era,Castle
+5378-1,Hogwarts Castle (3rd edition),2007,,Order of the Phoenix,Harry Potter
+5380-1,Duplo Large Brick Box,2007,71.0,Duplo,Duplo
+5380-2,Duplo Large Brick Box - Green Plate,2008,,Basic Set,Duplo
+5381-1,Adventurer's Accessories,1998,27.0,Adventurers,Service Packs
+5382-1,Aquazone Accessories,1998,19.0,Aquazone,Service Packs
+5383-1,Castle Accessories,1998,36.0,Castle,Service Packs
+5384-1,Space Accessories,1998,,Space,Service Packs
+53850001-1,Crocodile,2015,30.0,Pick A Model,LEGO Brand Store
+53850002-1,Car,2015,40.0,Pick A Model,LEGO Brand Store
+53850003-1,Giraffes,2015,,Pick A Model,LEGO Brand Store
+53850004-1,Biplane,2015,24.0,Pick A Model,LEGO Brand Store
+53850005-1,Panda,2015,35.0,Pick A Model,LEGO Brand Store
+53850006-1,Jeep,2015,29.0,Pick A Model,LEGO Brand Store
+53850007-1,Elephant,2016,,Pick A Model,LEGO Brand Store
+53850008-1,Jet,2016,,Pick A Model,LEGO Brand Store
+53850009-1,Aircraft,2016,,Pick A Model,LEGO Brand Store
+53850012-1,Truck,2016,,Pick A Model,LEGO Brand Store
+53850013-1,Turtle,2016,50.0,Pick A Model,LEGO Brand Store
+53850015-1,Penguin,2016,,Pick A Model,LEGO Brand Store
+53850016-1,Animal - Beaver,2017,52.0,Pick A Model,LEGO Brand Store
+53850017-1,Digger,2017,56.0,Pick A Model,LEGO Brand Store
+5386-1,Antennas and Control Sticks,1998,,Service Packs,Service Packs
+5387-1,Belville Beach Accessories,1998,11.0,Belville,Service Packs
+5388-1,"Hinges, Couplings and Turntables",1998,29.0,Service Packs,Service Packs
+5389-1,Divers' Accessories,1998,37.0,Town,Service Packs
+5390-1,Crane and Digger Accessories,1998,14.0,Town,Service Packs
+5391-1,9V Battery Box,1997,1.0,Service Packs,Service Packs
+5392-1,Wild West Accessories,1997,,Western ,Service Packs
+5393-1,Headgear (Hats and Hair),1997,,Town,Service Packs
+5394-1,Horses and Saddles,1997,,Service Packs,Service Packs
+5395-1,Belville Hospital Accessories,1996,,Belville,Service Packs
+5396-1,Transparent Windows and Bricks,1996,,Service Packs,Service Packs
+5397-1,Magnets and Magnet Holders,1996,,Service Packs,Service Packs
+5398-1,Decorated Elements,1996,43.0,Service Packs,Service Packs
+5399-1,Fairy Tale Accessories,1999,25.0,Belville,Service Packs
+5-4,Large House Set,1971,307.0,Minitalia,Minitalia
+5400-1,Bathroom Accessories,1997,,Scala,Service Packs
+540-1,Basic Building Set,1985,619.0,Basic,Universal Building Set
+5401-1,Kitchen Accessories,1997,,Scala,Service Packs
+540-2,Police Units,1979,,Police,Town
+5402-1,Floor Plate 1/2,1997,,Scala,Service Packs
+540-3,Swiss Villa,1973,150.0,Building,Legoland
+5403-1,Floor Plate 1/1,1997,,Scala,Service Packs
+5404-1,House,1997,28.0,Scala,Service Packs
+5405-1,Floor Plate,1998,,Scala,Service Packs
+54-1,UFO Action Pack,1997,,UFO,Space
+5410-1,Emma,2011,,Scala,Service Packs
+5413-1,Beauty Set,1999,25.0,Scala,Service Packs
+5414-1,Kitchen Set,1999,24.0,Scala,Service Packs
+5415-1,Garden Set,1999,18.0,Scala,Service Packs
+5416-1,Brick Box,2007,34.0,Duplo,Duplo
+5416-2,Brick Box,2009,33.0,Basic Set,Duplo
+5417-1,Duplo Deluxe Brick Box,2007,,Basic Set,Duplo
+542-1,Street Crew,1979,,Construction,Town
+5421-1,Andrea,1997,,Scala,Service Packs
+544-1,Basic Set,1981,147.0,Basic Set,Universal Building Set
+545-1,Build-N-Store Chest,1990,423.0,Basic,Universal Building Set
+545-2,Conveyor Station,1973,,Construction,Legoland
+547-1,Basic Building Set,1987,,Basic,Universal Building Set
+5475-1,Girls Fantasy Bucket,2006,191.0,Basic Set,Creator
+5477-1,LEGO® Classic House Building,2006,,Basic Set,Creator
+5482-1,Ultimate LEGO House Building Set,2006,674.0,Basic Set,Creator
+5483-1,"Ready, Steady Build, and Race",2006,692.0,Basic Set,Creator
+5487-1,Fun with LEGO Bricks,2009,700.0,Basic Set,Creator
+5489-1,Ultimate LEGO Vehicle Building Set,2009,,Basic Set,Creator
+5490-1,XXL 250 Canister,2006,250.0,Basic Set,Duplo
+5491-1,XXL 2000,2006,2000.0,Basic Set,Creator
+5493-1,Emergency Rescue Box,2006,705.0,Basic Set,Creator
+55001-1,LEGO Universe Rocket,2010,56.0,Universe,Universe
+550-1,Basic Building Set,1985,578.0,Basic,Universal Building Set
+550-2,Windmill,1976,211.0,Building,Legoland
+5506-1,LEGO Duplo Building Set-71 pieces,2010,71.0,Basic Set,Duplo
+5507-1,Duplo Deluxe Brick Box,2010,102.0,Duplo,Duplo
+5508-1,Deluxe Brick Box,2010,,Basic Set,Creator
+5509-1,Duplo Basic Bricks,2010,,Basic Set,Duplo
+5510-1,Off-Road 4x4,1986,,Model Team,Model Team
+551-1,T Road Plates,1979,2.0,Supplemental,Town
+5512-1,LEGO XXL Box,2010,,Creator,Creator
+5515-1,Fun Building with LEGO Bricks,2007,240.0,Basic Set,Creator
+5517-1,XXL 1800,2007,1800.0,Basic Set,Creator
+5519-1,Creator Bucket,2007,,Basic Set,Creator
+552-1,Curved Road Plates,1979,,Supplemental,Town
+5521-1,Sea Jet,1993,,Model Team,Model Team
+5522-1,LEGO Golden Anniversary Set,2008,700.0,Basic Set,Creator
+5524-1,Airport,2005,606.0,Factory,Factory
+5525-1,Amusement Park,2005,,Factory,Factory
+5526-1,Skyline,2005,,Factory,Factory
+5528-1,Red Cannister,2007,,Basic Set,Creator
+5529-1,LEGO Basic Bricks,2010,326.0,Basic Set,Creator
+5529-2,"LEGO Basic Bricks, Limited Edition",2010,326.0,Basic Set,Creator
+553-1,Straight Road Plates,1979,2.0,Supplemental,Town
+5531-1,Police Motorcycle,2005,18.0,Police,Town
+5532-1,Fire Car,2005,32.0,Fire,Town
+5533-1,Red Fury,1999,394.0,Model Team,Model Team
+5537-1,Limited Edition [Blue Tub],2007,683.0,Basic Set,Creator
+5538-1,Creative Bucket,2009,,Basic Set,Duplo
+5539-1,Creative Bucket,2009,,Basic Set,Creator
+5540-1,Formula 1 Racer,1986,,Model Team,Model Team
+554-1,Exxon Fuel Tanker,1979,,Station,Town
+5541-1,Blue Fury,1995,420.0,Model Team,Model Team
+5542-1,Black Thunder,1998,482.0,Model Team,Model Team
+5549-1,LEGO Building Fun,2010,,Basic Set,Creator
+5550-1,Custom Rally Van,1991,524.0,Model Team,Model Team
+555-1,Hospital,1976,229.0,Hospital,Legoland
+555-2,Basic Set,1981,206.0,Basic Set,Universal Building Set
+5560-1,Large Pink Brick Box,2009,,Basic Set,Creator
+556-1,Fire Emergency Van,1979,66.0,Fire,Town
+5561-1,Big Foot 4x4,1997,,Model Team,Model Team
+5563-1,Racing Truck,1999,788.0,Model Team,Model Team
+557-1,Basic Building Set,1987,721.0,Basic,Universal Building Set
+5571-1,Giant Truck,1996,1746.0,Model Team,Model Team
+5573-1,LEGO Build & Play [Blue Tub],2008,646.0,Basic Set,Creator
+5573-2,LEGO Build & Play (Red Tub),2009,,Basic Set,Creator
+5574-1,Lego Box,2008,,Supplemental,Creator
+5576-1,Basic Bricks -- Medium,2008,,Supplemental,Creator
+5578-1,Basic Bricks -- Large,2008,500.0,Supplemental,Creator
+5580-1,Highway Rig,1986,667.0,Model Team,Model Team
+558-1,Road Crane,1979,55.0,Construction,Town
+5581-1,Magic Flash,1993,786.0,Model Team,Model Team
+5582-1,Ultimate Town Building Set,2008,697.0,Basic Set,Creator
+5584-1,Fun with Wheels,2008,648.0,Basic Set,Creator
+5585-1,Pink Brick Box,2008,,Basic Set,Creator
+5587-1,Basic Bricks with Fun Figures,2009,390.0,Supplemental,Creator
+5589-1,Giant Box,2009,1600.0,Basic Set,Creator
+5590-1,Whirl and Wheel Super Truck,1990,,Model Team,Model Team
+5591-1,Mach II Red Bird Rig,1994,,Model Team,Model Team
+5595-1,DUPLO Town Airport,2009,,Duplo,Duplo
+5599-1,Radio Control Racer,1998,,Radio Control,Racers
+5600-1,Radio Control Racer,1998,297.0,Radio Control,Racers
+560-1,Town House with Garden,1979,,Building,Town
+560-2,Police Heliport,1973,,Police,Legoland
+5606-1,My First Train,2008,10.0,Duplo,Duplo
+5609-1,Deluxe Train Set,2008,118.0,Duplo,Duplo
+5610-1,Builder,2008,23.0,Construction,Town
+5611-1,Public Works,2008,,Traffic,Town
+5612-1,Police Officer,2008,21.0,Police,Town
+5613-1,Firefighter,2008,,Fire,Town
+561407-1,Charlie The Puppy,2014,,Friends,Friends
+561408-1,Summer Beach,2014,27.0,Friends,Friends
+561409-1,Cookie Kitchen,2014,28.0,Friends,Friends
+5614-1,The Good Wizard,2008,16.0,Fantasy Era,Castle
+561410-1,Halloween Toy Shop,2014,,Friends,Friends
+561411-1,Cute Kitten,2014,,Animals,Friends
+561412-1,Christmas Tree,2014,,Friends,Friends
+561501-1,Penguin Ice Slide,2015,10.0,Friends,Friends
+561502-1,Dressing Table,2015,,Friends,Friends
+561503-1,Bunny And Garden,2015,,Friends,Friends
+561504-1,Party And Cake,2015,23.0,Friends,Friends
+561505-1,Picnic Set,2015,21.0,Friends,Friends
+561506-1,Sweet Garden And Kitchen,2015,23.0,Friends,Friends
+561507-1,Garden And Wheelbarrow,2015,20.0,Friends,Friends
+561508-1,Turtle’s island,2015,19.0,Friends,Friends
+561509-1,Guitar And Stage,2015,21.0,Friends,Friends
+5615-1,The Knight,2008,21.0,Fantasy Era,Castle
+561510-1,Trick Or Treat,2015,19.0,Friends,Friends
+561511-1,Hedgehog In The Woods,2015,,Friends,Friends
+561512-1,Winter Fun,2015,,Friends,Friends
+5616-1,Mini Robot,2008,23.0,Mars Mission,Space
+5617-1,Alien Jet,2008,,Mars Mission,Space
+5618-1,Troll Warrior,2008,19.0,Fantasy Era,Castle
+5619-1,Crystal Hawk,2008,,Mars Mission,Space
+5620-1,Street Cleaner,2008,,Traffic,Town
+5621-1,Coast Guard Kayak,2008,21.0,Coast Guard,Town
+5622-1,Duplo Basic Bricks - Large,2010,60.0,Basic Set,Duplo
+5623-1,Basic Bricks - Large,2010,450.0,Supplemental,Creator
+5625-1,Police 4 x 4,2008,,Police,Town
+5626-1,Coast Guard Bike,2008,,Coast Guard,Town
+5627-1,Mini Bulldozer,2008,23.0,Construction,Town
+5638-1,Postman,2009,9.0,Duplo,Duplo
+5639-1,Family House,2009,,Duplo,Duplo
+5642-1,Tipper Truck,2009,,Construction,Town
+5643-1,Little Piggy,2010,,Duplo,Duplo
+5644-1,Chicken Coop,2010,12.0,Duplo,Duplo
+5645-1,Farm Bike,2010,9.0,Duplo,Duplo
+5646-1,Farm Nursery,2010,,Duplo,Duplo
+5649-1,Big Farm,2010,68.0,Duplo,Duplo
+565-1,Moon Landing,1976,,Space,Legoland
+565-2,Build-N-Store Chest,1990,695.0,Basic,Universal Building Set
+5657-1,Jessie's Round-Up,2010,,Duplo,Duplo
+5658-1,Pizza Planet Truck,2010,,Duplo,Duplo
+5659-1,The Great Train Chase,2010,39.0,Duplo,Duplo
+566-1,Basic Set,1981,285.0,Basic Set,Universal Building Set
+5679-1,Police Bike,2011,,Duplo,Duplo
+5680-1,Police Truck,2011,14.0,Duplo,Duplo
+5681-1,Police Station,2011,,Duplo,Duplo
+5682-1,Fire Truck,2011,20.0,Duplo,Duplo
+5685-1,Vet,2011,4.0,Duplo,Duplo
+5700-1,LEGO Creator,1998,0.0,Gear,Gear
+570-1,Fire House,1973,,Fire,Legoland
+5701-1,LEGO Loco,1998,0.0,Gear,Gear
+5706-1,LEGOLAND,1999,0.0,Gear,Gear
+5714-1,LEGO Alpha Team,2000,0.0,Gear,Gear
+5748-1,Duplo Creative Building Kit,2011,,Basic Set,Duplo
+5749-1,Creative Building Kit,2011,650.0,Basic Set,Creator
+575-1,Coast Guard Station,1978,301.0,Coast Guard,Town
+575-2,Coast Guard Station (Canadian Edition),1978,284.0,Coast Guard,Town
+5761-1,Mini Digger,2011,,Basic Model,Creator
+5762-1,Mini Plane,2011,52.0,Basic Model,Creator
+5763-1,Dune Hopper,2011,137.0,Basic Model,Creator
+5764-1,Rescue Robot,2011,150.0,Basic Model,Creator
+5765-1,Transport Truck,2011,,Creator,Creator
+5766-1,Log Cabin,2011,355.0,Model,Creator
+5767-1,Cool Cruiser,2011,621.0,Creator,Creator
+5770-1,Lighthouse Island,2011,518.0,Creator,Creator
+577-1,Basic Set,1981,,Basic Set,Universal Building Set
+5771-1,Hillside House,2011,710.0,Creator,Creator
+5785-1,Soccer Mania,2002,0.0,Gear,Gear
+5793-1,Nurse's Car,2011,,Duplo,Duplo
+5795-1,Duplo Big City Hospital,2011,106.0,Duplo,Duplo
+580-1,Brick Yard,1975,216.0,Construction,Legoland
+5801-1,Millimy the Fairy,1999,12.0,Fairy-Tale,Belville
+5802-1,Princess Rosaline,1999,6.0,Fairy-Tale,Belville
+5803-1,Iris,1999,6.0,Fairy-Tale,Belville
+5804-1,Witch's Cottage,1999,42.0,Fairy-Tale,Belville
+5805-1,Princess Rosaline's Room,1999,,Fairy-Tale,Belville
+5807-1,The Royal Stable,1999,,Fairy-Tale,Belville
+5808-1,The Enchanted Palace,1999,,Fairy-Tale,Belville
+5810-1,Vanity Fun,1995,22.0,Playhouse,Belville
+5811-1,Prince Justin,1999,,Fairy-Tale,Belville
+5812-1,King,1999,,Fairy-Tale,Belville
+5813-1,Lightning McQueen,2010,11.0,Duplo,Duplo
+5814-1,Mater's Yard,2010,,Cars,Duplo
+5817-1,Agent Mater,2011,,Duplo,Duplo
+5820-1,Garden Fun,1996,33.0,Playhouse,Belville
+5821-1,Pamela's Picnic Time,1997,,Recreation,Belville
+5822-1,Jennifer and Foal,1997,5.0,Recreation,Belville
+5823-1,The Good Fairy's Bedroom,2000,33.0,Fairy-Tale,Belville
+5824-1,The Good Fairy's House,2000,66.0,Fairy-Tale,Belville
+5825-1,Stella and the Fairy,2000,50.0,Fairy-Tale,Belville
+5826-1,The Queen's Room,2000,,Fairy-Tale,Belville
+5827-1,Royal Coach,2000,,Fairy-Tale,Belville
+5830-1,Fun-Day Sundaes,1995,,Recreation,Belville
+5831-1,Adventurous Puppies,2001,16.0,Fairy-Tale,Belville
+5832-1,Vanilla's Magic Tea Party,2001,11.0,Fairy-Tale,Belville
+5833-1,Rosita's Wonderful Stable,2001,38.0,Fairy-Tale,Belville
+5834-1,The Enchanted Garden,2001,98.0,Fairy-Tale,Belville
+5835-1,Dance Studio,1996,,Playhouse,Belville
+5836-1,Beautiful Baby Princess,2002,,Fairy-Tale,Belville
+5837-1,Flora's Bubbling Bath,2002,27.0,Fairy-Tale,Belville
+5838-1,The Wicked Madam Frost,2002,36.0,Fairy-Tale,Belville
+5840-1,Garden Playmates,1995,92.0,Playhouse,Belville
+5841-1,Beach Fun,1998,,Recreation,Belville
+5842-1,Vanilla's Frosty Sleighride,2002,33.0,Fairy-Tale,Belville
+5843-1,Queen Rose and the Little Prince Charming,2002,,Fairy-Tale,Belville
+5844-1,Dolphin Windsurfer,1998,17.0,Recreation,Belville
+5845-1,Dolphin Show,1998,,Recreation,Belville
+5846-1,Desert Island,1998,94.0,Recreation,Belville
+5847-1,Surfers' Paradise,1998,,Recreation,Belville
+5848-1,Family Yacht / Luxury Cruiser,1998,226.0,Recreation,Belville
+5850-1,The Royal Crystal Palace,2002,,Fairy-Tale,Belville
+585-1,Police Headquarters,1976,,Police,Legoland
+5853-1,Lucinda and Cressida,1997,,Recreation,Belville
+5854-1,Pony Trekking,1997,53.0,Recreation,Belville
+5855-1,Riding Stables,1997,,Recreation,Belville
+5856-1,Paprika and the Mischievous Monkey,2003,51.0,Golden Land,Belville
+5857-1,Safran's Amazing Bazaar,2003,,Golden Land,Belville
+5858-1,"The Golden Palace, Blue Box",2003,174.0,Golden Land,Belville
+5858-2,"The Golden Palace, Purple/Silver Box",2004,,Golden Land,Belville
+5859-1,Little Garden Fairy,2003,,Fairy-Tale,Belville
+5860-1,Love 'N' Lullabies,1994,50.0,Playhouse,Belville
+5861-1,Fairy Island,2003,,Fairy-Tale,Belville
+5862-1,Flower Fairy Party [Blue Box],2003,151.0,Fairy-Tale,Belville
+5862-2,Flower Fairy Party [Purple/Silver Box],2004,,Fairy-Tale,Belville
+5864-1,Mini Helicopter,2010,52.0,Airport,Creator
+5865-1,Mini Dumper,2010,,Creator,Creator
+5866-1,Rotor Rescue,2010,149.0,Model,Creator
+5867-1,Super Speedster,2010,278.0,Model,Creator
+5868-1,Ferocious Creatures,2010,416.0,Model,Creator
+5870-1,Pretty Playland,1994,,Playhouse,Belville
+5871-1,Riding Stables,2002,159.0,Recreation,Belville
+5872-1,Golden Land Promo (Polybag),2003,,Golden Land,Belville
+5873-1,Fairyland Promo (Polybag),2003,19.0,Fairy-Tale,Belville
+5874-1,Nursery,1997,,Hospital,Belville
+5875-1,Hospital Ward,1996,108.0,Hospital,Belville
+5876-1,Hospital Ward,1996,,Hospital,Belville
+5877-1,Wedding Coach,2004,,Fairy-Tale,Belville
+5880-1,Prize Pony Stables,1994,124.0,Recreation,Belville
+588-1,Police Headquarters,1979,376.0,Police,Town
+5882-1,Ambush Attack,2012,,Dino,Dino
+5883-1,Tower Takedown,2012,136.0,Dino,Dino
+5884-1,Raptor Chase,2012,,Dino,Dino
+5885-1,Triceratops Trapper,2012,270.0,Dino,Dino
+5886-1,T-Rex Hunter,2012,,Dino,Dino
+5887-1,Dino Defense HQ,2012,,Dino,Dino
+5888-1,Ocean Interceptor,2012,,Dino,Dino
+5890-1,Pretty Wishes Playhouse,1994,,Playhouse,Belville
+5891-1,Apple Tree House,2010,539.0,Model,Creator
+5892-1,Sonic Boom,2010,,Model,Creator
+5893-1,Offroad Power,2010,1061.0,Model,Creator
+5895-1,Villa Belville,1996,328.0,Playhouse,Belville
+5898-1,Car Building Set,2010,135.0,Basic Set,Creator
+5899-1,House Building Set,2010,,Basic Set,Creator
+5900-1,Adventurer - Johnny Thunder,1998,,Desert,Adventurers
+590-1,Engine Co. No. 9,1978,,Fire,Town
+5901-1,River Raft,1999,19.0,Jungle,Adventurers
+5902-1,River Raft,1999,,Jungle,Adventurers
+5903-1,Johnny Thunder and Baby T,2000,,Dino Island,Adventurers
+5904-1,Microcopter,2000,28.0,Dino Island,Adventurers
+5905-1,Hidden Treasure,1999,33.0,Jungle,Adventurers
+5906-1,Ruler of the Jungle,1999,23.0,Jungle,Adventurers
+5909-1,Treasure Raiders set with Mummy Storage Container,1998,196.0,Desert,Adventurers
+5911-1,Johnny Thunder's Plane,2000,,Dino Island,Adventurers
+5912-1,Hydrofoil,2000,19.0,Dino Island,Adventurers
+5913-1,Dr. Lightning's Car,2000,,Dino Island,Adventurers
+5914-1,Baby T-Rex Trap,2000,,Dino Island,Adventurers
+5918-1,Scorpion Tracker,1998,35.0,Desert,Adventurers
+5919-1,The Valley of the Kings,1998,,Desert,Adventurers
+5920-1,Island Racer,2000,,Dino Island,Adventurers
+5921-1,Research Glider,2000,57.0,Dino Island,Adventurers
+5923-1,Western Picture Frame,2002,144.0,Indians,Western
+5924-1,Castle Picture Frame,2002,116.0,LEGO Brand Store,LEGO Brand Store
+5925-1,Pontoon Plane,1999,72.0,Jungle,Adventurers
+5928-1,Bi-Wing Baron,1998,70.0,Desert,Adventurers
+5929-1,Knight and Castle Building Set,2011,145.0,Castle,Creator
+5930-1,Road Construction Building Set,2011,121.0,Construction,Creator
+5932-1,My First LEGO Set,2011,227.0,Creator,Creator
+5933-1,Airport Building Set,2011,309.0,Airport,Creator
+5934-1,Dino Explorer,2000,,Dino Island,Adventurers
+5935-1,Island Hopper,2000,205.0,Dino Island,Adventurers
+5936-1,Spider's Secret,1999,,Jungle,Adventurers
+5938-1,Oasis Ambush,1998,,Desert,Adventurers
+5940-1,Doll House,2004,207.0,Playhouse,Belville
+5941-1,Riding School,2004,,Recreation,Belville
+5942-1,Pop Studio,2004,102.0,Playhouse,Belville
+5943-1,Interior Designer,2004,,Playhouse,Belville
+5944-1,Cat Show,2004,,Playhouse,Belville
+5945-1,Winnie the Pooh's Picnic,2011,13.0,Duplo,Duplo
+5946-1,Tigger's Expedition,2011,,Duplo,Duplo
+5948-1,Desert Expedition,1998,195.0,Desert,Adventurers
+5950-1,Baby Ankylosaurus (Polybag),2001,37.0,Dinosaurs,Dinosaurs
+5951-1,Baby Iguanodon (Polybag),2001,23.0,Dinosaurs,Dinosaurs
+5952-1,Baby Brachiosaurus (Polybag),2001,,Dinosaurs,Dinosaurs
+5953-1,Baby Dimetrodon (Polybag),2001,,Dinosaurs,Dinosaurs
+5955-1,All Terrain Trapper,2000,,Dino Island,Adventurers
+5956-1,Expedition Balloon,1999,,Jungle,Adventurers
+5958-1,Mummy's Tomb,1998,258.0,Desert,Adventurers
+5960-1,The Mermaid Castle,2005,231.0,Fairy-Tale,Belville
+5961-1,Snow Queen,2005,55.0,Fairy-Tale,Belville
+5962-1,The Tinderbox,2005,84.0,Fairy-Tale,Belville
+5963-1,The Princess and the Pea,2005,50.0,Fairy-Tale,Belville
+5964-1,Thumbelina,2005,,Fairy-Tale,Belville
+5965-1,Exo-Suit Robot,2006,24.0,Exo-Force,Exo-Force
+5966-1,Glider,2006,22.0,Exo-Force,Exo-Force
+5967-1,Takeshi Walker 2,2006,,Exo-Force,Exo-Force
+5969-1,Squidman Escape,2009,42.0,Space Police III,Space
+5970-1,Freeze Ray Frenzy,2009,79.0,Space Police III,Space
+5971-1,Gold Heist,2009,204.0,Space Police III,Space
+5972-1,Space Truck Getaway [Container Heist],2009,,Space Police III,Space
+5973-1,Hyperspeed Pursuit,2009,,Space Police III,Space
+5974-1,Galactic Enforcer,2009,,Space Police III,Space
+5975-1,T-Rex Transport,2000,,Dino Island,Adventurers
+5976-1,River Expedition,1999,,Jungle,Adventurers
+5977-1,Bears on the Beach,2001,17.0,Recreation,Belville
+5978-1,Sphinx Secret Surprise,1998,353.0,Desert,Adventurers
+5979-1,Max Security Transport,2009,,Space Police III,Space
+5980-1,Squidman's Pitstop - Limited Edition,2009,,Space Police III,Space
+5981-1,Raid VPR,2010,68.0,Space Police III,Space
+5982-1,Smash 'n' Grab,2010,187.0,Space Police III,Space
+5983-1,SP Undercover Cruiser,2010,308.0,Space Police III,Space
+5984-1,Lunar Limo,2010,378.0,Space Police III,Space
+5985-1,Space Police Central,2010,630.0,Space Police III,Space
+5986-1,Amazon Ancient Ruins,1999,,Jungle,Adventurers
+5987-1,Dino Research Compound,2000,618.0,Dino Island,Adventurers
+5988-1,Pharaoh's Forbidden Ruins,1998,720.0,Desert,Adventurers
+599-1,Super Basic Set,1982,744.0,Basic Set,Universal Building Set
+5994-1,Catapult,2005,,Knights Kingdom II,Castle
+5998-1,Vladek,2005,,Knights Kingdom II,Castle
+5999-1,Jayko,2005,,Knights Kingdom II,Castle
+60000-1,Fire Motorcycle,2013,39.0,Fire,Town
+6000-1,Idea Book 6000,1980,2.0,Books,Books
+60001-1,Fire Rescue,2013,79.0,Fire,Town
+60002-1,Fire Truck,2013,208.0,Fire,Town
+60003-1,Fire Emergency,2013,301.0,Fire,Town
+60004-1,Fire Station,2013,,Fire,Town
+60005-1,Fire Boat,2013,,Fire,Town
+60006-1,Police ATV,2013,,Police,Town
+60007-1,High Speed Chase,2013,,Police,Town
+60008-1,Museum Break-in,2013,,Police,Town
+60009-1,Helicopter Arrest,2013,349.0,Police,Town
+600-1,Ambulance,1970,,Hospital,Legoland
+60010-1,Fire Helicopter,2013,224.0,Fire,Town
+6001095-1,Hulk,2012,4.0,Avengers,Super Heroes
+60011-1,Surfer Rescue,2013,,Coast Guard,Town
+60012-1,Coast Guard 4 x 4,2013,127.0,Coast Guard,Town
+60013-1,Coast Guard Helicopter,2013,,Coast Guard,Town
+60014-1,Coast Guard Patrol,2013,,Coast Guard,Town
+60015-1,Coast Guard Plane,2013,279.0,Coast Guard,Town
+60016-1,Tanker Truck,2013,190.0,Traffic,Town
+60017-1,Flatbed Truck,2013,,Traffic,Town
+60018-1,Cement Mixer,2013,,Construction,Town
+60019-1,Stunt Plane,2013,139.0,Airport,Town
+600-2,Police Patrol,1978,23.0,Police,Town
+60020-1,Cargo Truck,2013,319.0,Cargo,Town
+6002-1,Town Figures,1983,,Supplemental,Town
+60021-1,Cargo Heliplane,2013,388.0,Airport,Town
+6002-2,Castle Figures,1983,22.0,Classic Castle,Castle
+60022-1,Cargo Terminal,2013,,Airport,Town
+60023-1,City Starter Set,2013,267.0,City,Town
+60024-1,"Advent Calendar 2013, City",2013,24.0,City,Seasonal
+60024-10,"Advent Calendar 2013, City (Day 9)",2013,4.0,City,Seasonal
+60024-11,"Advent Calendar 2013, City (Day 10)",2013,8.0,City,Seasonal
+60024-12,"Advent Calendar 2013, City (Day 11)",2013,,City,Seasonal
+60024-13,"Advent Calendar 2013, City (Day 12)",2013,21.0,City,Seasonal
+60024-14,"60024 Advent Calendar 2013, City (Day 13)",2013,6.0,City,Seasonal
+60024-15,"60024 Advent Calendar 2013, City (Day 14)",2013,,City,Seasonal
+60024-16,"60024 Advent Calendar 2013, City (Day 15)",2013,12.0,City,Seasonal
+60024-17,"60024 Advent Calendar 2013, City (Day 16)",2013,,City,Seasonal
+60024-18,"60024 Advent Calendar 2013, City (Day 17)",2013,8.0,City,Seasonal
+60024-19,"60024 Advent Calendar 2013, City (Day 18)",2013,7.0,City,Seasonal
+60024-2,"Advent Calendar 2013, City (Day 1)",2013,,City,Seasonal
+60024-20,"60024 Advent Calendar 2013, City (Day 19)",2013,,City,Seasonal
+60024-21,"60024 Advent Calendar 2013, City (Day 20)",2013,10.0,City,Seasonal
+60024-22,"60024 Advent Calendar 2013, City (Day 21)",2013,,City,Seasonal
+60024-23,"60024 Advent Calendar 2013, City (Day 22)",2013,,City,Seasonal
+60024-24,"60024 Advent Calendar 2013, City (Day 23)",2013,,City,Seasonal
+60024-25,"60024 Advent Calendar 2013, City (Day 24) Santa",2013,,City,Seasonal
+60024-3,"Advent Calendar 2013, City (Day 2)",2013,11.0,City,Seasonal
+60024-4,"Advent Calendar 2013, City (Day 3)",2013,,City,Seasonal
+60024-5,"Advent Calendar 2013, City (Day 4)",2013,6.0,City,Seasonal
+60024-6,"Advent Calendar 2013, City (Day 5)",2013,8.0,City,Seasonal
+60024-7,"Advent Calendar 2013, City (Day 6)",2013,,City,Seasonal
+60024-8,"Advent Calendar 2013, City (Day 7)",2013,9.0,City,Seasonal
+60024-9,"Advent Calendar 2013, City (Day 8)",2013,,City,Seasonal
+60025-1,Grand Prix Truck,2013,322.0,City,Town
+60026-1,Town Square,2013,,Traffic,Town
+60027-1,Monster Truck Transporter,2013,306.0,City,Town
+60031-1,City Corner {re-issue from set 7641-1},2013,,Traffic,Town
+60032-1,Arctic Snowmobile,2014,,Arctic,Town
+60033-1,Arctic Ice Crawler,2014,112.0,Arctic,Town
+60034-1,Arctic Helicrane,2014,262.0,Arctic,Town
+60035-1,Arctic Outpost,2014,,Arctic,Town
+60036-1,Arctic Base Camp,2014,731.0,Arctic,Town
+6004-1,Crossbow Cart,1997,21.0,Fright Knights,Castle
+60041-1,Crook Pursuit,2014,,Police,Town
+60042-1,High Speed Police Chase,2014,,Police,Town
+60043-1,Prisoner Transporter,2014,196.0,Police,Town
+60044-1,Mobile Police Unit,2014,374.0,Police,Town
+60045-1,Police Patrol,2014,,Police,Town
+60046-1,Helicopter Surveillance,2014,526.0,Police,Town
+60047-1,Police Station,2014,852.0,Police,Town
+60048-1,Police Dog Unit,2014,248.0,Police,Town
+60049-1,Helicopter Transporter,2014,381.0,Police,Town
+60050-1,Train Station,2014,422.0,Trains,Town
+60051-1,High-Speed Passenger Train,2014,604.0,Trains,Town
+6005188-1,Darth Maul,2012,8.0,Star Wars Episode 1,Star Wars
+60052-1,Cargo Train,2014,888.0,Trains,Town
+60053-1,Race Car,2014,,City,Town
+60054-1,Light Repair Truck,2014,94.0,City,Town
+60055-1,Monster Truck,2014,77.0,City,Town
+60056-1,Tow Truck,2014,,City,Town
+60057-1,Camper Van,2014,194.0,City,Town
+60058-1,SUV with Watercraft,2014,,City,Town
+60059-1,Logging Truck,2014,,City,Town
+60060-1,Auto Transporter,2014,350.0,City,Town
+60061-1,Airport Fire Truck,2014,325.0,City,Town
+6006139-1,Best Friends Promotional Brick Set,2012,2.0,Friends,Friends
+60062-1,Arctic Icebreaker,2014,712.0,Arctic,Town
+60063-1,Advent Calendar 2014 City,2014,24.0,City,Seasonal
+60063-10,Advent Calendar 2014 City (Day 9) Handcart with Bread,2014,6.0,City,Seasonal
+60063-11,Advent Calendar 2014 City (Day 10) Small Catapult,2014,7.0,City,Seasonal
+60063-12,Advent Calendar 2014 City (Day 11) Policeman with Megaphone and Sheet Music,2014,6.0,City,Seasonal
+60063-13,Advent Calendar 2014 City (Day 12) Duck with Remote Control,2014,,City,Seasonal
+60063-14,Advent Calendar 2014 City (Day 13) Burglar with Bag and Flashlight,2014,8.0,City,Seasonal
+60063-15,Advent Calendar 2014 City (Day 14) Sled,2014,,City,Seasonal
+60063-16,Advent Calendar 2014 City (Day 15) Dog with Bone and Food Dish,2014,,City,Seasonal
+60063-17,Advent Calendar 2014 City (Day 16) Santa's Snowmobile,2014,13.0,City,Seasonal
+60063-18,Advent Calendar 2014 City (Day 17) Santa's Sled with Box,2014,,City,Seasonal
+60063-19,Advent Calendar 2014 City (Day 18) Policeman with Cup and Handcuffs,2014,6.0,City,Seasonal
+60063-2,Advent Calendar 2014 City (Day 1) Boy Posting Christmas Mail,2014,,City,Seasonal
+60063-20,Advent Calendar 2014 City (Day 19) Turkey Dinner,2014,,City,Seasonal
+60063-21,"Advent Calendar 2014 City (Day 20) Axe, Shovel and Logs",2014,,City,Seasonal
+60063-22,Advent Calendar 2014 City (Day 21) Christmas Present and Stocking,2014,14.0,City,Seasonal
+60063-23,Advent Calendar 2014 City (Day 22) Christmas Tree,2014,21.0,City,Seasonal
+60063-24,Advent Calendar 2014 City (Day 23) Tricycle,2014,14.0,City,Seasonal
+60063-25,Advent Calendar 2014 City (Day 24) Santa with Bag and Cookie,2014,,City,Seasonal
+60063-3,Advent Calendar 2014 City (Day 2) Mailbox with Green Frog,2014,,City,Seasonal
+60063-4,Advent Calendar 2014 City (Day 3) Snowman,2014,5.0,City,Seasonal
+60063-5,Advent Calendar 2014 City (Day 4) Pie Stall,2014,6.0,City,Seasonal
+60063-6,Advent Calendar 2014 City (Day 5) Girl with Croissant,2014,5.0,City,Seasonal
+60063-7,Advent Calendar 2014 City (Day 6) Fruit Stall,2014,16.0,City,Seasonal
+60063-8,Advent Calendar 2014 City (Day 7) Little Shop,2014,18.0,City,Seasonal
+60063-9,Advent Calendar 2014 City (Day 8) Girl on Ice Skates,2014,,City,Seasonal
+60064-1,Arctic Supply Plane,2014,,Arctic,Town
+60065-1,ATV Patrol,2015,57.0,Police,Town
+60066-1,Swamp Police Starter Set,2015,78.0,Police,Town
+60067-1,Helicopter Pursuit,2015,252.0,Police,Town
+60068-1,Crooks’ Hideout,2015,,Police,Town
+60069-1,Swamp Police Station,2015,706.0,Police,Town
+60070-1,Water Plane Chase,2015,,Police,Town
+6007-1,Bat Lord,1997,16.0,Fright Knights,Castle
+60071-1,Hovercraft Arrest,2015,,Police,Town
+60072-1,Demolition Starter Set,2015,,Construction,Town
+60073-1,Service Truck,2015,232.0,Construction,Town
+60074-1,Bulldozer,2015,,Construction,Town
+60075-1,Excavator and Truck,2015,,Construction,Town
+60076-1,Demolition Site,2015,775.0,Construction,Town
+60077-1,Space Starter Set,2015,107.0,Space Port,Town
+60078-1,Utility Shuttle,2015,154.0,Space Port,Town
+60079-1,Training Jet Transporter,2015,448.0,Space Port,Town
+60080-1,Spaceport,2015,585.0,Space Port,Town
+6008-1,Royal King,1995,12.0,Royal Knights,Castle
+60081-1,Pickup Tow Truck,2015,,Traffic,Town
+60082-1,Dune Buggy Trailer,2015,,Off-Road,Town
+60083-1,Snowplow Truck,2015,195.0,Traffic,Town
+60084-1,Racing Bike Transporter,2015,,Traffic,Town
+60085-1,4x4 with Powerboat,2015,300.0,Harbor,Town
+60086-1,City Starter Set,2015,238.0,City,Town
+60088-1,Fire Starter Set,2015,92.0,Fire,Town
+60090-1,Deep Sea Scuba Scooter,2015,,Divers,Town
+6009-1,Black Knight,1992,,Black Knights,Castle
+60091-1,Deep Sea Starter Set,2015,,Divers,Town
+60092-1,Deep Sea Submarine,2015,273.0,Divers,Town
+60093-1,Deep Sea Helicopter,2015,387.0,Divers,Town
+60095-1,Deep Sea Exploration Vessel,2015,716.0,Divers,Town
+60096-1,Deep Sea Operation Base,2015,905.0,Divers,Town
+60097-1,City Square,2015,,Traffic,Town
+60098-1,Heavy-Haul Train,2015,982.0,Trains,Town
+60099-1,LEGO® City Advent Calendar 2015,2015,278.0,City,Seasonal
+60100-1,Airport Starter Set,2016,81.0,Airport,Town
+6010-1,Supply Wagon,1984,,Lion Knights,Castle
+60101-1,Airport Cargo Plane,2016,156.0,Airport,Town
+60102-1,Airport VIP Service,2016,364.0,Airport,Town
+60103-1,Airport Air Show,2016,677.0,Airport,Town
+60104-1,Airport Passenger Terminal,2016,,Airport,Town
+60105-1,Fire ATV,2016,64.0,Fire,Town
+60106-1,Fire Starter Set,2016,,Fire,Town
+60107-1,Fire Ladder Truck,2016,213.0,Fire,Town
+60108-1,Fire Response Unit,2016,256.0,Fire,Town
+60109-1,Fire Boat,2016,,Fire,Town
+601-1,Shell Gas Pump,1978,,Station,Town
+60110-1,Fire Station,2016,,Fire,Town
+6011-1,Black Knight's Treasure,1985,,Black Falcons,Castle
+60111-1,Fire Utility Truck,2016,367.0,Fire,Town
+60112-1,Fire Engine,2016,,Fire,Town
+60113-1,Rally Car,2016,104.0,Traffic,Town
+60114-1,Race Boat,2016,94.0,City,Town
+60115-1,4 x 4 Off Roader,2016,184.0,Off-Road,Town
+60116-1,Ambulance Plane,2016,183.0,Hospital,Town
+60117-1,Van & Caravan,2016,250.0,Traffic,Town
+60118-1,Garbage Truck,2016,247.0,City,Town
+60119-1,Ferry,2016,,Harbor,Town
+601-2,Tow Truck,1970,,Factory,Factory
+60120-1,Volcano Starter Set,2016,,City,Town
+6012-1,Siege Cart,1986,,Lion Knights,Castle
+60121-1,Volcano Exploration Truck,2016,,City,Town
+60122-1,Volcano Crawler,2016,323.0,City,Town
+60123-1,Volcano Supply Helicopter,2016,329.0,City,Town
+60124-1,Volcano Exploration Base,2016,,City,Town
+60125-1,Volcano Heavy-Lift Helicopter,2016,,City,Town
+60126-1,Tire Escape,2016,,Police,Town
+60127-1,Prison Island Starter Set,2016,92.0,Police,Town
+60128-1,Police Pursuit,2016,184.0,Police,Town
+60129-1,Police Patrol Boat,2016,200.0,Police,Town
+60130-1,Prison Island,2016,,Police,Town
+6013-1,Samurai Swordsman,1998,13.0,Ninja,Ninja
+60131-1,Crooks Island,2016,,Police,Town
+60132-1,Service Station,2016,,Traffic,Town
+60133-1,City Advent Calendar 2016,2016,,City,Seasonal
+60134-1,Fun in the park - City People Pack,2016,,City,Town
+60135-1,ATV Arrest,2017,47.0,Police,Town
+60136-1,Police Starter Set,2017,,Police,Town
+60137-1,Tow Truck Trouble,2017,,Police,Town
+60138-1,High-speed Chase,2017,,Police,Town
+60139-1,Mobile Command Center,2017,,Police,Town
+60140-1,Bulldozer Break-In,2017,,Police,Town
+60141-1,Police Station,2017,,Police,Town
+60142-1,Money Transporter,2017,,Police,Town
+60143-1,Auto Transport Heist,2017,402.0,Police,Town
+60144-1,Race Plane,2017,,Airport,Town
+60145-1,Buggy,2017,80.0,Traffic,Town
+60146-1,Stunt Truck,2017,,City,Town
+60147-1,Fishing Boat,2017,144.0,City,Town
+60148-1,ATV Race Team,2017,238.0,Traffic,Town
+60149-1,4x4 with Catamaran,2017,,City,Town
+60150-1,Pizza Van,2017,249.0,Traffic,Town
+60151-1,Dragster Transporter,2017,327.0,City,Town
+60152-1,Sweeper & Excavator,2017,298.0,City,Town
+60153-1,People pack Fun at the beach,2017,167.0,City,Town
+60154-1,Bus Station,2017,336.0,City,Town
+60155-1,LEGO City Advent Calendar,2017,247.0,City,Seasonal
+60156-1,Jungle Buggy,2017,,Jungle,Town
+60157-1,Jungle Starter Set,2017,,Jungle,Town
+60158,Jungle Cargo Helicopter,2017,200.0,Jungle,Town
+60158-1,Jungle Cargo Helicopter,2017,,Jungle,Town
+60159-1,Jungle Halftrack Mission,2017,378.0,Jungle,Town
+60160-1,Jungle Mobile Lab,2017,423.0,Jungle,Town
+6016-1,Knights' Arsenal,1987,,Lion Knights,Castle
+60161-1,Jungle Exploration Site,2017,813.0,Jungle,Town
+60162-1,Jungle Air Drop Helicopter,2017,1248.0,Jungle,Town
+60163-1,Coast Guard Starter Set,2017,,Coast Guard,Town
+60164-1,Sea Rescue Plane,2017,140.0,City,Town
+60165-1,4 x 4 Response Unit,2017,346.0,City,Town
+60166-1,Heavy-Duty Rescue Helicopter,2017,414.0,City,Town
+60167-1,Coast Guard Head Quarters,2017,,Coast Guard,Town
+60168-1,Sailboat Rescue,2017,194.0,City,Town
+60169-1,City Cargo Terminal,2017,740.0,City,Town
+6017-1,King's Oarsmen,1987,,Lion Knights,Castle
+6018031-1,Master Builder Academy: Kits 7-9 Subscription,2012,0.0,Master Building Academy,Master Building Academy
+6018-1,Battle Dragon,1990,,Black Knights,Castle
+6020-1,Magic Shop,1993,,Castle,Castle
+602-1,Fire Chief's Car,1978,,Fire,Town
+6021-1,Jousting Knights,1984,37.0,Lion Knights,Castle
+602-2,Fire Truck,1970,,Fire,Legoland
+6022-1,Horse Cart,1984,43.0,Lion Knights,Castle
+6023-1,Maiden's Cart,1986,45.0,Lion Knights,Castle
+6024-1,Bandit Ambush,1996,60.0,Dark Forest,Castle
+6026-1,King Leo,2000,21.0,Knights Kingdom I,Castle
+6027-1,Bat Lord's Catapult,1997,54.0,Fright Knights,Castle
+6028-1,Treasure Cart,1998,23.0,Fright Knights,Castle
+6029-1,Treasure Guard,1998,23.0,Fright Knights,Castle
+6030-1,Catapult,1984,,Black Falcons,Castle
+603-1,Sidecar,1978,,Traffic,Town
+6031-1,Fright Force,1998,28.0,Fright Knights,Castle
+6032-1,Catapult Crusher,2000,56.0,Knights Kingdom I,Castle
+603-3,Vintage Car,1970,36.0,Factory,Factory
+6033-1,Treasure Transport,1998,59.0,Ninja,Ninja
+6034-1,Black Monarch's Ghost,1990,,Black Knights,Castle
+6035-1,Castle Guard,1987,,Black Falcons,Castle
+6036-1,Skeleton Surprise,1995,74.0,Royal Knights,Castle
+6037-1,Witch's Windship,1997,,Fright Knights,Castle
+6038-1,Wolfpack Renegades,1992,98.0,Wolfpack,Castle
+6039-1,Twin-Arm Launcher,1988,,Lion Knights,Castle
+6040-1,Blacksmith Shop,1984,93.0,Lion Knights,Castle
+604-1,Shell Service Car,1978,,Station,Town
+6041-1,Armor Shop,1986,113.0,Lion Knights,Castle
+604-2,Excavator,1971,28.0,Construction,Legoland
+6042-1,Dungeon Hunters,1990,111.0,Crusaders,Castle
+6043-1,Dragon Defender,1993,156.0,Castle,Castle
+6043173-1,Friends Baking Set,2013,20.0,Friends,Friends
+6044-1,King's Carriage,1995,127.0,Royal Knights,Castle
+6045-1,Ninja Surprise,1998,112.0,Ninja,Ninja
+6046-1,Hemlock Stronghold,1996,220.0,Dark Forest,Castle
+6047-1,Traitor Transport,1997,,Fright Knights,Castle
+6048-1,Majisto's Magical Workshop,1993,188.0,Castle,Castle
+6049-1,Viking Voyager,1987,101.0,Lion Knights,Castle
+605-1,Street Sweeper,1978,,Traffic,Town
+6051-1,Play with Letters,2011,62.0,Duplo,Duplo
+605-2,Taxi,1971,,Factory,Factory
+6053-1,My First LEGO Town,2011,709.0,Basic Set,Creator
+6054-1,Forestmen's Hideout,1988,201.0,Forestmen,Castle
+6055-1,Prisoner Convoy,1985,116.0,Lion Knights,Castle
+6056-1,Dragon Wagon,1993,109.0,Castle,Castle
+6057-1,Sea Serpent,1992,,Black Knights,Castle
+6058324-1,Canada 2013 Toys R Us Easter Egg Giveaway,2013,,Easter,Seasonal
+6059-1,Knight's Stronghold,1990,227.0,Black Knights,Castle
+6060-1,Knight's Challenge,1989,,Lion Knights,Castle
+606-1,Ambulance,1978,,Hospital,Town
+6061-1,Siege Tower,1984,,Lion Knights,Castle
+606-2,Tipper Lorry,1972,22.0,Construction,Legoland
+6062-1,Battering Ram,1987,,Black Falcons,Castle
+6066-1,Camouflaged Outpost,1987,228.0,Forestmen,Castle
+6067-1,Guarded Inn,1986,256.0,Lion Knights,Castle
+607-1,Mini Loader,1979,,Construction,Town
+6071-1,Forestmen's Crossing,1990,,Forestmen,Castle
+6073-1,Knight's Castle,1984,416.0,Black Falcons,Castle
+6074-1,Black Falcon's Fortress,1986,,Black Falcons,Castle
+6075-1,Wolfpack Tower,1992,239.0,Wolfpack,Castle
+6075-2,Castle,1981,774.0,Classic Castle,Castle
+6076-1,Dark Dragon's Den,1993,219.0,Castle,Castle
+6077-1,Knight's Procession,1981,,Classic Castle,Castle
+6077-2,Forestmen's River Fortress,1989,,Forestmen,Castle
+6078-1,Royal Drawbridge,1995,259.0,Royal Knights,Castle
+6079-1,Dark Forest Fortress,1996,,Dark Forest,Castle
+6080-1,King's Castle,1984,679.0,Lion Knights,Castle
+608-1,Kiosk,1971,33.0,Building,Legoland
+6081-1,King's Mountain Fortress,1990,438.0,Crusaders,Castle
+608-2,Taxi,1979,25.0,Traffic,Town
+6082-1,Fire Breathing Fortress,1993,,Castle,Castle
+6083-1,Knight's Tournament,1981,210.0,Classic Castle,Castle
+6083-2,Samurai Stronghold,1998,198.0,Ninja,Ninja
+6085-1,Black Monarch's Castle,1988,688.0,Black Knights,Castle
+6086-1,Black Knight's Castle,1992,,Black Knights,Castle
+6087-1,Witch's Magic Manor,1997,,Fright Knights,Castle
+6088-1,Robber's Retreat,1998,281.0,Ninja,Ninja
+6089-1,Stone Tower Bridge,1998,410.0,Ninja,Ninja
+6090-1,Royal Knight's Castle,1995,764.0,Royal Knights,Castle
+609-1,Aeroplane,1972,28.0,Airport,Legoland
+6091-1,King Leo's Castle,2000,,Knights Kingdom I,Castle
+6092-1,50 Jahre In Deutschland,2006,,Basic Set,Creator
+6092-2,LEGO Special Edition Creative Building Tub,2006,706.0,Basic Set,Creator
+6093-1,Flying Ninja Fortress,1998,698.0,Ninja,Ninja
+6094-1,Guarded Treasury,2000,103.0,Knights Kingdom I,Castle
+6095-1,Royal Joust,2000,103.0,Knights Kingdom I,Castle
+6096-1,Bull's Attack,2000,315.0,Knights Kingdom I,Castle
+6097-1,Night Lord's Castle,1997,,Fright Knights,Castle
+6098-1,King Leo's Castle,2000,538.0,Knights Kingdom I,Castle
+6099-1,Traitor Transport (with Cave),1997,,Fright Knights,Castle
+6100-1,Aquashark Dart,1998,24.0,Aquasharks,Aquazone
+610-1,Vintage Car,1973,39.0,Factory,Factory
+610-2,Rescue Helicopter,1987,,Airport,Universal Building Set
+6102-1,Castle Mini Figures,1985,36.0,Supplemental,Castle
+6103-1,Castle Mini Figures,1988,,Supplemental,Castle
+6103-2,Knights,1984,,Supplemental,Castle
+6104-1,Aquacessories,1996,27.0,Supplemental,Aquazone
+6105-1,Medieval Knights,1993,37.0,Supplemental,Castle
+6107-1,Recon Ray,1998,,Stingrays,Aquazone
+6109-1,"Sea Creeper (with Stingray Baseplate, Raised)",1998,,Stingrays,Aquazone
+6110-1,Solo Sub,1998,25.0,Hydronauts,Aquazone
+611-1,Police Car,1973,19.0,Police,Legoland
+6111-1,Street Chase,2006,,Tiny Turbos,Racers
+611-2,Air Canada Jet Plane,1988,89.0,Airport,Universal Building Set
+6112-1,World of Bricks,2006,1004.0,Supplemental,Creator
+6114-1,200 + 40 Special Elements,2007,242.0,Supplemental,Creator
+6115-1,Shark Scout,1995,,Aquasharks,Aquazone
+6116-1,Box of Bricks,2007,604.0,Supplemental,Creator
+6117-1,Doors and Windows,2008,100.0,Supplemental,Creator
+6118-1,Wheels,2008,106.0,Supplemental,Creator
+6119-1,Roof Tiles,2008,150.0,Supplemental,Creator
+612-1,Tipper Truck,1974,,Construction,Legoland
+6125-1,Sea Sprint 9,1995,32.0,Aquanauts,Aquazone
+6126-1,Good Guy 2008,2008,26.0,Bionicle,Bionicle
+6127-1,Bad Guy 2008,2008,,Bionicle,Bionicle
+6128-1,Function 2008,2008,,Bionicle,Bionicle
+6130-1,DUPLO Build and Play,2011,100.0,Duplo,Duplo
+613-1,Biplane,1974,,Airport,Legoland
+6131-1,Build and Play,2011,,Basic Set,Creator
+6132-1,Red,2012,15.0,Cars,Duplo
+6133-1,Race Day,2012,,Cars,Duplo
+6134-1,Siddeley Saves the Day,2012,38.0,Cars,Duplo
+6135-1,Spy Shark,1996,60.0,Aquasharks,Aquazone
+6136-1,My First Zoo,2011,,Duplo,Duplo
+6137-1,My First LEGO Duplo Supermarket,2011,38.0,Duplo,Duplo
+6138-1,My First Fire Station,2011,60.0,Duplo,Duplo
+6140-1,Crab,1998,,Stingrays,Aquazone
+614-1,Excavator,1974,31.0,Construction,Legoland
+6143-1,Race Team,2012,,Duplo,Duplo
+6144-1,Zoo Train,2012,,Duplo,Duplo
+6145-1,Crystal Crawler,1996,96.0,Aquanauts,Aquazone
+6146-1,Pick-up Truck,2012,17.0,Duplo,Duplo
+6150-1,Crystal Detector,1998,,Hydronauts,Aquazone
+6151-1,Sleeping Beauty's Chamber,2012,16.0,Duplo,Duplo
+615-2,Fork Lift with Driver,1975,21.0,Construction,Legoland
+6152-1,Snow White's Cottage,2012,28.0,Duplo,Duplo
+6153-1,Cinderella's Carriage,2012,20.0,Duplo,Duplo
+6154-1,Cinderella's Castle,2012,77.0,Duplo,Duplo
+6155-1,Deep Sea Predator,1995,,Aquasharks,Aquazone
+6156-1,Photo Safari,2012,68.0,Duplo,Duplo
+6157-1,The Big Zoo,2012,,Duplo,Duplo
+6158-1,Duplo Animal Clinic,2012,62.0,Duplo,Duplo
+6159-1,Crystal Detector,1998,105.0,Hydronauts,Aquazone
+6160-1,Sea Scorpion,1998,,Stingrays,Aquazone
+616-1,Cargo Ship,1976,31.0,Harbor,Legoland
+6161-1,Brick Box,2007,221.0,Basic Set,Creator
+6162-1,A World of LEGO Mosaic 4 in 1,2007,286.0,Mosaic,Sculptures
+6163-1,A World of LEGO Mosaic 9 in 1,2007,,Mosaic,Sculptures
+6164-1,LEGO Rescue Building Set,2007,,Basic Set,Creator
+6166-1,Large Brick Box,2007,406.0,Basic Set,Creator
+6167-1,Deluxe Brick Box,2006,693.0,Basic Set,Creator
+6168-1,Fire Station,2012,,Duplo,Duplo
+6169-1,Fire Chief,2012,,Duplo,Duplo
+617-1,Cowboys,1976,41.0,Factory,Factory
+6171-1,My First Gas Station,2012,47.0,Duplo,Duplo
+6173-1,Panda,2012,7.0,Duplo,Duplo
+6175-1,Crystal Explorer Sub,1995,167.0,Aquanauts,Aquazone
+6176-1,Basic Bricks - Deluxe,2008,80.0,Basic Set,Duplo
+6176782-1,Escape the Space Slug,2016,161.0,Promotional,Promotional
+6177-1,LEGO Basic Bricks Deluxe,2008,,Supplemental,Creator
+6180-1,Hydro Search Sub,1998,297.0,Hydronauts,Aquazone
+618-1,Police Helicopter,1977,38.0,Police,Legoland
+6186-1,Build Your Own LEGO Harbor,2008,252.0,Basic Set,Creator
+6187-1,Road Construction Set,2008,296.0,Creator,Creator
+6190-1,Shark's Crystal Cave,1996,259.0,Aquasharks,Aquazone
+619-1,Rally Car,1977,,Factory,Factory
+6191-1,Fire Fighter Building Set,2009,,Basic Set,Creator
+6192-1,Pirates Building Set,2009,,Basic Set,Creator
+6193-1,Castle Building Set,2009,137.0,Basic Set,Creator
+6194-1,My Own LEGO Town,2009,515.0,Basic Set,Creator
+6195-1,Neptune Discovery Lab,1995,,Aquanauts,Aquazone
+6198-1,Stingray Stormer,1998,413.0,Stingrays,Aquazone
+6199-1,Hydro Crystalization Station,1998,485.0,Hydronauts,Aquazone
+6200-1,Pirates Double Pack,1989,2.0,Pirates I,Pirates
+6200-2,Evo,2012,36.0,Heroes,Hero Factory
+620-1,Fireman's Car,1978,,Fire,Town
+6201-1,Toxic Reapa,2012,42.0,Villains,Hero Factory
+620-2,Fire Truck,1970,,Fire,Legoland
+6202-2,Rocka,2012,55.0,Heroes,Hero Factory
+620-3,Blue Building Plate 32 x 32,2010,1.0,Supplemental,Creator
+6203-1,Black Phantom,2012,124.0,Villains,Hero Factory
+6204-1,Buccaneers,1997,42.0,Pirates I,Pirates
+6205-1,V-wing Fighter,2006,,Star Wars Episode 3,Star Wars
+6206-1,TIE Interceptor,2006,212.0,Star Wars Episode 4/5/6,Star Wars
+6207-1,A-wing Fighter,2006,193.0,Star Wars Episode 4/5/6,Star Wars
+6208-1,B-wing Fighter,2006,439.0,Star Wars Episode 4/5/6,Star Wars
+6209-1,Slave I (2nd edition),2006,537.0,Star Wars Episode 4/5/6,Star Wars
+6210-1,Jabba's Sail Barge,2006,,Star Wars Episode 4/5/6,Star Wars
+621-1,Police Car,1978,34.0,Police,Town
+6211-1,Imperial Star Destroyer,2006,1388.0,Star Wars Episode 4/5/6,Star Wars
+621-2,Shell Tanker Truck,1970,,Gas Station,Legoland
+6212-1,X-wing Fighter,2006,,Star Wars Episode 4/5/6,Star Wars
+6213-1,Replacement Gearbox for Electric Motor,1985,,Train,Service Packs
+6216-1,Jawblade,2012,45.0,Villains,Hero Factory
+6217-1,Surge,2012,,Heroes,Hero Factory
+6218-1,Splitface,2012,,Villains,Hero Factory
+622-1,Tipper Truck,1978,32.0,Construction,Town
+6221-1,Nex,2012,,Heroes,Hero Factory
+622-2,Baggage Carts,1970,,Airport,Legoland
+6222-1,Core Hunter,2012,51.0,Villains,Hero Factory
+6223-1,Bulk,2012,61.0,Heroes,Hero Factory
+6227-1,Breez,2012,55.0,Heroes,Hero Factory
+6228-1,Thornraxx,2012,,Villains,Hero Factory
+6229-1,XT4,2012,,Villains,Hero Factory
+6230-1,Stormer XL,2012,89.0,Heroes,Hero Factory
+623-1,Medic's Car,1978,33.0,Hospital,Town
+6231-1,Speeda Demon,2012,,Villains,Hero Factory
+623-2,White Car and Camper,1970,38.0,Factory,Factory
+6232-1,Skeleton Crew,1996,,Pirates I,Pirates
+6234-1,Renegade's Raft,1991,,Pirates I,Pirates
+6235-1,Buried Treasure,1989,27.0,Pirates I,Pirates
+6236-1,King Kahuka,1994,49.0,Islanders,Pirates
+6237-1,Pirates' Plunder,1993,28.0,Pirates I,Pirates
+6239-1,Cannon Battle,2009,,Pirates II,Pirates
+6240-1,Kraken Attackin',2009,,Pirates II,Pirates
+624-1,"Basic Motor, 9V",1996,,Supplemental,Universal Building Set
+6241-1,Loot Island,2009,,Pirates II,Pirates
+6242-1,Soldiers' Fort,2009,,Pirates II,Pirates
+6243-1,Brickbeard's Bounty,2009,,Pirates II,Pirates
+6244-1,Armada Sentry,1996,74.0,Imperial Armada,Pirates
+6245-1,Harbor Sentry,1989,26.0,Imperial Soldiers,Pirates
+6246-1,Crocodile Cage,1994,61.0,Islanders,Pirates
+6247-1,Bounty Boat,1992,,Pirates I,Pirates
+6248-1,Volcano Island,1996,123.0,Pirates I,Pirates
+6249-1,Pirates Ambush,1997,,Pirates I,Pirates
+6250-1,Cross Bone Clipper,1997,,Pirates I,Pirates
+625-1,Tractor,1978,,Construction,Town
+6251-1,Pirate Mini Figures,1989,,Pirates I,Pirates
+6252-1,Sea Mates,1993,36.0,Pirates I,Pirates
+6253-1,Shipwreck Hideout,2009,313.0,Pirates II,Pirates
+6254-1,Rocky Reef,1995,108.0,Pirates I,Pirates
+6255-1,Pirate Comic,1989,,Pirates I,Pirates
+6256-1,Islander Catamaran,1994,,Islanders,Pirates
+6257-1,Castaway's Raft,1989,54.0,Pirates I,Pirates
+6258-1,Smuggler's Shanty,1992,75.0,Pirates I,Pirates
+6259-1,Broadside's Brig,1991,,Imperial Soldiers,Pirates
+6260-1,Shipwreck Island,1989,,Pirates I,Pirates
+626-1,"Baseplate, Green",1996,1.0,Supplemental,Universal Building Set
+6261-1,Raft Raiders,1992,,Pirates I,Pirates
+626-2,Red Cross Helicopter,1978,36.0,Hospital,Town
+6262-1,King Kahuka's Throne,1994,155.0,Islanders,Pirates
+6263-1,Imperial Outpost,1995,219.0,Pirates,Pirates
+6264-1,Forbidden Cove,1994,,Islanders,Pirates
+6265-1,Sabre Island,1989,97.0,Imperial Soldiers,Pirates
+6266-1,Cannon Cove,1993,,Pirates,Pirates
+6267-1,Lagoon Lock-Up,1991,,Imperial Soldiers,Pirates
+6268-1,Renegade Runner,1993,187.0,Pirates I,Pirates
+6270-1,Forbidden Island,1989,190.0,Pirates I,Pirates
+627-1,"Baseplate, Blue",1996,1.0,Supplemental,Universal Building Set
+6271-1,Imperial Flagship,1992,,Pirates,Pirates
+6271-2,Imperial Flagship with Free Storage Case,1992,1.0,Imperial Guards,Pirates
+6273-1,Rock Island Refuge,1991,388.0,Pirates I,Pirates
+6274-1,Caribbean Clipper,1989,386.0,Imperial Soldiers,Pirates
+6276-1,Eldorado Fortress,1989,,Imperial Soldiers,Pirates
+6277-1,Imperial Trading Post,1992,,Pirates,Pirates
+6278-1,Enchanted Island,1994,,Islanders,Pirates
+6279-1,Skull Island,1995,386.0,Pirates I,Pirates
+6280-1,Armada Flagship,1996,292.0,Imperial Armada,Pirates
+628-1,X-Large Building Plate (Light Gray),1996,,Supplemental,Universal Building Set
+6281-1,Pirates Perilous Pitfall,1997,404.0,Pirates I,Pirates
+628-2,Police Helicopter,1977,38.0,Police,Legoland
+6282-1,Stringer,2012,42.0,Heroes,Hero Factory
+628-3,X-Large Gray Baseplate (Lt Bluish Gray),2003,1.0,Supplemental,Creator
+6283-1,Voltix,2012,61.0,Villains,Hero Factory
+6285-1,Black Seas Barracuda,1989,915.0,Pirates I,Pirates
+6286-1,Skull's Eye Schooner,1993,921.0,Pirates I,Pirates
+6289-1,Red Beard Runner,1996,711.0,Pirates I,Pirates
+6290-1,Red Beard Runner,2001,,Pirates I,Pirates
+629-1,Three Building Plates,1996,3.0,Supplemental,Universal Building Set
+6291-1,Armada Flagship,2001,,Imperial Armada,Pirates
+6292-1,Enchanted Island,2001,445.0,Islanders,Pirates
+6293-1,Furno,2012,,Heroes,Hero Factory
+6296-1,Shipwreck Island,1996,,Pirates I,Pirates
+6299-1,Advent Calendar 2009 Pirates,2009,24.0,Pirates,Seasonal
+6299-10,Advent Calendar 2009 Pirates (Day 9) - Plants and Crab,2009,7.0,Pirates,Seasonal
+6299-11,Advent Calendar 2009 Pirates (Day 10) - Barrel with Tools,2009,,Pirates,Seasonal
+6299-12,Advent Calendar 2009 Pirates (Day 11) - Castaway,2009,7.0,Pirates,Seasonal
+6299-13,Advent Calendar 2009 Pirates (Day 12) - Fish over Fire,2009,9.0,Pirates,Seasonal
+6299-14,Advent Calendar 2009 Pirates (Day 13) - Monkey,2009,2.0,Pirates,Seasonal
+6299-15,Advent Calendar 2009 Pirates (Day 14) - Mermaid,2009,4.0,Pirates,Seasonal
+6299-16,Advent Calendar 2009 Pirates (Day 15) - Clam and Plant,2009,,Pirates,Seasonal
+6299-17,Advent Calendar 2009 Pirates (Day 16) - Table with Food and Rat,2009,,Pirates,Seasonal
+6299-18,Advent Calendar 2009 Pirates (Day 17) - Imperial Soldier II,2009,,Pirates,Seasonal
+6299-19,Advent Calendar 2009 Pirates (Day 18) - Weapon Stand,2009,9.0,Pirates,Seasonal
+6299-2,Advent Calendar 2009 Pirates (Day 1) - Captain Brickbeard,2009,,Pirates,Seasonal
+6299-20,Advent Calendar 2009 Pirates (Day 19) - Pirate,2009,4.0,Pirates,Seasonal
+6299-21,Advent Calendar 2009 Pirates (Day 20) - Barrel and Paddle,2009,2.0,Pirates,Seasonal
+6299-22,Advent Calendar 2009 Pirates (Day 21) - Sawfish,2009,2.0,Pirates,Seasonal
+6299-23,Advent Calendar 2009 Pirates (Day 22) - Skeleton and Snake,2009,7.0,Pirates,Seasonal
+6299-24,Advent Calendar 2009 Pirates (Day 23) - Brick Arch with Fire and Skull,2009,,Pirates,Seasonal
+6299-25,Advent Calendar 2009 Pirates (Day 24) - Treasure Chest with Gems,2009,8.0,Pirates,Seasonal
+6299-3,Advent Calendar 2009 Pirates (Day 2) - Table with Lamp and Map,2009,9.0,Pirates,Seasonal
+6299-4,Advent Calendar 2009 Pirates (Day 3) - Parrot on Perch,2009,,Pirates,Seasonal
+6299-5,Advent Calendar 2009 Pirates (Day 4) - Imperial Soldier II Officer,2009,6.0,Pirates,Seasonal
+6299-6,Advent Calendar 2009 Pirates (Day 5) - Cannon,2009,8.0,Pirates,Seasonal
+6299-7,Advent Calendar 2009 Pirates (Day 6) - Crocodile,2009,3.0,Pirates,Seasonal
+6299-8,Advent Calendar 2009 Pirates (Day 7) - Pirate Female,2009,5.0,Pirates,Seasonal
+6299-9,Advent Calendar 2009 Pirates (Day 8) - Raft with Flagpole,2009,8.0,Pirates,Seasonal
+6-3,Basic Set,1973,,Basic Set,Universal Building Set
+630-1,Brick Separator,1996,,Service Packs,Service Packs
+6301-1,Town Mini-Figures,1986,,Supplemental,Town
+6302-1,Mini-Figure Set,1982,31.0,Supplemental,Town
+630-3,Brick Separator Orange,2012,1.0,Service Packs,Service Packs
+6304-1,Cross Roads Plates,1980,,Supplemental,Town
+6305-1,Trees and Flowers,1980,24.0,Supplemental,Town
+6306-1,Road Signs,1980,12.0,Supplemental,Town
+6307-1,Firemen,1983,,Supplemental,Town
+6308-1,Policemen,1982,20.0,Supplemental,Town
+6309-1,Town Mini-Figures,1988,,Supplemental,Town
+6310-1,T-Road Plates,1986,2.0,Supplemental,Town
+631-1,Doors and Windows,1996,52.0,Supplemental,Universal Building Set
+6311-1,Curved Road Plates,1986,2.0,Supplemental,Town
+6312-1,Straight Road Plates,1986,,Supplemental,Town
+6313-1,Cross-Road Plates,1986,,Supplemental,Town
+6314-1,City People,1992,,Supplemental,Town
+6315-1,Road Signs,1988,11.0,Supplemental,Town
+6316-1,Flags and Fences,1988,38.0,Supplemental,Town
+6317-1,Trees and Flowers,1988,48.0,Supplemental,Town
+6318-1,"Flowers, Trees and Fences",1996,,Supplemental,Town
+6319-1,Trees and Fences,1993,45.0,Supplemental,Town
+6320-1,T-Road Plates,1997,,Supplemental,Town
+632-1,Wheels and Tires,1996,60.0,Supplemental,Universal Building Set
+6321-1,Curved Road Plates,1997,,Supplemental,Town
+6322-1,Straight Road Plates,1997,2.0,Supplemental,Town
+6323-1,Cross Road Plates,1997,,Supplemental,Town
+6324-1,Chopper Cop,1998,24.0,Police,Town
+6325-1,Package Pick-Up,1998,29.0,Cargo,Town
+6326-1,Town Folks,1998,40.0,Supplemental,Town
+6327-1,Turbo Champs,1998,,Race,Town
+6328-1,Helicopter Transport,1998,102.0,Police,Town
+6329-1,Truck Stop,1998,139.0,Traffic,Town
+6330-1,Cargo Center,1998,,Cargo,Town
+633-1,Roof Tiles,1996,50.0,Supplemental,Universal Building Set
+6331-1,Patriot Jet,1996,166.0,Airport,Town
+6332-1,Command Post Central,1998,,Police,Town
+6333-1,Race and Chase,1998,50.0,Race,Town
+6334-1,Wave Jump Racers,1996,,Race,Town
+6335-1,Indy Transport,1996,402.0,Race,Town
+6336-1,Launch Response Unit,1995,181.0,Launch Command,Town
+6337-1,Fast Track Finish,1996,339.0,Race,Town
+6338-1,Hurricane Harbor,1995,,Coast Guard,Town
+6339-1,Shuttle Launch Pad,1995,,Launch Command,Town
+6340-1,Hook & Ladder,1994,177.0,Fire,Town
+634-1,Extra Bricks in Red,1996,,Supplemental,Universal Building Set
+6341-1,Gas N' Go Flyer,1994,106.0,Airport,Town
+6342-1,Beach Rescue Chopper,1993,,Coast Guard,Town
+6344-1,Jet Speed Justice,1993,,Police,Town
+6345-1,Aerial Acrobats,1993,350.0,Airport,Town
+6346-1,Shuttle Launching Crew,1992,413.0,Airport,Town
+6347-1,Monorail Accessory Track,1991,,Supplemental,Town
+6348-1,Surveillance Squad,1994,318.0,Police,Town
+6349-1,Vacation House,1988,215.0,Building,Town
+6350-1,Pizza To Go,1994,150.0,Food & Drink,Town
+635-1,Extra Bricks in White,1996,,Supplemental,Universal Building Set
+6351-1,Surf N' Sail Camper,1992,190.0,Recreation,Town
+6352-1,Cargomaster Crane,1991,141.0,Construction,Town
+6353-1,Coastal Cutter,1991,184.0,Coast Guard,Town
+6354-1,Pursuit Squad,1990,175.0,Police,Town
+6355-1,Derby Trotter,1989,,Recreation,Town
+6356-1,Med-Star Rescue Plane,1988,160.0,Hospital,Town
+6357-1,Stunt 'Copter N' Truck,1988,,Traffic,Town
+6358-1,Snorkel Squad,1987,154.0,Fire,Town
+6359-1,Horse Trailer,1986,,Farm,Town
+6360-1,Weekend Cottage,1986,117.0,Building,Town
+636-1,Pullback Motor,1996,,Supplemental,Universal Building Set
+6361-1,Mobile Crane,1986,,Construction,Town
+6362-1,Post Office,1982,,Post Office,Town
+6363-1,Auto Service Station,1980,,Traffic,Town
+6364-1,Paramedic Unit,1980,139.0,Hospital,Town
+6365-1,Summer Cottage,1981,,Building,Town
+6366-1,Fire & Rescue Squad,1984,,Fire,Town
+6367-1,Truck,1984,,Cargo,Town
+6368-1,Jet Airliner,1985,137.0,Airport,Town
+6369-1,Garage,1985,,Traffic,Town
+6370-1,Weekend Home,1985,,Building,Town
+637-1,Plastic Playtable,1996,3.0,Supplemental,Universal Building Set
+6371-1,Shell Service Station,1983,267.0,Station,Town
+6372-1,Town House,1982,,Building,Town
+6373-1,Motorcycle Shop,1984,186.0,Traffic,Town
+6374-1,Holiday Home,1983,265.0,Building,Town
+6375-1,Trans Air Carrier,1990,,Cargo,Town
+6375-2,Exxon Gas Station,1980,270.0,Station,Town
+6376-1,Breezeway Cafe (Breezeway Café),1990,,Food & Drink,Town
+6377-1,Delivery Center,1985,,Cargo,Town
+6378-1,Shell Service Station,1986,,Station,Town
+6379-1,Riding Stable,1986,281.0,Building,Town
+6380-1,Emergency Treatment Center,1987,312.0,Hospital,Town
+638-1,"Lots of Extra Basic Bricks, 3+",1996,404.0,Supplemental,Universal Building Set
+6381-1,Motor Speedway,1987,,Race,Town
+6382-1,Fire Station,1981,394.0,Fire,Town
+6383-1,Public Works Center,1981,420.0,Construction,Town
+6384-1,Police Station,1983,,Police,Town
+6385-1,Fire House-I,1985,,Fire,Town
+6386-1,Police Command Base,1986,401.0,Police,Town
+6387-1,Coastal Rescue Base,1989,,Coast Guard,Town
+6388-1,Holiday Home with Caravan,1989,363.0,Building,Town
+6389-1,Fire Control Center,1990,,Fire,Town
+6390-1,Main Street,1980,607.0,Traffic,Town
+639-1,"Lots of Extra Basic Bricks, 5+",1997,400.0,Supplemental,Universal Building Set
+6391-1,Cargo Center,1984,565.0,Cargo,Town
+6392-1,Airport,1985,,Airport,Town
+6393-1,Big Rig Truck Stop,1987,634.0,Traffic,Town
+6394-1,Metro Park & Service Tower,1988,632.0,Station,Town
+6395-1,Victory Lap Raceway,1988,613.0,Race,Town
+6396-1,International Jetport,1990,,Airport,Town
+6397-1,Gas N' Wash Express,1992,473.0,Station,Town
+6398-1,Central Precinct HQ,1993,633.0,Police,Town
+6399-1,Airport Shuttle,1990,,Airport,Town
+6-4,4.5V Battery Train Wagon,1977,2.0,Train,Service Packs
+6400-1,Go-Kart,1997,23.0,Race,Town
+640-1,Fire Truck,1971,45.0,Fire,Legoland
+6401-1,Seaside Cabana,1992,,Paradisa,Town
+640-2,Fire Truck and Trailer,1978,47.0,Fire,Town
+6402-1,Sidewalk Cafe,1994,48.0,Paradisa,Town
+6403-1,Paradise Playground,1993,,Paradisa,Town
+6404-1,Carriage Ride,1996,66.0,Paradisa,Town
+6405-1,Sunset Stables,1992,,Paradisa,Town
+6406-1,Go-Kart,1997,23.0,Race,Town
+6407-1,Fire Chief,1997,,Fire,Town
+6409-1,Island Arcade,1993,149.0,Paradisa,Town
+6410-1,Cabana Beach,1994,153.0,Paradisa,Town
+641-1,Excavator,1978,38.0,Construction,Town
+6411-1,Sand Dollar Cafe,1992,,Paradisa,Town
+6414-1,Dolphin Point,1995,,Paradisa,Town
+6415-1,Res-Q Jet-Ski,1998,,Res-Q,Town
+6416-1,Poolside Paradise,1992,,Paradisa,Town
+6417-1,Show Jumping Event,1997,41.0,Paradisa,Town
+6418-1,Country Club,1996,292.0,Paradisa,Town
+6419-1,Rolling Acres Ranch,1992,,Paradisa,Town
+6420-1,Mail Carrier,1998,14.0,Post Office,Town
+642-1,Tow Truck and Car,1978,43.0,Traffic,Town
+642-2,Double Excavator,1971,33.0,Construction,Legoland
+6422-1,Telephone Repair,1998,,Traffic,Town
+6423-1,Mini Tow Truck,2000,35.0,Traffic,Town
+6424-1,Rig Racers,1998,107.0,Race,Town
+6425-1,TV Chopper,1999,,Traffic,Town
+6426-1,Super Cycle Center,1998,,Traffic,Town
+6427-1,Road Signs,1999,43.0,Supplemental,Town
+6428-1,Wave Saver,1998,,Res-Q,Town
+6429-1,Blaze Responder,1999,,Fire,Town
+6430-1,Night Patroller,1991,140.0,Police,Town
+643-1,Flatbed Truck,1978,39.0,Traffic,Town
+6431-1,Road Rescue,1998,48.0,Res-Q,Town
+643-2,Mobile Crane,1971,35.0,Construction,Legoland
+6432-1,Speedway Transport,1999,,Race,Town
+6433-1,Coastwatch,1999,,Police,Town
+6434-1,Roadside Repair,1999,,Traffic,Town
+6435-1,Coast Guard HQ,1999,,Coast Guard,Town
+6436-1,Go-Kart,1999,,Race,Town
+6437-1,Beach Buggy,1999,28.0,Coast Guard,Town
+6439-1,Mini-Dumper,1999,30.0,Construction,Town
+6440-1,Jetport Fire Squad,1991,,Airport,Town
+644-1,Double Tanker,1971,,Gas Station,Legoland
+6441-1,Deep Reef Refuge,1997,,Divers,Town
+644-2,Police Mobile Patrol,1978,,Police,Town
+6442-1,Sting Ray Explorer,1997,150.0,Divers,Town
+6444-1,Outback Airstrip,1997,,Outback,Town
+6445-1,Emergency Evac,1998,99.0,Res-Q,Town
+6446-1,Crane Truck,1999,26.0,Traffic,Town
+6447-1,Dumper,1999,49.0,Construction,Town
+6450-1,Mobile Police Truck,1986,83.0,Police,Town
+645-1,Police Helicopter,1979,,Police,Town
+6451-1,River Response,1998,,Res-Q,Town
+645-2,Milk Float & Trailer,1971,,Factory,Factory
+6452-1,Mini Rocket Launcher,1999,31.0,Space Port,Town
+6453-1,Com-Link Cruiser,1999,60.0,Space Port,Town
+6454-1,Countdown Corner,1999,131.0,Space Port,Town
+6455-1,Space Simulation Station,1999,251.0,Space Port,Town
+6456-1,Mission Control,1999,499.0,Space Port,Town
+6457-1,Astronaut Figure,1999,,Space Port,Town
+6458-1,Satellite with Astronaut,1999,,Space Port,Town
+6459-1,Fuel Truck,1999,,Space Port,Town
+646-1,Auto Service Truck,1979,,Traffic,Town
+6461-1,Surveillance Chopper,1999,30.0,Space Port,Town
+646-2,Mobile Site Office,1971,51.0,Factory,Factory
+6462-1,Aerial Recovery,1998,197.0,Res-Q,Town
+6463-1,Lunar Rover,1999,36.0,Space Port,Town
+6464-1,Super Rescue Complex,1999,,Traffic,Town
+6465-1,Space Port Jet,1999,65.0,Space Port,Town
+6467-1,Power Pitstop,1999,71.0,Race,Town
+6468-1,Tow-n-Go Value Pack,1999,50.0,Traffic,Town
+6469-1,Space Port Value Pack,1999,3.0,Space Port,Town
+6470-1,Mini Dump Truck,2000,25.0,Construction,Town
+647-1,Truck with Girders,1971,51.0,Construction,Legoland
+6471-1,4WD Police Patrol,2000,30.0,Police,Town
+6472-1,Gas N' Wash Express,2001,,Station,Town
+6473-1,Res-Q Cruiser,1998,,Res-Q,Town
+6474-1,Wheeled Front Shovel,2000,49.0,Construction,Town
+6477-1,Firefighter's Lift Truck,2000,103.0,Fire,Town
+6478-1,Fire Station,2000,224.0,Fire,Town
+6479-1,Emergency Response Center,1998,,Res-Q,Town
+6480-1,Hook and Ladder Truck,1986,,Fire,Town
+648-1,Shell Service Station,1971,,Gas Station,Legoland
+6481-1,Construction Crew,1989,170.0,Construction,Town
+6482-1,Rescue Helicopter,1989,,Hospital,Town
+6483-1,Coastal Patrol,1994,245.0,Harbor,Town
+6484-1,F1 Hauler,1995,280.0,Race,Town
+6486-1,Fire Engine,1997,67.0,Fire,Town
+6487-1,Mountain Rescue,1997,,Outback,Town
+6489-1,Seaside Holiday Cottage,1997,88.0,Paradisa,Town
+6490-1,Amazon Crossing,1997,120.0,Outback,Town
+649-1,Low-Loader with Excavator,1972,36.0,Construction,Legoland
+6491-1,Rocket Racer,1996,58.0,Time Cruisers,Time Cruisers
+6492-1,Hypno Cruiser,1996,,Time Cruisers,Time Cruisers
+6493-1,Flying Time Vessel,1996,,Time Cruisers,Time Cruisers
+6494-1,Mystic Mountain Time Lab,1996,510.0,Time Cruisers,Time Cruisers
+6495-1,Time Tunnelator,1997,,Time Cruisers,Time Cruisers
+6496-1,Whirling Time Warper,1997,,Time Cruisers,Time Cruisers
+6497-1,Twisted Time Train,1997,,Time Cruisers,Time Cruisers
+6498-1,Go-Kart,1999,,Race,Town
+6499-1,Time Tunnelator,1997,,Time Cruisers,Time Cruisers
+650-1,Car with Trailer and Racing Car,1972,40.0,Factory,Factory
+6501-1,Sport Convertible,1987,30.0,Traffic,Town
+6502-1,Turbo Racer,1987,,Race,Town
+65028-1,Star Wars Co-Pack of 7115 7124 and 7141,2001,3.0,Star Wars Episode 1,Star Wars
+65030-1,Star Wars Co-Pack of 7104 and 7144,2001,2.0,Star Wars Episode 4/5/6,Star Wars
+6503-1,Sprint Racer,1988,32.0,Race,Town
+65034-1,Star Wars Co-Pack of 7121 and 7161,2001,2.0,Star Wars Episode 1,Star Wars
+6504-1,Tractor,1988,,Construction,Town
+6505-1,Fire Chief's Car,1988,,Fire,Town
+6506-1,Precinct Cruiser,1989,,Police,Town
+65062-1,Racers Turbo Pack,2002,,Drome Racers,Racers
+6507-1,Mini Dumper,1989,,Construction,Town
+65071-1,Dual Pack: Lehvak & Pahrak,2002,,Bohrok,Bionicle
+6508-1,Wave Racer,1990,37.0,Harbor,Town
+65081-1,R2-D2 8009 / C-3PO 8007 Droid Collectors Set,2002,3.0,Star Wars,Technic
+6509-1,Red Devil Racer,1991,39.0,Race,Town
+6510-1,Mud Runner,1991,,Race,Town
+65106-1,Episode II Co-Pack (contains 7103 7113),2002,2.0,Star Wars Episode 2,Star Wars
+65109-1,Pahrak Nuhvok Gahlok Co-Pack,2002,3.0,Bohrok,Bionicle
+651-1,Tow Truck and Car,1972,,Factory,Factory
+65110-1,Kohrak Lehvak Tahnok Co-Pack,2002,3.0,Bohrok,Bionicle
+6511-1,Rescue Runabout,1992,,Fire,Town
+6512-1,Landscape Loader,1992,,Construction,Town
+65127-1,Bohrok Co-Pack (contains 8560 8561 8563),2002,,Bohrok,Bionicle
+65128-1,Bohrok Co-Pack (contains 8562 8564 8565),2002,3.0,Bohrok,Bionicle
+6513-1,Glade Runner,1993,,Harbor,Town
+6514-1,Trail Ranger,1994,,Recreation,Town
+65145-1,X-wing Fighter / TIE Fighter & Y-wing Collectors Set,2002,2.0,Star Wars Episode 4/5/6,Star Wars
+6515-1,Stunt Copter,1994,,Airport,Town
+65153-1,Jango Fett's Slave I (Set 7153) with Carrying Case,2002,,Star Wars Episode 2,Star Wars
+6516-1,Moon Walker,1995,,Launch Command,Town
+6517-1,Water Jet,1996,28.0,Harbor,Town
+6518-1,Baja Buggy,1996,,Coast Guard,Town
+65182-1,Slammer Stadium,2003,25.0,Hockey,Sports
+65186-1,Bohrok 3-pack (contains 8560 8561 8564),2002,3.0,Bohrok,Bionicle
+6519-1,Turbo Tiger,2000,,Race,Town
+6520-1,Mobile Outpost,2000,,Arctic,Town
+6521-1,Emergency Repair Truck,1987,58.0,Traffic,Town
+652-2,Fork Lift Truck and Trailer,1972,,Construction,Legoland
+6522-1,Highway Patrol,1987,38.0,Police,Town
+65221-1,Streetball 2 vs 2 (box with mini basketball),2003,2.0,Basketball,Sports
+65229-1,Rahkshi Co-Pack 1,2003,,Rahkshi,Bionicle
+65230-1,Rahkshi Co-Pack 2,2003,,Rahkshi,Bionicle
+6523-1,Red Cross,1987,,Hospital,Town
+6524-1,Blizzard Blazer,1988,,Traffic,Town
+6525-1,Blaze Commander,1995,49.0,Fire,Town
+65258-1,Power Chamber with Gahlok Tahnok Va Pahrak Va and Gahlok Va,2003,,Bionicle,Bionicle
+6526-1,Red Line Racer,1989,,Race,Town
+6527-1,Tipper Truck,1989,,Construction,Town
+65277-1,Rahkshi Kaita Za Pack (Includes Turahk Lerahk Kurahk and Tahnok Va),2003,,Bionicle,Bionicle
+6528-1,Sand Storm Racer,1989,,Race,Town
+6529-1,Ultra Light I,1990,35.0,Airport,Town
+65295-1,Matoro and Kopeke Twin Pack with Gold Avohkii,2003,3.0,Matoran of Mata Nui,Bionicle
+65296-1,Hewkii and Hahli Twin Pack with Gold Avohkii,2003,3.0,Matoran of Mata Nui,Bionicle
+65297-1,Hafu and Macku Twin Pack with Gold Avohkii,2003,3.0,Matoran of Mata Nui,Bionicle
+6530-1,Sport Coupe,1990,43.0,Traffic,Town
+653-1,Ambulance and Helicopter,1973,36.0,Hospital,Legoland
+6531-1,Flame Chaser,1991,56.0,Fire,Town
+6532-1,Diesel Dumper,1991,47.0,Construction,Town
+6533-1,Police 4x4,1992,62.0,Police,Town
+65340-1,Dumper and Front End Loader Co-Pack (contains 8451 and 8453),2004,2.0,Construction,Technic
+6534-1,Beach Bandit,1992,44.0,Recreation,Town
+6535-1,Dumper,1995,42.0,Construction,Town
+6536-1,Aero Hawk,1993,48.0,Airport,Town
+65362-1,Jewels-n-Rings Click-N-Store Jewelry Set Co-Pack (7507 with jewelry box),2004,,Clikits,Clikits
+65363-1,Jewels-n-Bands Click-N-Store Jewelry Set Co-Pack (7508 with jewelry box),2004,2.0,Clikits,Clikits
+65364-1,Jewels-n-Clips Click-N-Store Jewelry Set Co-Pack (7509 with jewelry box),2004,2.0,Clikits,Clikits
+6537-1,Hydro Racer,1994,50.0,Harbor,Town
+6538-1,Rebel Roadster,1994,,Traffic,Town
+6539-1,Victory Cup Racers,1993,459.0,Race,Town
+6540-1,Pier Police,1991,358.0,Harbor,Town
+654-1,Crane Lorry,1973,33.0,Construction,Legoland
+6541-1,Intercoastal Seaport,1991,,Harbor,Town
+6542-1,Launch & Load Seaport,1991,,Harbor,Town
+6543-1,Sail N' Fly Marina,1994,,Harbor,Town
+6544-1,Shuttle Transcon 2,1995,346.0,Launch Command,Town
+6545-1,Search N' Rescue,1996,290.0,Police,Town
+6546-1,Slick Racer,1996,,Race,Town
+65468-1,Toa Metru Twin Pack with Kanoka and Poster,2004,3.0,Toa Metru,Bionicle
+6547-1,Fun Fair,1997,,Paradisa,Town
+6548-1,Octan Gas Station,1997,127.0,Gas Station,Town
+6549-1,Roadblock Runners,1997,,Traffic,Town
+6550-1,Outback Racer,1997,,Outback,Town
+655-1,Mobile Hydraulic Lift,1973,33.0,Construction,Legoland
+6551-1,Checkered Flag 500,1992,,Race,Town
+65514-1,Matoran / Vahki Co-Pack 1 (contains 8607 8611 8614 8616 8618),2004,5.0,Bionicle,Bionicle
+65515-1,Matoran / Vahki Co-Pack 2 (contains 8610 8612 8615 8617 8619),2004,5.0,Bionicle,Bionicle
+65518-1,"Spider-Man Co-Pack 1 (4853, 4857)",2004,,Spider-Man,Super Heroes
+6552-1,Rocky River Retreat,1993,,Recreation,Town
+65524-1,Hogwarts Express (2nd edition) Co-Pack (contains 10132 4515 4520),2004,,Prisoner of Azkaban,Harry Potter
+65527-1,Vladek's Attack,2004,2.0,Knights Kingdom II,Castle
+6553-1,Crisis News Crew,1997,135.0,Outback,Town
+65535-1,X-Pod Play Off Game Pack,2004,7.0,X-Pod,X-Pod
+65537-1,Classic Freight Train,2004,,My Own Train,Train
+6554-1,Blaze Brigade,1997,261.0,Fire,Town
+65542-1,Click-N-Store Jewelry Set Co-Pack (7514 with jewelry box),2004,,Clikits,Clikits
+65545-1,Ta-Metru Collector's Pack,2004,3.0,Bionicle,Bionicle
+65549-1,Bionicle Bonus Pack (8615 8617 8619 plus three Bionicle Comic books),2004,3.0,Vahki,Bionicle
+6555-1,Sea Hunter,1997,32.0,Divers,Town
+6556-1,Scuba Squad,1997,,Divers,Town
+6557-1,Treasure Hunters,1997,,Divers,Town
+65572-1,Spider-Man Co-Pack,2005,3.0,Spider-Man,Super Heroes
+65573-1,Rumble Racers,2005,,Power Racers,Racers
+65579-1,Knights' Kingdom Value Pack 8770 and 8771 with Foam Helmet,2004,3.0,Knights Kingdom II,Castle
+65580-1,Knights' Kingdom Value Pack 8772 and 8774 with Foam Helmet,2004,3.0,Knights Kingdom II,Castle
+6558-1,Shark Cage Cove,1997,196.0,Divers,Town
+6559-1,Deep Sea Bounty,1997,,Divers,Town
+6560-1,Diving Expedition Explorer,1997,478.0,Divers,Town
+656-1,Car and Caravan,1974,49.0,Legoland,Legoland
+6561-1,Hot Rod Club,1994,240.0,Race,Town
+6562-1,Gas Stop Shop,1995,225.0,Station,Town
+6563-1,Gator Landing,1996,237.0,Recreation,Town
+6564-1,Recycle Truck,1997,,Traffic,Town
+65642-1,The Grand Tournament Limited Edition Value Pack,2004,,Knights Kingdom II,Castle
+6565-1,Construction Crew,1997,,Construction,Town
+6566-1,Bank,1997,,Traffic,Town
+6567-1,Speed Splash,1998,,Extreme Team,Town
+6568-1,Drag Race Rally,1998,291.0,Extreme Team,Town
+6569-1,Polar Scout,2000,2.0,Arctic,Town
+6570-1,Snowmobile,1998,43.0,Arctic,Town
+657-1,Executive Jet,1974,,Airport,Legoland
+6571-1,Flame Fighters,1994,,Fire,Town
+65716-1,Limited Edition Collector Pack with Vohtarak Sidorak and Life-Size Toa Hordika Mask (8742 8756),2004,3.0,Bionicle,Bionicle
+6572-1,Wind Runners,1998,,Extreme Team,Town
+6573-1,Arctic Expedition,2000,120.0,Arctic,Town
+65743-1,City Construction Value Pack (7246 7242 7248),2005,0.0,Construction,Town
+6575-1,Polar Base,2000,,Arctic,Town
+65757-1,Special Edition Guardian Toa (8762/8763),2005,2.0,Toa Hagah,Bionicle
+6576-1,Sledge,1998,24.0,Arctic,Town
+65767-1,Attack from the Sea,2005,2.0,Knights Kingdom II,Castle
+65768-1,Jayko Value Pack 8783 and 8772 with Sword and Helmet,2005,,Knights Kingdom II,Castle
+65769-1,Vladek Value Pack,2005,,Knights Kingdom II,Castle
+6577-1,Snow Scooter,2000,,Arctic,Town
+65771-1,Episode III Collectors' Set,2005,,Star Wars Episode 3,Star Wars
+65777-1,City Fire Value Pack (7238 7239 7240 7241),2005,0.0,Fire,Town
+6578-1,Polar Explorer,2000,22.0,Arctic,Town
+6579-1,Ice Surfer,2000,42.0,Arctic,Town
+65799-1,City Fire Station Value Pack,2005,0.0,Fire,Town
+65800-1,City Construction Set Value Pack,2005,0.0,Construction,Town
+6580-1,Land Jet 7,1998,114.0,Extreme Team,Town
+65801-1,Trains Value Pack,2005,0.0,World City,Train
+65808-1,Toa Hordika Value Pack,2005,,Bionicle,Bionicle
+658-1,Fire Engine,1974,38.0,Fire,Legoland
+6581-1,Dig 'N' Dump,1996,,Construction,Town
+65813-1,Special Edition Co-Pack with Sidorak and Toa Iruini (8756 8762),2005,2.0,Bionicle,Bionicle
+6582-1,Daredevil Flight Squad,1998,287.0,Extreme Team,Town
+6584-1,Extreme Team Challenge,1998,357.0,Extreme Team,Town
+65844-1,Star Wars Co-Pack of 7255 4492 and 4494,2005,3.0,Star Wars Episode 3,Star Wars
+65845-1,Star Wars Co-Pack of 7256 4492 and 4494,2005,,Star Wars Episode 3,Star Wars
+65849-1,Bionicle Co-Pack (contains 8758 and 851097),2005,,Playsets,Bionicle
+6585-1,Hang-Glider,1998,19.0,Extreme Team,Town
+65851-1,Knights Kingdom II Co-Pack (contains 8876 and life size sword),2005,2.0,Knights Kingdom II,Castle
+6586-1,Polar Scout,2000,,Arctic,Town
+6589-1,Radical Racer,1998,83.0,Extreme Team,Town
+6590-1,Vacation Camper,1988,116.0,Traffic,Town
+659-1,Police Patrol with Policemen,1975,,Police,Legoland
+6591-1,Nitro Dragsters,1989,,Race,Town
+6592-1,Vacation Hideaway,1990,116.0,Building,Town
+6593-1,Blaze Battler,1991,126.0,Fire,Town
+6594-1,Gas Transit,1992,,Station,Town
+6595-1,Surf Shack,1993,93.0,Recreation,Town
+6596-1,Wave Master,1995,133.0,Harbor,Town
+6597-1,Century Skyway,1994,,Airport,Town
+6598-1,Metro PD Station,1996,,Police,Town
+6599-1,Shark Attack,1997,,Divers,Town
+6600-1,Police Patrol,1981,23.0,Police,Town
+6600-2,Highway Construction,2000,316.0,Construction,Town
+660-1,Car with Plane Transporter,1975,41.0,Factory,Factory
+6601-1,Ice Cream Cart,1985,,Food & Drink,Town
+6602-1,Fire Chief's Car,1981,,Fire,Town
+6602-2,Scorpion Buggy,2000,78.0,Race,Town
+6603-1,Shovel Truck,1985,,Construction,Town
+6604-1,Formula-I Racer,1985,31.0,Race,Town
+6605-1,Road Racer,1984,20.0,Race,Town
+6606-1,Road Repair Set,1983,,Traffic,Town
+6607-1,Service Truck,1982,25.0,Traffic,Town
+6608-1,Tractor,1982,21.0,Farm,Town
+6609-1,Race Car,1980,17.0,Race,Town
+6610-1,Gas Pumps,1981,,Station,Town
+661-1,Spirit of St. Louis,1976,,Airport,Legoland
+6611-1,Fire Chief's Car,1981,,Fire,Town
+66116-1,City Emergency Services Vehicles (Multipack),2006,0.0,City,Town
+66117-1,Offre Speciale (7235 7236 7238 7241),2007,,City,Town
+6612-1,Fire Chief's Car,1986,29.0,Fire,Town
+6613-1,Telephone Booth,1986,26.0,Traffic,Town
+66138-1,Toa Hordika Collection,2005,,Toa Hordika,Bionicle
+6614-1,Launch Evac 1,1995,,Launch Command,Town
+6615-1,Eagle Stunt Flyer,1996,75.0,Airport,Town
+66156-1,Airport Value Pack (TRU Exclusive),2006,4.0,Airport,Town
+6616-1,Rocket Dragster,2000,146.0,Race,Town
+6617-1,Tough Truck Rally,2000,387.0,Race,Town
+66174-1,Lego Firemen Bundle,2006,,Fire,Town
+66175-1,City Rescue Pack,2007,0.0,City,Town
+66177-1,City Rescue Pack,2007,,City,Town
+6618-1,Blue Racer,2000,,Race,Town
+66188-1,Creative Building Set,2007,,Basic Set,Creator
+6619-1,Red Four Wheel Driver,2000,20.0,Race,Town
+66193-1,City Super Pack (7890 7892 7902 7903),2007,,Hospital,Town
+66194-1,City Super Pack (7246 7248 7905 7990),2007,0.0,Construction,Town
+66195-1,City Super Pack (7238 7239 7241 7942 7945),2007,,Fire,Town
+6620-1,Ultimate Accessory Set 500,2006,507.0,Supplemental,Bionicle
+66207-1,Gift Set,2006,2.0,Toa Inika,Bionicle
+66208-1,Mr. Magoriums big book (Mr. Magorium's Wonder Emporium),2007,,Basic Model,Creator
+662-1,Dumper Lorry,1976,27.0,Construction,Legoland
+6621-1,Fire Truck,1984,,Fire,Town
+6622-1,Mailman on Motorcycle,1984,30.0,Post Office,Town
+66221-1,X-wing Fighter and Luke Pilot Maquette Co-Pack (TRU Exclusive),2007,1.0,Star Wars Episode 4/5/6,Star Wars
+66225-1,Gift Set,2007,2.0,Exo-Force,Exo-Force
+6623-1,Police Car,1983,40.0,Police,Town
+66237-1,Build & Play Value Pack,2008,2.0,Basic Set,Creator
+66239-1,City Super Pack 4 in 1 (7898 7997 7895 7896),2007,,RC Train,Train
+6624-1,Delivery Van,1983,,Cargo,Town
+66246-1,City Super Pack (7235 7245 7743),2008,3.0,Police,Town
+66247-1,City Super Pack (7741 7890 7942),2008,0.0,City,Town
+6625-1,Speed Trackers,1996,65.0,Police,Town
+66255-1,City Super Pack 6 in 1 (7235 7236 7741 7890 7942 7945),2008,0.0,City,Town
+66256-1,City Super Pack (7242 7733 7990 7991),2008,0.0,City,Town
+66257-1,City Super Pack 4 in 1 (7235 7236 7741 7744),2008,4.0,Police,Town
+66258-1,City Super Pack (7990 7991 7993),2008,3.0,City,Town
+66260-1,City Super Pack (7733 7734 7992),2008,3.0,Cargo,Town
+6626-1,Rescue Helicopter,1981,,Hospital,Town
+6626-2,Snow Scooter,2000,20.0,Arctic,Town
+6627-1,Convertible,1980,,Traffic,Town
+6628-1,Shell Tow Truck,1981,39.0,Station,Town
+6628-2,Construction Workers,1984,20.0,Supplemental,Town
+66282-1,City Police Co-Pack,2008,2.0,Police,Town
+66284-1,LEGO Build and Play Value Pack,2009,2.0,Basic Set,Creator
+66290-1,City Super Pack 4 in 1 (4210 7736 7737 7738),2008,4.0,Coast Guard,Town
+6629-1,Ambulance,1981,,Hospital,Town
+6630-1,Bucket Loader,1981,,Construction,Town
+66305-1,City Super Pack 3 in 1 (7235 7245 7743),2009,3.0,Police,Town
+66306-1,City Super Pack 3 in 1 (7736 7737 7738),2009,3.0,Coast Guard,Town
+66307-1,City Super Pack (7245 7732 8401),2009,,City,Town
+66308-1,Star Wars Super Pack 3 in 1 (7667 7668 8017),2009,,Star Wars Episode 4/5/6,Star Wars
+663-1,Hovercraft,1977,60.0,Harbor,Legoland
+6631-1,Steam Shovel,1985,48.0,Construction,Town
+66311-1,LEGO Creative Value Pack (TRU Exclusive),2010,,Basic Set,Creator
+66318-1,Technic Super Pack 4 in 1 (8259 8290 8293 8294),2009,,Construction,Technic
+66319-1,Power Miners Super Pack 3 in 1 (8709 8958 8959),2009,3.0,Power Miners,Power Miners
+6632-1,Tactical Patrol Truck,1985,,Police,Town
+66325-1,City Super Pack 4 in 1 (7898 7997 7895 7896),2009,,RC Train,Train
+66326-1,City Super Pack 4 in 1 (7239 7245 8401 7638),2009,0.0,City,Town
+66328-1,City Super Pack 6 in 1 (7630 5610 5612 5613 7942 7236),2009,,City,Town
+66329-1,City Super Pack 3 in 1 (7236 7741 7942),2009,,City,Town
+66330-1,City Super Pack 5 in 1 (7632 7746 7990 8401 5620),2009,5.0,City,Town
+6633-1,Family Car,1985,46.0,Traffic,Town
+66331-1,City Super Pack 3 in 1 (7630 7633 7990),2009,,Construction,Town
+6634-1,Stock Car,1986,46.0,Race,Town
+66341-1,Star Wars Super Pack 3 in 1 (8014 8015 8091),2010,,Star Wars Clone Wars,Star Wars
+66342-1,City Super Pack 3 in 1 (7213 7241 7942),2010,0.0,Fire,Town
+66345-1,City Super Pack 4 in 1 (3177 7241 7634 7638),2010,0.0,City,Town
+66357-1,City Super Pack 4 in 1 (7208 7239 7241 7942),2010,0.0,Fire,Town
+66358-1,City Super Pack 3 in 1 (7634 7635 7684),2010,,Farm,Town
+66359-1,Technic Super Pack 4 in 1 (8049 8259 8260 8293),2010,4.0,Technic,Technic
+66360-1,City Super Pack 4 in 1 (7207 7213 7241 7942),2010,,Fire,Town
+6636-1,Police Headquarters,2002,291.0,Police,Town
+66362-1,City Super Pack 4 in 1 (3177 3179 8401 8402),2010,,City,Town
+66363-1,City Super Pack 4 in 1 (7235 7236 7245 7741),2010,,Police,Town
+66364-1,Star Wars Super Pack 3 in 1 (7749 8083 8084),2010,3.0,Star Wars Episode 4/5/6,Star Wars
+66365-1,Atlantis Super Pack 4 in 1 (8057 8058 8059 8080),2010,,Atlantis,Atlantis
+66366-1,Star Wars Super Pack 3 in 1 (8089 8083 7749),2010,3.0,Star Wars Episode 4/5/6,Star Wars
+66368-1,Star Wars Super Pack 3 in 1 (8083 8084 8092),2010,3.0,Star Wars Episode 4/5/6,Star Wars
+6637-1,Ultimate Battle Set,2005,5.0,Supplemental,Bionicle
+66373-1,Fun Favor Pack,2010,,Creator,Creator
+66374-1,City Super Pack 4 in 1 (7895 7896 7937 7939),2010,,Train,Train
+66375-1,City Super Pack 4 in 1 (7235 7286 7279 7741),2011,,Police,Town
+66377-1,Star Wars Super Pack 3 in 1 (7869 7913 7914),2011,,Star Wars Clone Wars,Star Wars
+66378-1,Star Wars Super Pack 3 in 1 (8085 7913 7914),2011,3.0,Star Wars Clone Wars,Star Wars
+66380-1,LEGO Creative Value Pack (TRU UK Exclusive),2011,2.0,Basic Set,Creator
+6638-1,Ultimate Creatures Accessory Set (Special Edition) 300+ Pieces,2006,,Supplemental,Bionicle
+66383-1,Ninjago Super Pack 3 in 1 (2258 2259 2519),2011,3.0,Ninjago,Ninjago
+66386-1,Cars 2 Super Pack 3 in 1 (8206 8426 8487),2011,,Cars,Cars
+66387-1,Cars 2 Super Pack 3 in 1 (8200 8201 8206),2011,3.0,Cars,Cars
+66388-1,City Super Pack 4 in 1 (7498 7235 7279 7285),2011,,Police,Town
+66389-1,City Super Pack 5 in 1 (7288 7279 7285 7286 7741),2011,5.0,Police,Town
+6639-1,Raven Racer,1995,,Race,Town
+66392-1,"Duplo Cars Super Pack 3 in 1 (5816, 5817, 5818)",2012,-1.0,Cars,Duplo
+66394-1,Ninjago Super Pack 3 in 1 (2506 2259 2260),2011,3.0,Ninjago,Ninjago
+66395-1,Star Wars Super Pack 3 in 1 (7957 7913 7914),2011,,Star Wars,Star Wars
+66396-1,Star Wars Super Pack 3 in 1 (7877 7929 7913),2011,3.0,Star Wars Episode 1,Star Wars
+66397-1,Technic Super Pack 4 in 1 (8047 8065 8067 8069),2011,4.0,Technic,Technic
+66404-1,"Hero Factory Super Pack 2 in 1 (2065, 2067)",2011,2.0,Heroes,Hero Factory
+66405-1,City Super Pack 4 in 1 (7939 7937 7499 7895),2010,4.0,Train,Train
+66409-1,Cars Super Pack 3 in 1 (9478 8201 9485),2012,3.0,Cars,Cars
+664-1,TV Crew,1977,47.0,Factory,Factory
+66410-1,"Ninjago Super Pack 3 in 1 (9440, 9441, 9444)",2012,3.0,Ninjago,Ninjago
+6641-1,4-Wheelin' Truck,1987,81.0,Off-Road,Town
+66411-1,Star Wars Super Pack 3 in 1 (9488 9489 9495),2012,,Star Wars,Star Wars
+66412-1,"City Super Pack 2 in 1 (7285, 7741)",2012,,Police,Town
+66414-1,"Hero Factory Super Pack 2 in 1 (2143, 2145)",2012,2.0,Heroes,Hero Factory
+6642-1,Police Helicopter,1988,65.0,Police,Town
+66426-1,"City Super Pack 3 in 1 (4208, 4209, 4427)",2012,3.0,Fire,Town
+66427-1,"City Super Pack 4 in 1 (4436, 4437, 4439, 4441)",2012,,Police,Town
+66428-1,"City Super Pack 4 in 1 (4436, 7235, 7279, 7498)",2012,4.0,Police,Town
+6643-1,Fire Truck,1988,,Fire,Town
+66431-1,"Star Wars Super Pack 3 in 1 (7914, 9488, 9491)",2012,3.0,Star Wars,Star Wars
+66432-1,"Star Wars Super Pack 3 in 1 (9490, 9492, 9496)",2012,,Star Wars,Star Wars
+66433-1,"Technic Super Pack 3 in 1 (8293, 9392, 9395)",2012,,Technic,Technic
+66434-1,"Friends Super Pack 3 in 1 (3187, 3934, 3935)",2012,,Friends,Friends
+66435-1,"Friends Super Pack 4 in 1 (3061, 3183, 3934, 3936)",2012,4.0,Friends,Friends
+66436-1,"City Super Pack 2 in 1 (4436, 4437)",2012,,Police,Town
+66437-1,"Hero Factory Super Pack 2 in 1 (6216, 6293)",2012,,Hero Factory,Hero Factory
+6644-1,Road Rebel,1990,72.0,Traffic,Town
+66444-1,"Ninjago Super Pack 3 in 1 (9441, 9442, 9591)",2012,,Ninjago,Ninjago
+66448-1,"City Super Pack 3 in 1 (60000, 60001, 60002)",2013,,Fire,Town
+66449-1,"Star Wars Super Pack 3 in 1 (75000, 75003, 75014)",2013,3.0,Star Wars,Star Wars
+66450-1,"Legends of Chima Super Pack 3 in 1 (70000, 70001, 70003)",2013,3.0,Legends of Chima,Legends of Chima
+6645-1,Street Sweeper,1991,,Traffic,Town
+66451-1,"City Super Pack 4 in 1 (4431, 4432, 4433, 4435)",2012,,City,Town
+66452-1,"Hero Factory Super Pack 2 in 1 (6282, 6283)",2012,2.0,Hero Factory,Hero Factory
+6646-1,Screaming Patriot,1991,,Race,Town
+6647-1,Highway Repair,1980,54.0,Traffic,Town
+66479-1,"Super Pack 3 in 1 (75015, 75035, 75043)",2014,3.0,Star Wars Other,Star Wars
+6648-1,Mag Racer,1992,,Race,Town
+6648-2,Dump Truck,1980,,Construction,Town
+6649-1,Street Sweeper,1995,63.0,Traffic,Town
+66491-1,"Legends of Chima Super Pack 5 in 1 (70126, 70128, 70129, 70130, 70131)",2014,5.0,Legends of Chima,Legends of Chima
+66492-1,"City Super Pack 3 in 1 (60041, 60042, 60046)",2014,3.0,Police,Town
+66493-1,"City Super Pack 4 in 1 (60050, 60052, 7499, 7895)",2014,,Trains,Town
+66495-1,"Star Wars Super Pack 3 in 1 (75037, 75038, 75045)",2014,3.0,Star Wars Other,Star Wars
+6650-1,Fire and Rescue Van,1981,,Fire,Town
+6651-1,Post Office Van,1982,46.0,Post Office,Town
+66512-1,"Star Wars Super Pack 2 in 1 (75048, 75053)",2014,2.0,Star Wars Rebels,Star Wars
+66514-1,"Star Wars Microfighters Super Pack 3 in 1 (75028, 75029, 75030)",2014,,Mini,Star Wars
+66515-1,"Star Wars Microfighters Super Pack 3 in 1 (75031, 75032, 75033)",2014,3.0,Mini,Star Wars
+6652-1,Construction Truck,1983,,Construction,Town
+6653-1,Highway Emergency Van,1982,,Traffic,Town
+6654-1,Motorcycle Transport,1983,54.0,Traffic,Town
+6655-1,Auto & Tire Repair,1984,58.0,Traffic,Town
+6656-1,Tow Truck,1985,,Traffic,Town
+6657-1,Fire Patrol Copter,1985,66.0,Fire,Town
+6658-1,Bulldozer,1986,65.0,Construction,Town
+6659-1,TV Camera Crew,1986,66.0,Off-Road,Town
+6660-1,Hook & Haul Wrecker,1989,52.0,Off-Road,Town
+6661-1,Mobile TV Studio,1989,80.0,Traffic,Town
+6662-1,Backhoe,1992,87.0,Construction,Town
+6663-1,Wave Rebel,1993,78.0,Harbor,Town
+6664-1,Chopper Cops,1993,71.0,Police,Town
+6665-1,River Runners,1994,77.0,Recreation,Town
+6666-1,Ambulance,1994,,Hospital,Town
+6667-1,Pothole Patcher,1993,,Traffic,Town
+6668-1,Recycle Truck,1992,,Traffic,Town
+6669-1,Diesel Daredevil,1991,90.0,Race,Town
+6670-1,Rescue Rig,1993,114.0,Traffic,Town
+6671-1,Utility Repair Lift,1989,107.0,Traffic,Town
+6672-1,Safari Off-Road Vehicle,1990,67.0,Off-Road,Town
+6673-1,Solo Trainer,1990,74.0,Airport,Town
+6674-1,Crane Truck,1988,94.0,Traffic,Town
+6675-1,Road & Trail 4x4,1988,81.0,Off-Road,Town
+6676-1,Mobile Command Unit,1986,,Police,Town
+6677-1,Motocross Racing,1986,75.0,Race,Town
+6678-1,Pneumatic Crane,1980,61.0,Construction,Town
+6679-1,Dark Shark,1991,,Harbor,Town
+6679-2,Exxon Tow Truck,1980,,Traffic,Town
+6680-1,Ambulance,1981,,Hospital,Town
+6681-1,Police Van,1981,81.0,Police,Town
+6682-1,Cement Mixer,1985,90.0,Construction,Town
+6683-1,Burger Stand,1983,68.0,Food & Drink,Town
+6684-1,Police Patrol Squad,1984,,Police,Town
+6685-1,Fire Copter 1,1982,,Fire,Town
+6686-1,Backhoe,1984,88.0,Construction,Town
+6687-1,Turbo Prop I,1987,78.0,Airport,Town
+6688-1,Ambulance,1985,72.0,Hospital,Town
+6689-1,Post-Station,1985,54.0,Post Office,Town
+6690-1,Snorkel Pumper,1980,103.0,Fire,Town
+6691-1,Red Cross Helicopter,1981,,Hospital,Town
+6692-1,Tractor Trailer,1983,97.0,Cargo,Town
+6693-1,Refuse Collection Truck,1987,114.0,Traffic,Town
+6694-1,Car with Camper,1984,,Traffic,Town
+6695-1,Shell Tanker,1984,,Station,Town
+6696-1,Exxon Fuel Tanker,1984,106.0,Station,Town
+6697-1,Rescue-I Helicopter,1985,85.0,Coast Guard,Town
+6698-1,RV with Speedboat,1986,,Harbor,Town
+6699-1,Cycle Fix-It Shop,1987,81.0,Traffic,Town
+670-1,Mobile Crane,1978,55.0,Construction,Town
+6701-1,Minifig Pack,1983,36.0,Supplemental,Space
+6702-1,Minifig Pack,1986,43.0,Supplemental,Space
+6703-1,Minifig Pack,1988,42.0,Supplemental,Space
+6704-1,Minifig Pack,1991,,Supplemental,Space
+6705-1,Space Explorers,1994,39.0,Supplemental,Space
+6706-1,Frontier Patrol,1997,,Cowboys,Western
+6707-1,Green Buggy,2000,,Race,Town
+6709-1,Tribal Chief,1997,16.0,Indians,Western
+670F-1,Wheels Pack,2004,,Supplemental,Racers
+6710-1,Space Landing Pads,1991,2.0,Supplemental,Space
+671-1,Shell Fuel Tanker,1978,,Station,Town
+6711-1,Space Mini-Figs,1983,,Supplemental,Space
+6712-1,Sheriff's Showdown,1996,,Cowboys,Western
+6713-1,Grip 'n' Go Challenge,2000,,Race,Town
+6714-1,Speed Dragster,2000,,Race,Town
+6716-1,Covered Wagon,1996,,Cowboys,Western
+6718-1,Raindance Ridge,1997,,Indians,Western
+6719-1,Brachiosaurus,2001,,Dinosaurs,Dinosaurs
+671F-1,Antenna Pack,2004,,Supplemental,Racers
+6720-1,Tyrannosaurus Rex,2001,,Dinosaurs,Dinosaurs
+672-1,Fire Emergency Van,1978,,Fire,Town
+6721-1,Mosasaurus,2001,26.0,Dinosaurs,Dinosaurs
+6722-1,Styracosaurus,2001,19.0,Dinosaurs,Dinosaurs
+673-1,Rally Repair Crew,1978,,Traffic,Town
+6731-1,Skateboarding Pepper,2002,13.0,Island Xtreme Stunts,Island Xtreme Stunts
+6732-1,Brickster's Trike,2002,17.0,Island Xtreme Stunts,Island Xtreme Stunts
+6733-1,Snap's Cruiser,2002,,Island Xtreme Stunts,Island Xtreme Stunts
+6734-1,Beach Cruiser,2002,54.0,Island Xtreme Stunts,Island Xtreme Stunts
+6735-1,Air Chase,2002,85.0,Island Xtreme Stunts,Island Xtreme Stunts
+6736-1,Beach Lookout,2002,88.0,Island Xtreme Stunts,Island Xtreme Stunts
+6737-1,Wake Rider (Wave Catcher),2002,92.0,Island Xtreme Stunts,Island Xtreme Stunts
+6738-1,Skateboard Challenge,2002,116.0,Island Xtreme Stunts,Island Xtreme Stunts
+6739-1,Truck and Stunt Trikes,2002,198.0,Island Xtreme Stunts,Island Xtreme Stunts
+673F-1,Gearbox Pack,2004,6.0,Supplemental,Racers
+6740-1,Tower,2002,332.0,Island Xtreme Stunts,Island Xtreme Stunts
+674-1,Forklift & Truck,1978,,Construction,Town
+6741-1,Mini Jet,2009,63.0,Airport,Creator
+6742-1,Mini Off-Roader,2009,64.0,Creator,Creator
+6743-1,Street Speeder,2009,165.0,Traffic,Creator
+6745-1,Propellor Power,2009,247.0,Airport,Creator
+6746-1,Chief's Tepee,1997,135.0,Indians,Western
+6747-1,Race Rider,2009,266.0,Riding Cycle,Creator
+6748-1,Boulder Cliff Canyon,1997,256.0,Indians,Western
+6750-1,Sonic Robot,1986,,Classic Space,Space
+675-1,Snack Bar,1979,64.0,Food & Drink,Town
+6751-1,Fiery Legend,2009,,Creature,Creator
+6752-1,Fire Truck,2009,771.0,Fire,Creator
+6753-1,Highway Transport,2009,,Traffic,Creator
+6754-1,Family Home,2009,978.0,Building,Creator
+6755-1,Sheriff's Lock-Up,1996,177.0,Cowboys,Western
+6758-1,Read & Build Grow Caterpillar Grow,2012,18.0,Duplo,Duplo
+6759-1,Read & Build Busy Farm,2012,,Duplo,Duplo
+6760-1,Read & Build Let's Go Vroom,2012,,Duplo,Duplo
+6761-1,Bandit's Secret Hide-Out,1996,249.0,Cowboys,Western
+6762-1,Fort Legoredo,2002,687.0,Cowboys,Western
+6763-1,Rapid River Village,2002,354.0,Indians,Western
+6764-1,Sheriff's Lock-Up,2002,176.0,Cowboys,Western
+6765-1,Gold City Junction,1996,,Cowboys,Western
+6766-1,Rapid River Village,1997,354.0,Indians,Western
+6769-1,Fort Legoredo,1996,687.0,Cowboys,Western
+6770-1,Lunar Transporter Patroller,1988,117.0,Futuron,Space
+677-1,Knight's Procession,1979,,Classic Castle,Castle
+6771-1,Ogel Command Striker,2001,29.0,Alpha Team,Alpha Team
+6772-1,Alpha Team Cruiser,2001,56.0,Alpha Team,Alpha Team
+6773-1,Alpha Team Helicopter,2001,,Alpha Team,Alpha Team
+6774-1,Alpha Team ATV,2001,134.0,Alpha Team,Alpha Team
+6775-1,Alpha Team Bomb Squad,2001,,Alpha Team,Alpha Team
+6776-1,Ogel Control Center,2001,414.0,Alpha Team,Alpha Team
+6780-1,XT Starship,1986,,Classic Space,Space
+6781-1,SP-Striker,1989,,Space Police I,Space
+6783-1,Sonar Transmitting Cruiser,1986,,Classic Space,Space
+6784-1,Creative Sorter,2012,26.0,Duplo,Duplo
+6785-1,Creative Cakes,2012,,Duplo,Duplo
+6790-1,Bandit's Wheelgun (Boxed),1997,,Cowboys,Western
+6791-1,Bandit's Wheelgun,1997,20.0,Cowboys,Western
+6799-1,Showdown Canyon,1997,74.0,Cowboys,Western
+6800-1,Cyber Blaster,1997,20.0,UFO,Space
+680-1,Low-Loader and Crane,1971,62.0,Construction,Legoland
+6801-1,Moon Buggy,1981,22.0,Classic Space,Space
+6802-1,Space Probe,1986,26.0,Classic Space,Space
+6803-1,Space Patrol,1983,,Classic Space,Space
+6804-1,Surface Rover,1984,21.0,Classic Space,Space
+6805-1,Astro Dasher,1985,29.0,Classic Space,Space
+6806-1,Surface Hopper,1985,,Classic Space,Space
+6807-1,Space Sledge with Astronaut and Robot,1985,24.0,Classic Space,Space
+6808-1,Galaxy Trekkor,1987,,Classic Space,Space
+6809-1,XT-5 and Droid,1988,,Classic Space,Space
+6810-1,Laser Ranger,1989,,Futuron,Space
+681-1,Low-Loader with 4 Wheel Excavator,1971,63.0,Construction,Legoland
+6811-1,Pulsar Charger,1990,26.0,M:Tron,Space
+6812-1,Grid Trekkor,1991,25.0,Blacktron II,Space
+6813-1,Galactic Chief,1993,24.0,Space Police II,Space
+6814-1,Ice Tunnelator,1993,,Ice Planet 2002,Space
+6815-1,Hovertron,1996,27.0,Exploriens,Space
+6816-1,Cyber Blaster,1997,20.0,UFO,Space
+6817-1,Beta Buzzer,1998,32.0,Insectoids,Space
+6818-1,Cyborg Scout,1997,,UFO,Space
+6820-1,Starfire I,1986,34.0,Classic Space,Space
+682-1,Low-Loader and Tractor,1971,57.0,Construction,Legoland
+6821-1,Shovel Buggy,1980,,Classic Space,Space
+6822-1,Space Digger,1981,33.0,Classic Space,Space
+6823-1,Surface Transport,1983,,Classic Space,Space
+6824-1,Space Dart I,1984,,Classic Space,Space
+6825-1,Cosmic Comet,1985,,Classic Space,Space
+6826-1,Crater Crawler,1985,,Classic Space,Space
+6827-1,Strata Scooter,1987,35.0,Classic Space,Space
+6828-1,Twin-Winged Spoiler,1988,,Futuron,Space
+6829-1,Radon Rover,1997,,UFO,Space
+6830-1,Space Patroller,1988,51.0,Futuron,Space
+683-1,Articulated Lorry,1971,58.0,Vehicle,Legoland
+6831-1,Message Decoder,1989,34.0,Space Police I,Space
+6832-1,Super Nova II,1991,42.0,Blacktron II,Space
+6833-1,Beacon Tracer,1990,40.0,M:Tron,Space
+6834-1,Celestial Sled,1993,55.0,Ice Planet 2002,Space
+6835-1,Saucer Scout,1994,47.0,Spyrius,Space
+6836-1,V-Wing Fighter,1997,,UFO,Space
+6837-1,Cosmic Creeper,1998,57.0,Insectoids,Space
+684-1,Low-Loader with Fork Lift Truck,1972,,Construction,Legoland
+6841-1,Mineral Detector,1980,,Classic Space,Space
+6842-1,Shuttle Craft,1981,46.0,Classic Space,Space
+6844-1,Seismologic Vehicle (Sismobile),1983,46.0,Classic Space,Space
+6845-1,Cosmic Charger,1986,,Classic Space,Space
+6846-1,Tri-Star Voyager,1984,,Classic Space,Space
+6847-1,Space Dozer,1985,49.0,Classic Space,Space
+6848-1,Strategic Pursuer,1988,62.0,Futuron,Space
+6848-2,Interplanetary Shuttle,1985,,Classic Space,Space
+6848-3,Strategic Pursuer,1988,,Space,Space
+6849-1,Satellite Patroller,1987,47.0,Classic Space,Space
+6850-1,Auxiliary Patroller,1989,46.0,Futuron,Space
+685-1,Truck with Trailer,1972,,Factory,Factory
+6851-1,Tri-Wheeled Tyrax,1991,,Blacktron II,Space
+685-2,Truck with Trailer (without Stickers),1972,50.0,Factory,Factory
+6852-1,Sonar Security,1993,61.0,Space Police II,Space
+6854-1,Alien Fossilizer,1996,51.0,Exploriens,Space
+6856-1,Planetary Decoder,1996,78.0,Exploriens,Space
+6857-1,The Dynamic Duo Funhouse Escape,2012,378.0,Batman,Super Heroes
+6858-1,Catwoman Catcycle City Chase,2012,89.0,Batman,Super Heroes
+6860-1,The Batcave,2012,,Batman,Super Heroes
+686-1,Tipper Trucks and Loader,1973,70.0,Construction,Legoland
+6861-1,X1 Patrol Craft,1980,,Classic Space,Space
+6861-2,Super Model Building Instruction,1993,,Blacktron II,Space
+6862-1,Secret Space Voyager,1991,254.0,M:Tron,Space
+6862-2,Superman vs Power Armour Lex,2012,208.0,Superman,Super Heroes
+6863-1,Batwing Battle Over Gotham City,2012,277.0,Batman,Super Heroes
+6864-1,Batmobile and the Two-Face Chase,2012,541.0,Batman,Super Heroes
+6865-1,Captain America's Avenging Cycle,2012,71.0,Avengers,Super Heroes
+6866-1,Wolverine's Chopper Showdown,2012,199.0,X-Men,Super Heroes
+6867-1,Loki's Cosmic Cube Escape,2012,,Avengers,Super Heroes
+6868-1,Hulk’s Helicarrier Breakout,2012,385.0,Avengers,Super Heroes
+6869-1,Quinjet Aerial Battle,2012,748.0,Avengers,Super Heroes
+6870-1,Space Probe Launcher,1981,,Classic Space,Space
+687-1,Caravelle Plane,1973,,Airport,Legoland
+6871-1,Star Patrol Launcher,1984,71.0,Classic Space,Space
+6872-1,Xenon X-Craft,1986,,Classic Space,Space
+6873-1,Spider-Man's Doc Ock Ambush,2012,,Spider-Man,Super Heroes
+6874-1,Moon Rover,1986,66.0,Classic Space,Space
+6875-1,Hovercraft,1988,,Futuron,Space
+6876-1,Alienator,1988,92.0,Blacktron I,Space
+6877-1,Vector Detector,1990,62.0,M:Tron,Space
+6878-1,Sub Orbital Guardian,1991,75.0,Blacktron II,Space
+6879-1,Blizzard Baron,1993,83.0,Ice Planet 2002,Space
+6880-1,Surface Explorer,1982,83.0,Classic Space,Space
+688-1,Shell Double Tanker,1973,,Gas Station,Legoland
+6881-1,Lunar Rocket Launcher,1984,98.0,Classic Space,Space
+6882-1,Walking Astro Grappler,1985,102.0,Classic Space,Space
+6883-1,Terrestrial Rover,1987,,Classic Space,Space
+6884-1,Aero Module,1987,,Futuron,Space
+6885-1,Saturn Base Main Team (Crater Crawler),1988,101.0,Futuron,Space
+6886-1,Galactic Peace Keeper,1989,121.0,Space Police I,Space
+6887-1,Allied Avenger,1991,,Blacktron II,Space
+6889-1,Recon Robot,1994,,Spyrius,Space
+6890-1,Cosmic Cruiser,1982,,Classic Space,Space
+689-1,Mobile Crane,1974,,Construction,Legoland
+6891-1,Gamma V Laser Craft,1985,135.0,Classic Space,Space
+6892-1,Modular Space Transport,1986,150.0,Classic Space,Space
+6893-1,Orion II Hyperspace,1987,162.0,Futuron,Space
+6894-1,Invader,1987,,Blacktron I,Space
+6895-1,Spy-Trak 1,1989,152.0,Space Police I,Space
+6896-1,Celestial Forager,1990,,M:Tron,Space
+6897-1,Rebel Hunter,1992,146.0,Space Police II,Space
+6898-1,Ice-Sat V,1993,136.0,Ice Planet 2002,Space
+6899-1,Nebula Outpost,1996,156.0,Exploriens,Space
+6900-1,Cyber Saucer,1997,112.0,UFO,Space
+690-1,Shell Station,1974,,Gas Station,Legoland
+6901-1,Mobile Lab,1980,139.0,Classic Space,Space
+6901-2,Space Plane,1998,20.0,UFO,Space
+6902-1,Space Plane,1998,20.0,UFO,Space
+6903-1,Bug Blaster,1998,,Insectoids,Space
+6905-1,Bi-Wing Blaster,1998,112.0,Insectoids,Space
+6907-1,Sonic Stinger,1998,,Insectoids,Space
+6909-1,Sonic Stinger with Promotional Mask,1998,96.0,Insectoids,Space
+6910-1,Mini Sports Car,2012,,Creator,Creator
+691-1,Rescue Helicopter,1974,,Fire,Legoland
+6911-1,Mini Fire Truck,2012,69.0,Creator,Creator
+6912-1,Super Soarer,2012,130.0,Creator,Creator
+6913-1,Blue Roadster,2012,152.0,Creator,Creator
+6914-1,T-Rex,2012,,Creator,Creator
+6915-1,Warp Wing Fighter,1997,234.0,UFO,Space
+6918-1,Blacksmith Attack,2011,110.0,Kingdoms,Castle
+6919-1,Planetary Prowler,1998,,Insectoids,Space
+692-1,Road Repair Crew,1975,59.0,Construction,Legoland
+6921-1,Monorail Accessory Track,1988,46.0,Futuron,Space
+6923-1,Particle Ionizer,1990,192.0,M:Tron,Space
+6925-1,Interplanetary Rover,1988,211.0,Futuron,Space
+6926-1,Mobile Recovery Vehicle,1986,150.0,Classic Space,Space
+6927-1,All-Terrain Vehicle,1981,173.0,Classic Space,Space
+6928-1,Uranium Search Vehicle,1984,201.0,Classic Space,Space
+6929-1,Star Fleet Voyager,1981,246.0,Classic Space,Space
+6930-1,Space Supply Station,1983,206.0,Classic Space,Space
+693-1,Fire Engine with Firemen,1975,72.0,Fire,Legoland
+6931-1,FX Star Patroller,1985,,Classic Space,Space
+6932-1,Stardefender 200,1987,251.0,Futuron,Space
+6933-1,Spectral Starguider,1991,,Blacktron II,Space
+6934-1,BIONICLE Good Guy Polybag (Disney Promotional Sweden),2006,,Bionicle,Bionicle
+6935-1,BIONICLE Bad Guy (Disney Promotional Sweden),2006,,Bionicle,Bionicle
+6936-1,Piraka & Catapult,2007,,Bionicle,Bionicle
+6937-1,Give Away,2006,,Bionicle,Bionicle
+6938-1,Scorpion Detector,1996,196.0,Exploriens,Space
+6939-1,Saucer Centurion,1994,222.0,Spyrius,Space
+6940-1,Alien Moon Stalker,1986,268.0,Classic Space,Space
+694-1,Transport Truck,1975,64.0,Factory,Factory
+6941-1,Battrax,1987,284.0,Blacktron I,Space
+6942-1,Zo Weevil,1999,20.0,Insectoids,Space
+6943-1,Zo Weevil,1999,,Insectoids,Space
+6944-1,Good Guy 07,2007,,Bionicle,Bionicle
+6945-1,Bad Guy,2007,25.0,Bionicle,Bionicle
+6946-1,Squid Launcher Function,2007,23.0,Bionicle,Bionicle
+6949-1,Robo-Guardian,1994,366.0,Spyrius,Space
+6950-1,Mobile Rocket Transport,1982,,Classic Space,Space
+695-1,Racing Car,1976,67.0,Factory,Factory
+6951-1,Robot Command Center,1984,295.0,Classic Space,Space
+6952-1,Solar Power Transporter,1985,305.0,Classic Space,Space
+6953-1,Cosmic Laser Launcher,1987,211.0,Futuron,Space
+6954-1,Renegade,1987,,Blacktron I,Space
+6955-1,Space Lock-Up Isolation Base,1989,253.0,Space Police I,Space
+6956-1,Stellar Recon Voyager,1990,,M:Tron,Space
+6957-1,Solar Snooper,1992,,Space Police II,Space
+6958-1,Android Base,1996,268.0,Exploriens,Space
+6959-1,Lunar Launch Site,1994,,Spyrius,Space
+696-1,Bus Stop,1976,80.0,Factory,Factory
+6963-1,X-wing Fighter - Mini (Kabaya Box),2004,41.0,Mini,Star Wars
+6963-2,X-wing Fighter - Mini (Polybag),2004,,Mini,Star Wars
+6964-1,Boba Fett's Slave I - Mini (Kabaya Box),2004,,Mini,Star Wars
+6964-2,Boba Fett's Slave I - Mini (Polybag),2004,25.0,Mini,Star Wars
+6965-1,TIE Interceptor - Mini (Kabaya Box),2004,32.0,Mini,Star Wars
+6965-2,TIE Interceptor - Mini (Polybag),2005,32.0,Star Wars Episode 4/5/6,Star Wars
+6966-1,Jedi Starfighter - Mini,2005,38.0,Mini,Star Wars
+6966-2,Jedi Starfighter - Mini - Korean Duracell promo package with 8 AA batteries,2005,38.0,Mini,Star Wars
+6967-1,ARC-170 Starfighter - Mini,2005,42.0,Mini,Star Wars
+6967-2,ARC-170 Starfighter - Mini - Korean Duracell promo package with 8 AA batteries,2005,42.0,Mini,Star Wars
+6968-1,Mini Wookiee Attack,2005,,Mini,Star Wars
+6969-1,Celestial Stinger,1998,,Insectoids,Space
+6970-1,Beta I Command Base,1980,270.0,Classic Space,Space
+697-1,Stagecoach,1976,96.0,Factory,Factory
+6971-1,Inter-Galactic Command Base,1984,329.0,Classic Space,Space
+697-2,Idea Book 697,1997,2.0,Books,Books
+6972-1,Polaris I Space Lab,1987,390.0,Classic Space,Space
+6973-1,Deep Freeze Defender,1993,417.0,Ice Planet 2002,Space
+6975-1,Alien Avenger,1997,,UFO,Space
+6977-1,Arachnoid Star Base,1998,,Insectoids,Space
+6979-1,Interstellar Starfighter,1997,291.0,UFO,Space
+6980-1,Galaxy Commander,1983,,Classic Space,Space
+698-1,JAL Boeing 727,1977,,Airport,Legoland
+6981-1,Aerial Intruder,1991,,Blacktron II,Space
+6982-1,Explorien Starship,1996,,Exploriens,Space
+6983-1,Ice Station Odyssey,1993,,Ice Planet 2002,Space
+6984-1,Galactic Mediator,1992,,Space Police II,Space
+6985-1,Cosmic Fleet Voyager,1986,413.0,Classic Space,Space
+6986-1,Mission Commander,1989,,Space Police I,Space
+6987-1,Message Intercept Base,1988,,Blacktron I,Space
+6987-2,Message Intercept Base,1988,575.0,Blacktron I,Space
+6988-1,Alpha Centauri Outpost,1991,406.0,Blacktron II,Space
+6989-1,Mega Core Magnetizer,1990,509.0,M:Tron,Space
+6990-1,Monorail Transport System,1988,731.0,Futuron,Space
+699-1,Photo Safari,1977,,Factory,Factory
+6991-1,Monorail Transport Base,1994,571.0,Unitron,Space
+6999-1,Cyber Saucer,1997,113.0,UFO,Space
+70000-1,Razcal's Glider,2013,108.0,Legends of Chima,Legends of Chima
+7000-1,Baby Ankylosaurus,2001,,Dinosaurs,Dinosaurs
+70001-1,Crawley’s Claw Ripper,2013,138.0,Legends of Chima,Legends of Chima
+70002-1,Lennox' Lion Attack,2013,229.0,Legends of Chima,Legends of Chima
+70003-1,Eris' Eagle Interceptor,2013,347.0,Legends of Chima,Legends of Chima
+70004-1,Wakz' Pack Tracker,2013,,Legends of Chima,Legends of Chima
+70005-1,Laval's Royal Fighter,2013,,Legends of Chima,Legends of Chima
+70006-1,Cragger’s Command Ship,2013,607.0,Legends of Chima,Legends of Chima
+70007-1,Eglor's Twin Bike,2013,224.0,Legends of Chima,Legends of Chima
+70008-1,Gorzan’s Gorilla Striker,2013,503.0,Legends of Chima,Legends of Chima
+70009-1,Worriz’s Combat Lair,2013,657.0,Legends of Chima,Legends of Chima
+700-1,10 x 20 Brickplate,1966,,Supplemental,Classic
+70010-1,The Lion CHI Temple,2013,,Legends of Chima,Legends of Chima
+7001-1,Baby Iguanodon,2001,23.0,Dinosaurs,Dinosaurs
+700.1.1-1,Individual 2 x 4 Bricks,1950,10.0,Supplemental,Classic
+70011-1,Eagles’ Castle,2013,372.0,Speedorz,Legends of Chima
+700.1-2,Gift Package,1957,,Basic Set,Classic
+700.1.2-1,Individual 2 x 2 Bricks,1950,9.0,Supplemental,Classic
+70012-1,Rubber Bands,1985,,Technic,Service Packs
+70012-2,Razar’s CHI Raider,2013,412.0,Legends of Chima,Legends of Chima
+70013-1,Equila's Ultra Striker,2013,340.0,Legends of Chima,Legends of Chima
+700.1.4-1,Individual 1 x 2 Bricks,1953,1.0,Supplemental,Classic
+70014-1,The Croc Swamp Hideout,2013,645.0,Legends of Chima,Legends of Chima
+700.16-1,Individual 2 x 8 Bricks,1954,5.0,Supplemental,Classic
+700.20-1,Individual 2 x 10 Bricks,1954,,Supplemental,Classic
+7002-1,Baby Brachiosaurus,2001,31.0,Dinosaurs,Dinosaurs
+700.2-2,Gift Package,1957,0.0,Basic Set,Classic
+700.24-1,Individual 2 x 12 Bricks,1954,5.0,Supplemental,Classic
+700.28-1,Individual 2 x 14 Bricks,1954,,Supplemental,Classic
+7003-1,Baby Dimetrodon,2001,20.0,Dinosaurs,Dinosaurs
+700.3.4-1,Individual 2 x 3 Bricks,1953,,Supplemental,Classic
+700.3A-2,Gift Package,1957,0.0,Town Plan,Classic
+7009-1,The Final Joust,2007,62.0,Fantasy Era,Castle
+700.A-1,Automatic Binding Bricks Small Brick Set (Lego Mursten),1950,,Basic Set,Classic
+700.B-1,Early LEGO Windows/Doors (without Glass),1953,,Supplemental,Classic
+700.B.1-1,Individual 1 x 4 x 2 Window (without glass),1950,,Supplemental,Classic
+700.B.2-1,Individual 1 x 2 x 3 Window (without glass),1950,,Supplemental,Classic
+700.B.3-1,Individual 1 x 2 x 2 Window (without glass),1950,,Supplemental,Classic
+700.B.4-1,Individual 1 x 2 x 4 Door (without glass),1950,7.0,Supplemental,Classic
+700.C-1,Tall Classic Windows/Door (with Glass),1954,,Supplemental,Classic
+700.C.1-1,Individual 1 x 6 x 4 Panorama Window (with glass),1954,,Supplemental,Classic
+700.C.2-1,Individual 1 x 6 x 3 3-Pane Window (with glass),1954,,Supplemental,Classic
+700.C.3-1,Individual 1 x 6 x 3 Shutter Window (with glass),1954,4.0,Supplemental,Classic
+700.C.4-1,Individual 1 x 4 x 3 Window (with glass),1954,,Supplemental,Classic
+700.C.5-1,Individual 1 x 3 x 3 Window (with glass),1954,4.0,Supplemental,Classic
+700.C.6-1,Individual 1 x 2 x 4 Door (with glass),1954,4.0,Supplemental,Classic
+700.F-1,Automatic Binding Bricks - Small Brick Set (Lego Mursten),1953,,Supplemental,Classic
+700GP0-1,Gift Package,1957,244.0,Town Plan,Classic
+700GP5-1,Gift Package (Lego Mursten),1954,54.0,Town Plan,Classic
+700GP6-1,Gift Package (Lego Mursten),1954,46.0,Town Plan,Classic
+700GP6-2,Gift Package,1957,,Town Plan,Classic
+700.H-1,Individual 4 x 4 Corner Bricks,1954,,Supplemental,Classic
+700K-1,Kindergarten LEGO Set,1960,,Classic,Educational and Dacta
+700L-1,Empty Kindergarten LEGO Box,1961,1.0,Classic,Educational and Dacta
+70100-1,Ring of Fire,2013,78.0,Speedorz,Legends of Chima
+70101-1,Target Practice,2013,,Speedorz,Legends of Chima
+70102-1,CHI Waterfall,2013,106.0,Speedorz,Legends of Chima
+70103-1,Boulder Bowling,2013,93.0,Speedorz,Legends of Chima
+70104-1,Jungle Gates,2013,81.0,Speedorz,Legends of Chima
+70105-1,Nest Dive,2013,97.0,Speedorz,Legends of Chima
+70106-1,Ice Tower,2013,101.0,Speedorz,Legends of Chima
+70107-1,Skunk Attack,2013,97.0,Speedorz,Legends of Chima
+70108-1,Royal Roost,2013,100.0,Speedorz,Legends of Chima
+70109-1,Whirling Vines,2013,,Speedorz,Legends of Chima
+701-1,Hinges,1984,3.0,Service Packs,Service Packs
+70110-1,Tower Target,2013,86.0,Speedorz,Legends of Chima
+70111-1,Swamp Jump,2013,86.0,Speedorz,Legends of Chima
+70112-1,Croc Chomp,2013,,Speedorz,Legends of Chima
+70113-1,CHI Battles,2013,92.0,Speedorz,Legends of Chima
+70114-1,Sky Joust,2013,117.0,Speedorz,Legends of Chima
+70115-1,Ultimate Speedor Tournament,2013,236.0,Speedorz,Legends of Chima
+70123-1,Lion Legend Beast,2014,119.0,Legend Beasts,Legends of Chima
+70124-1,Eagle Legend Beast,2014,103.0,Legend Beasts,Legends of Chima
+70125-1,Gorilla Legend Beast,2014,,Legend Beasts,Legends of Chima
+70126-1,Crocodile Legend Beast,2014,,Legend Beasts,Legends of Chima
+70127-1,Wolf Legend Beast,2014,109.0,Legend Beasts,Legends of Chima
+70128-1,Braptor's Wing Striker,2014,145.0,Legends of Chima,Legends of Chima
+70129-1,Lavertus' Twin Blade,2014,,Legends of Chima,Legends of Chima
+701-3,Hinges,1986,6.0,Service Packs,Service Packs
+70130-1,Sparratus' Spider Stalker,2014,,Legends of Chima,Legends of Chima
+70131-1,Rogon's Rock Flinger,2014,,Legends of Chima,Legends of Chima
+70132-1,Scorm's Scorpion Stinger,2014,,Legends of Chima,Legends of Chima
+70133-1,Spinlyn's Cavern,2014,,Legends of Chima,Legends of Chima
+70134-1,Lavertus’ Outland Base,2014,,Legends of Chima,Legends of Chima
+70135-1,Cragger's Fire Striker,2014,379.0,Legends of Chima,Legends of Chima
+70136-1,Banana Bash,2014,115.0,Speedorz,Legends of Chima
+70137-1,Bat Strike,2014,,Speedorz,Legends of Chima
+70138-1,Web Dash,2014,69.0,Legends of Chima,Legends of Chima
+70139-1,Sky Launch,2014,,Speedorz,Legends of Chima
+70140-1,Stinger Duel,2014,75.0,Speedorz,Legends of Chima
+70141-1,Vardy's Ice Vulture Glider,2014,,Legends of Chima,Legends of Chima
+70142-1,Eris' Fire Eagle Flyer,2014,329.0,Legends of Chima,Legends of Chima
+70143-1,Sir Fangar's Sabre-Tooth Walker,2014,414.0,Legends of Chima,Legends of Chima
+70144-1,Laval's Fire Lion,2014,448.0,Legends of Chima,Legends of Chima
+70145-1,Maula’s Ice Mammoth Stomper,2014,598.0,Legends of Chima,Legends of Chima
+70146-1,Flying Phoenix Fire Temple,2014,,Legends of Chima,Legends of Chima
+70147-1,Sir Fangar’s Ice Fortress,2014,670.0,Legends of Chima,Legends of Chima
+70149-1,Scorching Blades,2014,,Speedorz,Legends of Chima
+70150-1,Flaming Claws,2014,69.0,Speedorz,Legends of Chima
+7015-1,Viking Warrior challenges the Fenris Wolf,2005,76.0,Vikings,Vikings
+70151-1,Frozen Spikes,2014,72.0,Speedorz,Legends of Chima
+70155-1,Inferno Pit,2014,,Speedorz,Legends of Chima
+70156-1,Fire vs. Ice,2014,,Speedorz,Legends of Chima
+70160-1,Riverside Raid,2014,88.0,Ultra Agents,Agents
+7016-1,Viking Boat against the Wyvern Dragon,2005,111.0,Vikings,Vikings
+70161-1,Tremor Track Infiltration,2014,240.0,Ultra Agents,Agents
+70162-1,Infearno Interception,2014,311.0,Ultra Agents,Agents
+70163-1,Toxikita's Toxic Meltdown,2014,428.0,Ultra Agents,Agents
+70164-1,Hurricane Heist,2014,586.0,Ultra Agents,Agents
+70165-1,Ultra Agents Mission HQ,2014,1056.0,Ultra Agents,Agents
+70166-1,Spyclops Infiltration,2015,108.0,Ultra Agents,Agents
+70167-1,Invizable Gold Getaway,2015,,Ultra Agents,Agents
+70168-1,Drillex Diamond Job,2015,,Ultra Agents,Agents
+70169-1,4x4 Agent Patrol,2015,,Ultra Agents,Agents
+70170-1,UltraCopter vs. AntiMatter,2015,611.0,Ultra Agents,Agents
+7017-1,Viking Catapult versus the Nidhogg Dragon,2005,,Vikings,Vikings
+70171-1,Ultrasonic Showdown,2015,184.0,Ultra Agents,Agents
+70172-1,AntiMatter’s Portal Hideout,2015,,Ultra Agents,Agents
+70173-1,Ultra Agents Ocean HQ,2015,1201.0,Ultra Agents,Agents
+7018-1,Viking Ship challenges the Midgard Serpent,2005,,Vikings,Vikings
+7019-1,Viking Fortress against the Fafnir Dragon,2005,1040.0,Vikings,Vikings
+70200-1,CHI Laval,2013,55.0,Constraction,Legends of Chima
+7020-1,Army of Vikings with Heavy Artillery Wagon,2006,270.0,Vikings,Vikings
+70201-1,CHI Eris,2013,67.0,Constraction,Legends of Chima
+70202-1,CHI Gorzan,2013,58.0,Constraction,Legends of Chima
+70203-1,CHI Cragger,2013,,Constraction,Legends of Chima
+70204-1,CHI Worriz,2013,55.0,Constraction,Legends of Chima
+70205-1,CHI Razar,2013,,Constraction,Legends of Chima
+70206-1,CHI Laval,2014,,Constraction,Legends of Chima
+70207-1,CHI Cragger,2014,58.0,Constraction,Legends of Chima
+70208-1,CHI Panthar,2014,59.0,Constraction,Legends of Chima
+70209-1,CHI Mungus,2014,64.0,Constraction,Legends of Chima
+702-1,12V Motor with Accessories Pack,1969,,12V,Train
+70210-1,CHI Vardy,2014,,Constraction,Legends of Chima
+7021-1,Viking Double Catapult versus the Armored Ofnir Dragon,2006,486.0,Vikings,Vikings
+70211-1,CHI Fluminox,2014,91.0,Constraction,Legends of Chima
+70212-1,CHI Sir Fangar,2014,,Constraction,Legends of Chima
+70220-1,Strainor's Saber Cycle,2015,160.0,Legends of Chima,Legends of Chima
+70221-1,Flinx's Ultimate Phoenix,2015,,Legends of Chima,Legends of Chima
+70222-1,Tormak's Shadow Blazer,2015,,Legends of Chima,Legends of Chima
+70223-1,Icebite's Claw Driller,2015,628.0,Legends of Chima,Legends of Chima
+70224-1,Tiger’s Mobile Command,2015,710.0,Legends of Chima,Legends of Chima
+70225-1,Bladvic's Rumble Bear,2015,414.0,Legends of Chima,Legends of Chima
+70226-1,Mammoth’s Frozen Stronghold,2015,619.0,Legends of Chima,Legends of Chima
+70227-1,King Crominus’ Rescue,2015,,Legends of Chima,Legends of Chima
+70228-1,Vultrix's Sky Scavenger,2015,479.0,Legends of Chima,Legends of Chima
+70229-1,Lion Tribe Pack,2015,78.0,Legends of Chima,Legends of Chima
+702-3,Motor Wires,1984,,Service Packs,Service Packs
+70230-1,Ice Bear Tribe Pack,2015,75.0,Legends of Chima,Legends of Chima
+70231-1,Crocodile Tribe Pack,2015,,Legends of Chima,Legends of Chima
+70232-1,Sabre Tooth Tiger Pack,2015,74.0,Legends of Chima,Legends of Chima
+7029-1,Skeleton Ship Attack,2007,629.0,Fantasy Era,Castle
+7030-1,Squad Car,2003,,Police,Town
+703-1,12V Replacement Electric Motor,1969,1.0,12V,Train
+70310-1,Knighton Battle Blaster,2016,,Nexo Knights,Nexo Knights
+7031-1,Helicopter,2003,87.0,Police,Town
+70311-1,Chaos Catapult,2016,93.0,Nexo Knights,Nexo Knights
+70312-1,Lance's Mecha Horse,2016,,Nexo Knights,Nexo Knights
+70313-1,Moltor's Lava Smasher,2016,187.0,Nexo Knights,Nexo Knights
+70314-1,Beast Master's Chaos Chariot,2016,311.0,Nexo Knights,Nexo Knights
+70315-1,Clay's Rumble Blade,2016,,Nexo Knights,Nexo Knights
+70316-1,Jestro’s Evil Mobile,2016,658.0,Nexo Knights,Nexo Knights
+70317-1,The Fortrex,2016,,Nexo Knights,Nexo Knights
+70318-1,The Glob Lobber,2016,95.0,Nexo Knights,Nexo Knights
+70319-1,Macy's Thunder Mace,2016,201.0,Nexo Knights,Nexo Knights
+70320-1,Aaron Fox's Aero-Striker V2,2016,,Nexo Knights,Nexo Knights
+7032-1,Highway Patrol & Undercover Van,2003,153.0,Police,Town
+70321-1,General Magmar's Siege Machine of Doom,2016,514.0,Nexo Knights,Nexo Knights
+70322-1,Axl’s Tower Carrier,2016,668.0,Nexo Knights,Nexo Knights
+70323-1,Jestro’s Volcano Lair,2016,1184.0,Nexo Knights,Nexo Knights
+70324-1,Merlok's Library 2.0,2016,,Nexo Knights,Nexo Knights
+70325-1,Infernox captures the Queen,2016,251.0,Nexo Knights,Nexo Knights
+70326-1,The Black Knight Mech,2016,529.0,Nexo Knights,Nexo Knights
+70327-1,The King's Mech,2016,,Nexo Knights,Nexo Knights
+703-3,Battery Box,1984,1.0,Service Packs,Service Packs
+70330-1,ULTIMATE Clay,2016,,Nexo Knights,Nexo Knights
+7033-1,Armored Car Action,2003,179.0,Police,Town
+70331-1,Ultimate Macy,2016,,Nexo Knights,Nexo Knights
+70332-1,Ultimate Aaron,2016,82.0,Nexo Knights,Nexo Knights
+70333-1,Ultimate Robin,2016,75.0,Nexo Knights,Nexo Knights
+70334-1,Ultimate Beast Master,2016,65.0,Nexo Knights,Nexo Knights
+70335-1,Ultimate Lavaria,2016,69.0,Nexo Knights,Nexo Knights
+70336-1,Ultimate Axl,2016,,Nexo Knights,Nexo Knights
+70337-1,Ultimate Lance,2016,75.0,Nexo Knights,Nexo Knights
+70338-1,Ultimate General Magmar,2016,64.0,Nexo Knights,Nexo Knights
+70339-1,Ultimate Flama,2016,68.0,Nexo Knights,Nexo Knights
+7034-1,Surveillance Truck,2003,260.0,Police,Town
+70347-1,King's Guard Artillery,2017,,Nexo Knights,Nexo Knights
+70348-1,Lance's Twin Jouster,2017,215.0,Nexo Knights,Nexo Knights
+70349-1,Ruina's Lock & Roller,2017,,Nexo Knights,Nexo Knights
+70350-1,The Three Brothers,2017,,Nexo Knights,Nexo Knights
+7035-1,Police HQ,2003,422.0,Police,Town
+70351-1,Clay's Falcon Fighter Blaster,2017,520.0,Nexo Knights,Nexo Knights
+70352-1,Jestro's Headquarters,2017,,Nexo Knights,Nexo Knights
+70353-1,The Heligoyle,2017,,Nexo Knights,Nexo Knights
+70354-1,Axl's Rumble Maker,2017,389.0,Nexo Knights,Nexo Knights
+70355-1,Aaron's Rock Climber,2017,594.0,Nexo Knights,Nexo Knights
+70356-1,The Stone Colossus of Ultimate Destruction,2017,775.0,Nexo Knights,Nexo Knights
+70357-1,Knighton Castle,2017,,Nexo Knights,Nexo Knights
+70358-1,Aaron's Stone Destroyer,2017,,Nexo Knights,Nexo Knights
+70359-1,Lance vs. lightning,2017,,Nexo Knights,Nexo Knights
+7036-1,Dwarves' Mine,2008,569.0,Fantasy Era,Castle
+70361-1,Macy's Bot Drop Dragon,2017,151.0,Nexo Knights,Nexo Knights
+70362-1,Battle Suit Clay,2017,,Nexo Knights,Nexo Knights
+70363-1,Battle Suit Macy,2017,66.0,Nexo Knights,Nexo Knights
+70364-1,Battle Suit Aaron,2017,80.0,Nexo Knights,Nexo Knights
+70365-1,Battle Suit Axl,2017,87.0,Nexo Knights,Nexo Knights
+70366-1,Battle Suit Lance,2017,83.0,Nexo Knights,Nexo Knights
+7037-1,Tower Raid,2008,,Fantasy Era,Castle
+70372-1,Combo NEXO Powers Wave 1,2017,5.0,Nexo Knights,Nexo Knights
+7038-1,Troll Assault Wagon,2008,,Fantasy Era,Castle
+70400-1,Forest Ambush,2013,,Castle,Castle
+7040-1,Dwarves' Mine Defender,2008,,Fantasy Era,Castle
+70401-1,Gold Getaway,2013,200.0,Castle,Castle
+70402-1,The Gatehouse Raid,2013,,Castle,Castle
+70403-1,Dragon Mountain,2013,380.0,Castle,Castle
+70404-1,King’s Castle,2013,,Castle,Castle
+70409-1,Shipwreck Defense,2015,84.0,Pirates III,Pirates
+704-1,12V Sleeper (Track) Contacts for Old Motor Type I and II,1969,,12V,Train
+70410-1,Soldiers Outpost,2015,164.0,Pirates III,Pirates
+7041-1,Troll Battle Wheel,2008,,Fantasy Era,Castle
+70411-1,Treasure Island,2015,181.0,Pirates III,Pirates
+70412-1,Soldiers Fort,2015,,Pirates III,Pirates
+70413-1,The Brick Bounty,2015,743.0,Pirates III,Pirates
+7042-1,Dune Patrol,2004,,Coast Guard,Town
+7043-1,Firefighter,2004,68.0,Fire,Town
+704-4,Replacement Motor,1984,1.0,Service Packs,Service Packs
+7044-1,Rescue Chopper,2004,205.0,Coast Guard,Town
+7045-1,Hovercraft Hideout,2003,,Harbor,Town
+7046-1,Fire Command Craft,2004,271.0,Fire,Town
+7047-1,Coast Watch HQ,2003,,Coast Guard,Town
+7048-1,Troll Warship,2008,490.0,Fantasy Era,Castle
+7049-1,Alien Striker,2011,42.0,Alien Conquest,Space
+70500-1,Kai's Fire Mech,2013,,Ninjago,Ninjago
+7050-1,Alien Defender,2011,104.0,Alien Conquest,Space
+70501-1,Samurai Bike,2013,,Ninjago,Ninjago
+70502-1,Cole's Power Drill,2013,170.0,Ninjago,Ninjago
+70503-1,Golden Dragon,2013,,Ninjago,Ninjago
+70504-1,Garmatron,2013,,Ninjago,Ninjago
+70505-1,Temple of Light,2013,,Ninjago,Ninjago
+705-1,Motor Bushings,1969,4.0,12V,Train
+7051-1,Tripod Invader,2011,165.0,Alien Conquest,Space
+7052-1,UFO Abduction,2011,210.0,Alien Conquest,Space
+705-4,Digger Bucket,1984,3.0,Service Packs,Service Packs
+70588-1,Titanium Ninja Tumbler,2016,,Ninjago,Ninjago
+70589-1,Rock Roader,2016,406.0,Ninjago,Ninjago
+70590-1,Airjitzu Battle Grounds,2016,,Airjitzu,Ninjago
+70591-1,Kryptarium Prison Breakout,2016,,Ninjago,Ninjago
+70592-1,Salvage M.E.C.,2016,,Ninjago,Ninjago
+70593-1,The Green NRG Dragon,2016,560.0,Ninjago,Ninjago
+70594-1,The Lighthouse Siege,2016,,Ninjago,Ninjago
+70595-1,Ultra Stealth Raider,2016,1076.0,Ninjago,Ninjago
+70596-1,Samurai X Cave Chaos,2016,1233.0,Ninjago,Ninjago
+70599-1,Cole's Dragon,2016,,Ninjago,Ninjago
+70600-1,Ninja Bike Chase,2016,231.0,Ninjago,Ninjago
+70601-1,Sky Shark,2016,,Ninjago,Ninjago
+70602-1,Jay’s Elemental Dragon,2016,,Ninjago,Ninjago
+70603-1,Raid Zeppelin,2016,,Ninjago,Ninjago
+70604-1,Tiger Widow Island,2016,411.0,Ninjago,Ninjago
+70605-1,Misfortune’s Keep,2016,,Ninjago,Ninjago
+706-1,12V Rail Contact Wire with Transformer Connector,1969,1.0,12V,Train
+70621-1,The Vermillion Attack,2017,83.0,Ninjago,Ninjago
+70622-1,Desert Lightning,2017,,Ninjago,Ninjago
+70623-1,Destiny's Shadow,2017,345.0,Ninjago,Ninjago
+70624-1,Vermillion Invader,2017,,Ninjago,Ninjago
+70625-1,Samurai VXL,2017,414.0,Ninjago,Ninjago
+70626-1,Dawn of Iron Doom,2017,,Ninjago,Ninjago
+70627-1,Dragon's Forge,2017,1117.0,Ninjago,Ninjago
+706-3,12V Rail Contact Wire with Transformer Connector with Cap,1974,1.0,12V,Train
+706-4,Crane Grab Assembly,1984,3.0,Service Packs,Service Packs
+7065-1,Alien Mothership,2011,415.0,Alien Conquest,Space
+7066-1,Earth Defense HQ,2011,,Alien Conquest,Space
+7067-1,Jet-Copter Encounter,2011,,Alien Conquest,Space
+70700-1,Space Swarmer,2013,,Galaxy Squad,Space
+7070-1,Catapult Raft,2004,23.0,Pirates,4 Juniors
+70701-1,Swarm Interceptor,2013,,Galaxy Squad,Space
+70702-1,Warp Stinger,2013,307.0,Galaxy Squad,Space
+70703-1,Star Slicer,2013,311.0,Galaxy Squad,Space
+70704-1,Vermin Vaporizer,2013,,Galaxy Squad,Space
+70705-1,Bug Obliterator,2013,,Galaxy Squad,Space
+70706-1,Crater Creeper,2013,,Galaxy Squad,Space
+70707-1,CLS-89 Eradicator Mech,2013,439.0,Galaxy Squad,Space
+70708-1,Hive Crawler,2013,,Galaxy Squad,Space
+70709-1,Galactic Titan,2013,1010.0,Galaxy Squad,Space
+707-1,Tile Brick Assortment,1984,50.0,Service Packs,Service Packs
+7071-1,Treasure Island,2004,,Pirates,4 Juniors
+70720-1,Hover Hunter,2014,79.0,Ninjago,Ninjago
+7072-1,Captain Kragg's Pirate Boat,2004,41.0,Pirates,4 Juniors
+70721-1,Kai Fighter,2014,,Ninjago,Ninjago
+70722-1,OverBorg Attack,2013,208.0,Ninjago,Ninjago
+70723-1,Thunder Raider,2014,,Ninjago,Ninjago
+70724-1,NinjaCopter,2014,514.0,Ninjago,Ninjago
+70725-1,Nindroid MechDragon,2014,689.0,Ninjago,Ninjago
+70726-1,Destructoid,2014,,Ninjago,Ninjago
+70727-1,X-1 Ninja Charger,2014,425.0,Ninjago,Ninjago
+70728-1,Battle for Ninjago City,2014,1216.0,Ninjago,Ninjago
+70730-1,Chain Cycle Ambush,2015,,Ninjago,Ninjago
+7073-1,Pirate Dock,2004,63.0,Pirates,4 Juniors
+70731-1,Jay Walker One,2015,,Ninjago,Ninjago
+70732-1,City of Stiix,2015,1067.0,Ninjago,Ninjago
+70733-1,Blaster Bike,2015,211.0,Ninjago,Ninjago
+70734-1,Master Wu Dragon,2015,575.0,Ninjago,Ninjago
+70735-1,Ronin R.E.X.,2015,,Ninjago,Ninjago
+70736-1,Attack of the Morro Dragon,2015,655.0,Ninjago,Ninjago
+70737-1,Titan Mech Battle,2015,749.0,Ninjago,Ninjago
+70738-1,Final Flight of Destiny’s Bounty,2015,1256.0,Ninjago,Ninjago
+70739-1,Airjitzu Kai Flyer,2015,,Airjitzu,Ninjago
+70740-1,Airjitzu Jay Flyer,2015,,Airjitzu,Ninjago
+7074-1,Skull Island,2004,81.0,Pirates,4 Juniors
+70741-1,Airjitzu Cole Flyer,2015,,Airjitzu,Ninjago
+70742-1,Airjitzu Zane Flyer,2015,,Airjitzu,Ninjago
+70743-1,Airjitzu Morro Flyer,2015,47.0,Airjitzu,Ninjago
+70744-1,Airjitzu Wrayth Flyer,2015,43.0,Airjitzu,Ninjago
+70745-1,Anacondrai Crusher,2015,,Ninjago,Ninjago
+70746-1,Condrai Copter Attack,2015,,Ninjago,Ninjago
+70747-1,Boulder Blaster,2015,234.0,Ninjago,Ninjago
+70748-1,Titanium Dragon,2015,,Ninjago,Ninjago
+70749-1,Enter the Serpent,2015,527.0,Ninjago,Ninjago
+70750-1,Ninja DB X,2015,,Ninjago,Ninjago
+7075-1,Captain Redbeard's Pirate Ship,2004,139.0,Pirates,4 Juniors
+70751-1,Temple of Airjitzu,2015,2028.0,Ninjago,Ninjago
+7075-2,Captain Redbeard's Pirate Ship - Limited Edition with Motor,2004,2.0,Pirates,4 Juniors
+70752-1,Jungle Trap,2015,,Ninjago,Ninjago
+70753-1,Lava Falls,2015,94.0,Ninjago,Ninjago
+70754-1,Jay's Electromech,2015,152.0,Ninjago,Ninjago
+70755-1,Jungle Raider,2015,187.0,Ninjago,Ninjago
+70756-1,Dojo Showdown,2015,,Ninjago,Ninjago
+70778-1,Protector of Jungle,2015,,Protectors,Bionicle
+70779-1,Protector of Stone,2015,73.0,Protectors,Bionicle
+70780-1,Protector of Water,2015,,Protectors,Bionicle
+7078-1,King's Battle Chariot,2009,103.0,Fantasy Era,Castle
+70781-1,Protector of Earth,2015,66.0,Protectors,Bionicle
+70782-1,Protector of Ice,2015,68.0,Protectors,Bionicle
+70783-1,Protector of Fire,2015,69.0,Protectors,Bionicle
+70784-1,Lewa - Master of Jungle,2015,,Toa Okoto,Bionicle
+70785-1,Pohatu - Master of Stone,2015,66.0,Toa Okoto,Bionicle
+70786-1,Gali - Master of Water,2015,,Toa Okoto,Bionicle
+70787-1,Tahu - Master of Fire,2015,89.0,Toa Okoto,Bionicle
+70788-1,Kopaka - Master of Ice,2015,96.0,Toa Okoto,Bionicle
+70789-1,Onua - Master of Earth,2015,107.0,Toa Okoto,Bionicle
+70790-1,Lord of Skull Spiders,2015,145.0,Skull Spiders,Bionicle
+7079-1,Drawbridge Defense,2009,,Fantasy Era,Castle
+70791-1,Skull Warrior,2015,99.0,Bionicle,Bionicle
+70792-1,Skull Slicer,2015,71.0,Bionicle,Bionicle
+70793-1,Skull Basher,2015,72.0,Bionicle,Bionicle
+70794-1,Skull Scorpio,2015,107.0,Bionicle,Bionicle
+70795-1,Mask Maker vs. Skull Grinder,2015,165.0,Bionicle,Bionicle
+70800-1,Escape Glider,2014,,The LEGO Movie,The LEGO Movie
+7080-1,Scurvy Dog and Crocodile,2004,,Pirates,4 Juniors
+70801-1,Melting Room,2014,122.0,The LEGO Movie,The LEGO Movie
+70802-1,Bad Cop's Pursuit,2014,,The LEGO Movie,The LEGO Movie
+70803-1,Cloud Cuckoo Palace,2014,,The LEGO Movie,The LEGO Movie
+70804-1,Ice Cream Machine,2014,,The LEGO Movie,The LEGO Movie
+70805-1,Trash Chomper,2014,388.0,The LEGO Movie,The LEGO Movie
+70806-1,Castle Cavalry,2014,,The LEGO Movie,The LEGO Movie
+70807-1,Metal Beard's Duel,2014,411.0,The LEGO Movie,The LEGO Movie
+70808-1,Super Cycle Chase,2014,513.0,The LEGO Movie,The LEGO Movie
+70809-1,Lord Business’ Hideout,2014,737.0,The LEGO Movie,The LEGO Movie
+708-1,12V Extension Cord Pack,1970,,12V,Train
+70810-1,MetalBeard’s Sea Cow,2014,,The LEGO Movie,The LEGO Movie
+7081-1,Harry Hardtack and Monkey,2004,,Pirates,4 Juniors
+70811-1,The Flying Flusher,2014,,The LEGO Movie,The LEGO Movie
+70812-1,Creative Ambush,2014,474.0,The LEGO Movie,The LEGO Movie
+70813-1,Rescue Reinforcements,2014,,The LEGO Movie,The LEGO Movie
+70814-1,Emmet’s Constructo-Mech,2014,705.0,The LEGO Movie,The LEGO Movie
+70815-1,Super Secret Police Dropship,2014,852.0,The LEGO Movie,The LEGO Movie
+70816-1,"Benny’s Spaceship, Spaceship, SPACESHIP!",2014,,The LEGO Movie,The LEGO Movie
+70817-1,Batman & Super Angry Kitty Attack,2015,115.0,The LEGO Movie,The LEGO Movie
+70818-1,Double-Decker Couch,2015,,The LEGO Movie,The LEGO Movie
+70819-1,Bad Cop Car Chase,2015,,The LEGO Movie,The LEGO Movie
+7082-1,Cannonball Jimmy and Shark,2004,,Pirates,4 Juniors
+708-3,Angle Brick / Landing Frame,1984,8.0,Service Packs,Service Packs
+70900-1,The Joker Balloon Escape,2017,,Batman,Super Heroes
+7090-1,Crossbow Attack,2007,54.0,Fantasy Era,Castle
+70901-1,Mr. Freeze Ice Attack,2017,,Batman,Super Heroes
+70902-1,Catwoman Catcycle Chase,2017,138.0,Batman,Super Heroes
+70903-1,The Riddler Riddle Racer,2017,253.0,Batman,Super Heroes
+70904,Clayface Splat Attack,2017,0.0,Batman,Super Heroes
+70904-1,"Clayface"" Splat Attack",2017,448.0,Batman,Super Heroes
+70905-1,The Batmobile,2017,580.0,Batman,Super Heroes
+70906,LEGO® Batman Movie - The Joker™ Notorious Lowrider,2017,0.0,Batman,Super Heroes
+70906-1,"The Joker"" Notorious Lowrider",2017,431.0,Batman,Super Heroes
+70907-1,Killer Croc Tail-Gator,2017,459.0,Batman,Super Heroes
+70908-1,The Scuttler,2017,,Batman,Super Heroes
+70909-1,Batcave Break-in,2017,1042.0,Batman,Super Heroes
+709-1,Police Boat,1978,48.0,Boat,Boat
+70910-1,"Scarecrow"" Special Delivery",2017,,Batman,Super Heroes
+7091-1,Knights' Catapult Defense,2007,123.0,Fantasy Era,Castle
+70911-1,The Penguin™ Arctic Roller,2017,304.0,Batman,Super Heroes
+70912-1,Arkham Asylum,2017,1621.0,Batman,Super Heroes
+70913-1,"Scarecrow"" Fearful Face-off",2017,,Batman,Super Heroes
+70914-1,"Bane"" Toxic Truck Attack",2017,365.0,Batman,Super Heroes
+70915-1,"Two-Face"" Double Demolition",2017,563.0,Batman,Super Heroes
+70916-1,The Batwing,2017,1052.0,Batman,Super Heroes
+70917-1,The Ultimate Batmobile,2017,1453.0,Batman,Super Heroes
+709-2,Axle Assortment,1984,36.0,Technic,Service Packs
+7092-1,Skeletons' Prison Carriage,2007,193.0,Fantasy Era,Castle
+7093-1,Skeleton Tower,2007,,Fantasy Era,Castle
+7094-1,King's Castle Siege,2007,,Fantasy Era,Castle
+7097-1,Trolls' Mountain Fortress,2009,843.0,Fantasy Era,Castle
+7099-1,Accessory Motor for Boats,2004,1.0,Supplemental,4 Juniors
+71000-0,Minifigure Series 9 [Random Bag],2013,,Series 9 Minifigures,Collectible Minifigures
+71000-1,Waiter - Complete Set,2013,,Series 9 Minifigures,Collectible Minifigures
+71000-10,Judge - Complete Set,2013,,Series 9 Minifigures,Collectible Minifigures
+71000-11,Alien Avenger - Complete Set,2013,7.0,Series 9 Minifigures,Collectible Minifigures
+71000-12,Mermaid - Complete Set,2013,,Series 9 Minifigures,Collectible Minifigures
+71000-13,Battle Mech - Complete Set,2013,6.0,Series 9 Minifigures,Collectible Minifigures
+71000-14,Mr. Good and Evil - Complete Set,2013,,Series 9 Minifigures,Collectible Minifigures
+71000-15,Forest Maiden - Complete Set,2013,7.0,Series 9 Minifigures,Collectible Minifigures
+71000-16,Plumber - Complete Set,2013,,Series 9 Minifigures,Collectible Minifigures
+71000-17,Minifigures Series 9 - Complete,2013,16.0,Series 9 Minifigures,Collectible Minifigures
+71000-18,Minifigure Series 9 (Box of 60),2013,60.0,Series 9 Minifigures,Collectible Minifigures
+71000-2,Cyclops - Complete Set,2013,,Series 9 Minifigures,Collectible Minifigures
+71000-3,Hollywood Starlet - Complete Set,2013,,Series 9 Minifigures,Collectible Minifigures
+71000-4,Heroic Knight - Complete Set,2013,,Series 9 Minifigures,Collectible Minifigures
+71000-5,Roman Emperor - Complete Set,2013,,Series 9 Minifigures,Collectible Minifigures
+71000-6,Policeman - Complete Set,2013,7.0,Series 9 Minifigures,Collectible Minifigures
+71000-7,Chicken Suit Guy - Complete Set,2013,5.0,Series 9 Minifigures,Collectible Minifigures
+71000-8,Roller Derby Girl - Complete Set,2013,,Series 9 Minifigures,Collectible Minifigures
+71000-9,Fortune Teller - Complete Set,2013,,Series 9 Minifigures,Collectible Minifigures
+7100-1,Samsonite Large Educational Set,1963,0.0,Samsonite,Educational and Dacta
+71001-0,Minifigure Series 10 [Random Bag],2013,,Series 10 Minifigures,Collectible Minifigures
+71001-1,Librarian - Complete Set,2013,7.0,Series 10 Minifigures,Collectible Minifigures
+71001-10,Sea Captain - Complete Set,2013,7.0,Series 10 Minifigures,Collectible Minifigures
+71001-11,Sad Clown - Complete Set,2013,6.0,Series 10 Minifigures,Collectible Minifigures
+71001-12,Revolutionary Soldier - Complete Set,2013,6.0,Series 10 Minifigures,Collectible Minifigures
+71001-13,Baseball Fielder - Complete Set,2013,5.0,Series 10 Minifigures,Collectible Minifigures
+71001-14,Trendsetter - Complete Set,2013,7.0,Series 10 Minifigures,Collectible Minifigures
+71001-15,Painter - Complete Set,2013,,Series 10 Minifigures,Collectible Minifigures
+71001-16,Motorcycle Mechanic - Complete Set,2013,6.0,Series 10 Minifigures,Collectible Minifigures
+71001-17,Minifigures Series 10 - Complete (except Mr. Gold),2013,,Series 10 Minifigures,Collectible Minifigures
+71001-18,Minifigure Series 10 (Box of 60),2013,60.0,Series 10 Minifigures,Collectible Minifigures
+71001-19,Mr. Gold - Complete Set,2013,5.0,Series 10 Minifigures,Collectible Minifigures
+71001-2,Medusa - Complete Set,2013,5.0,Series 10 Minifigures,Collectible Minifigures
+71001-3,Roman Commander - Complete Set,2013,8.0,Series 10 Minifigures,Collectible Minifigures
+71001-4,Warrior Woman - Complete Set,2013,,Series 10 Minifigures,Collectible Minifigures
+71001-5,Tomahawk Warrior - Complete Set,2013,6.0,Series 10 Minifigures,Collectible Minifigures
+71001-6,Skydiver - Complete Set,2013,6.0,Series 10 Minifigures,Collectible Minifigures
+71001-7,Bumblebee Girl - Complete Set,2013,7.0,Series 10 Minifigures,Collectible Minifigures
+71001-8,Grandpa - Complete Set,2013,,Series 10 Minifigures,Collectible Minifigures
+71001-9,Paintball Player - Complete Set,2013,,Series 10 Minifigures,Collectible Minifigures
+71002-0,Minifigure Series 11 [Random Bag],2013,,Series 11 Minifigures,Collectible Minifigures
+71002-1,Barbarian - Complete Set,2013,,Series 11 Minifigures,Collectible Minifigures
+71002-10,Welder - Complete Set,2013,7.0,Series 11 Minifigures,Collectible Minifigures
+71002-11,Scientist - Complete Set,2013,,Series 11 Minifigures,Collectible Minifigures
+71002-12,Saxophone Player - Complete Set,2013,6.0,Series 11 Minifigures,Collectible Minifigures
+71002-13,Diner Waitress - Complete Set,2013,10.0,Series 11 Minifigures,Collectible Minifigures
+71002-14,Grandma - Complete Set,2013,,Series 11 Minifigures,Collectible Minifigures
+71002-15,Constable - Complete Set,2013,6.0,Series 11 Minifigures,Collectible Minifigures
+71002-16,Lady Robot - Complete Set,2013,,Series 11 Minifigures,Collectible Minifigures
+71002-17,LEGO Collectable Minifigures Series 11 - Complete,2014,16.0,Series 11 Minifigures,Collectible Minifigures
+71002-18,Minifigure Series 11 (Box of 60),2013,,Series 11 Minifigures,Collectible Minifigures
+71002-2,Scarecrow - Complete Set,2013,,Series 11 Minifigures,Collectible Minifigures
+71002-3,Pretzel Girl - Complete Set,2013,,Series 11 Minifigures,Collectible Minifigures
+71002-4,Evil Mech - Complete Set,2013,8.0,Series 11 Minifigures,Collectible Minifigures
+71002-5,Island Warrior - Complete set,2013,,Series 11 Minifigures,Collectible Minifigures
+71002-6,Gingerbread Man - Complete Set,2013,,Series 11 Minifigures,Collectible Minifigures
+71002-7,Holiday Elf - Complete Set,2013,8.0,Series 11 Minifigures,Collectible Minifigures
+71002-8,Yeti - Complete Set,2013,5.0,Series 11 Minifigures,Collectible Minifigures
+71002-9,Mountain Climber - Complete Set,2013,7.0,Series 11 Minifigures,Collectible Minifigures
+71004-0,LEGO Minifigures - The LEGO Movie Series [Random Bag],2014,,The LEGO Movie Series,Collectible Minifigures
+71004-1,Calamity Drone,2014,7.0,The LEGO Movie Series,Collectible Minifigures
+71004-10,Larry the Barista,2014,6.0,The LEGO Movie Series,Collectible Minifigures
+71004-11,Velma Staplebot,2014,6.0,The LEGO Movie Series,Collectible Minifigures
+71004-12,Taco Tuesday Man,2014,10.0,The LEGO Movie Series,Collectible Minifigures
+71004-13,'Where Are My Pants?' Guy,2014,6.0,The LEGO Movie Series,Collectible Minifigures
+71004-14,Wiley Fusebot,2014,8.0,The LEGO Movie Series,Collectible Minifigures
+71004-15,Panda Guy,2014,6.0,The LEGO Movie Series,Collectible Minifigures
+71004-16,Marsha Queen of the Mermaids,2014,,The LEGO Movie Series,Collectible Minifigures
+71004-17,LEGO Minifigures - The LEGO Movie Series - Complete,2014,16.0,The LEGO Movie Series,Collectible Minifigures
+71004-18,LEGO Minifigures - The LEGO Movie Series - Sealed Box,2014,,The LEGO Movie Series,Collectible Minifigures
+71004-2,President Business - Complete Set,2014,,The LEGO Movie Series,Collectible Minifigures
+71004-3,Hard Hat Emmet,2014,6.0,The LEGO Movie Series,Collectible Minifigures
+71004-4,Wild West Wyldstyle,2014,6.0,The LEGO Movie Series,Collectible Minifigures
+71004-5,Abraham Lincoln,2014,,The LEGO Movie Series,Collectible Minifigures
+71004-6,Mrs Scratchen-Post,2014,6.0,The LEGO Movie Series,Collectible Minifigures
+71004-7,Scribble-Face Bad Cop,2014,7.0,The LEGO Movie Series,Collectible Minifigures
+71004-8,William Shakespeare,2014,8.0,The LEGO Movie Series,Collectible Minifigures
+71004-9,Gail the Construction Worker,2014,6.0,The LEGO Movie Series,Collectible Minifigures
+71005-0,LEGO Minifigures - The Simpsons Series [Random Bag],2014,0.0,The Simpsons,Collectible Minifigures
+71005-1,Homer Simpson,2014,,The Simpsons,Collectible Minifigures
+71005-10,Ralph Wiggum,2014,5.0,The Simpsons,Collectible Minifigures
+71005-11,Apu Nahasapeemapetilon,2014,,The Simpsons,Collectible Minifigures
+71005-12,Nelson Muntz,2014,5.0,The Simpsons,Collectible Minifigures
+71005-13,Itchy,2014,,The Simpsons,Collectible Minifigures
+71005-14,Scratchy,2014,,The Simpsons,Collectible Minifigures
+71005-15,Chief Wiggum,2014,,The Simpsons,Collectible Minifigures
+71005-16,Mr. Burns,2014,6.0,The Simpsons,Collectible Minifigures
+71005-17,LEGO Minifigures - The Simpsons Series - Complete,2014,16.0,The Simpsons,Collectible Minifigures
+71005-18,LEGO Minifigures - The Simpsons Series - Sealed Box,2014,60.0,The Simpsons,Collectible Minifigures
+71005-2,Bart Simpson,2014,7.0,The Simpsons,Collectible Minifigures
+71005-3,Marge Simpson,2014,7.0,The Simpsons,Collectible Minifigures
+71005-4,Lisa Simpson,2014,6.0,The Simpsons,Collectible Minifigures
+71005-5,Maggie Simpson,2014,,The Simpsons,Collectible Minifigures
+71005-6,Grampa Simpson,2014,,The Simpsons,Collectible Minifigures
+71005-7,Ned Flanders,2014,6.0,The Simpsons,Collectible Minifigures
+71005-8,Krusty the Clown,2014,5.0,The Simpsons,Collectible Minifigures
+71005-9,Milhouse Van Houten,2014,5.0,The Simpsons,Collectible Minifigures
+71006-1,The Simpsons House,2014,2530.0,Town,Town
+71007-0,LEGO Minifigures Series 12 [Random Bag],2014,0.0,Series 12 Minifigures,Collectible Minifigures
+71007-1,Wizard,2014,11.0,Series 12 Minifigures,Collectible Minifigures
+71007-10,Dino Tracker,2014,7.0,Series 12 Minifigures,Collectible Minifigures
+71007-11,Pizza Delivery Man,2014,7.0,Series 12 Minifigures,Collectible Minifigures
+71007-12,Rock Star,2014,6.0,Series 12 Minifigures,Collectible Minifigures
+71007-13,Swashbuckler,2014,,Series 12 Minifigures,Collectible Minifigures
+71007-14,Piggy Guy,2014,,Series 12 Minifigures,Collectible Minifigures
+71007-15,Genie Girl,2014,,Series 12 Minifigures,Collectible Minifigures
+71007-16,Spooky Girl,2014,7.0,Series 12 Minifigures,Collectible Minifigures
+71007-17,LEGO Minifigures Series 12 - Complete,2014,16.0,Series 12 Minifigures,Collectible Minifigures
+71007-18,LEGO Minifigures Series 12 - Sealed Box,2014,60.0,Series 12 Minifigures,Collectible Minifigures
+71007-2,Hun Warrior,2014,,Series 12 Minifigures,Collectible Minifigures
+71007-3,Fairytale Princess,2014,6.0,Series 12 Minifigures,Collectible Minifigures
+71007-4,Video Game Guy,2014,,Series 12 Minifigures,Collectible Minifigures
+71007-5,Battle Goddess,2014,,Series 12 Minifigures,Collectible Minifigures
+71007-6,Space Miner,2014,9.0,Series 12 Minifigures,Collectible Minifigures
+71007-7,Lifeguard,2014,7.0,Series 12 Minifigures,Collectible Minifigures
+71007-8,Prospector,2014,,Series 12 Minifigures,Collectible Minifigures
+71007-9,Jester,2014,,Series 12 Minifigures,Collectible Minifigures
+71008-0,LEGO Minifigures - Series 13 [Random Bag],2015,,Series 13 Minifigures,Collectible Minifigures
+71008-1,Classic King,2015,9.0,Series 13 Minifigures,Collectible Minifigures
+71008-10,Evil Wizard,2015,10.0,Series 13 Minifigures,Collectible Minifigures
+71008-11,Fencer,2015,,Series 13 Minifigures,Collectible Minifigures
+71008-12,Samurai,2015,8.0,Series 13 Minifigures,Collectible Minifigures
+71008-13,Disco Diva,2015,,Series 13 Minifigures,Collectible Minifigures
+71008-14,Hot Dog Man,2015,5.0,Series 13 Minifigures,Collectible Minifigures
+71008-15,Lady Cyclops,2015,6.0,Series 13 Minifigures,Collectible Minifigures
+71008-16,Galaxy Trooper,2015,,Series 13 Minifigures,Collectible Minifigures
+71008-17,LEGO Minifigures Series 13 - Complete,2015,16.0,Series 13 Minifigures,Collectible Minifigures
+71008-18,LEGO Minifigures Series 13 - Sealed Box,2015,60.0,Series 13 Minifigures,Collectible Minifigures
+71008-2,Sheriff,2015,8.0,Series 13 Minifigures,Collectible Minifigures
+71008-3,Unicorn Girl,2015,,Series 13 Minifigures,Collectible Minifigures
+71008-4,Snake Charmer,2015,,Series 13 Minifigures,Collectible Minifigures
+71008-5,Goblin,2015,7.0,Series 13 Minifigures,Collectible Minifigures
+71008-6,Paleontologist,2015,7.0,Series 13 Minifigures,Collectible Minifigures
+71008-7,Alien Trooper,2015,6.0,Series 13 Minifigures,Collectible Minifigures
+71008-8,Egyptian Warrior,2015,7.0,Series 13 Minifigures,Collectible Minifigures
+71008-9,Carpenter,2015,7.0,Series 13 Minifigures,Collectible Minifigures
+71009-0,The Simpsons Series 2 {Random bag},2015,,The Simpsons,Collectible Minifigures
+71009-1,Homer,2015,5.0,The Simpsons,Collectible Minifigures
+71009-10,Hans Moleman,2015,5.0,The Simpsons,Collectible Minifigures
+71009-11,Selma,2015,,The Simpsons,Collectible Minifigures
+71009-12,Patty,2015,6.0,The Simpsons,Collectible Minifigures
+71009-13,Groundskeeper Willie,2015,,The Simpsons,Collectible Minifigures
+71009-14,Edna Krabappel,2015,,The Simpsons,Collectible Minifigures
+71009-15,Smithers,2015,,The Simpsons,Collectible Minifigures
+71009-16,Dr Hibbert,2015,,The Simpsons,Collectible Minifigures
+71009-17,The Simpsons Series 2 - Complete,2015,16.0,The Simpsons,Collectible Minifigures
+71009-18,The Simpsons Series 2 - Sealed Box,2015,,The Simpsons,Collectible Minifigures
+71009-2,Marge,2015,10.0,The Simpsons,Collectible Minifigures
+71009-3,Lisa,2015,6.0,The Simpsons,Collectible Minifigures
+71009-4,Maggie,2015,4.0,The Simpsons,Collectible Minifigures
+71009-5,Bart,2015,,The Simpsons,Collectible Minifigures
+71009-6,Milhouse,2015,6.0,The Simpsons,Collectible Minifigures
+71009-7,Comic Book Guy,2015,,The Simpsons,Collectible Minifigures
+71009-8,Martin,2015,5.0,The Simpsons,Collectible Minifigures
+71009-9,Professor Frink,2015,5.0,The Simpsons,Collectible Minifigures
+710-1,Wrecker with Car,1973,,Factory,Factory
+71010-0,LEGO Minifigures - Series 14 {Random bag},2015,0.0,Series 14 Minifigures,Collectible Minifigures
+71010-1,Wolf Guy,2015,,Series 14 Minifigures,Collectible Minifigures
+71010-10,Gargoyle,2015,,Series 14 Minifigures,Collectible Minifigures
+71010-11,Skeleton Guy,2015,,Series 14 Minifigures,Collectible Minifigures
+71010-12,Monster Rocker,2015,,Series 14 Minifigures,Collectible Minifigures
+71010-13,Zombie Businessman,2015,,Series 14 Minifigures,Collectible Minifigures
+71010-14,Banshee,2015,5.0,Series 14 Minifigures,Collectible Minifigures
+71010-15,Square Foot,2015,5.0,Series 14 Minifigures,Collectible Minifigures
+71010-16,Spider Lady,2015,7.0,Series 14 Minifigures,Collectible Minifigures
+71010-17,LEGO Minifigures - Series 14 - Complete,2015,0.0,Series 14 Minifigures,Collectible Minifigures
+71010-18,LEGO Minifigures - Series 14 - Sealed Box,2015,,Series 14 Minifigures,Collectible Minifigures
+71010-2,Zombie Pirate,2015,7.0,Series 14 Minifigures,Collectible Minifigures
+71010-3,Monster Scientist,2015,,Series 14 Minifigures,Collectible Minifigures
+71010-4,Wacky Witch,2015,8.0,Series 14 Minifigures,Collectible Minifigures
+71010-5,Plant Monster,2015,,Series 14 Minifigures,Collectible Minifigures
+71010-6,Fly Monster,2015,,Series 14 Minifigures,Collectible Minifigures
+71010-7, Spectre,2015,7.0,Series 14 Minifigures,Collectible Minifigures
+71010-8,Zombie Cheerleader,2015,,Series 14 Minifigures,Collectible Minifigures
+71010-9,Tiger Woman,2015,,Series 14 Minifigures,Collectible Minifigures
+7101-1,Lightsaber Duel,1999,,Star Wars Episode 1,Star Wars
+71011-0,LEGO Minifigures - Series 15 {Random bag},2016,0.0,Series 15 Minifigures,Collectible Minifigures
+71011-1,Farmer,2016,7.0,Series 15 Minifigures,Collectible Minifigures
+71011-10,Ballerina,2016,,Series 15 Minifigures,Collectible Minifigures
+71011-11,Laser Mech,2016,9.0,Series 15 Minifigures,Collectible Minifigures
+71011-12,Kendo Fighter,2016,7.0,Series 15 Minifigures,Collectible Minifigures
+71011-13,Shark Suit Guy,2016,5.0,Series 15 Minifigures,Collectible Minifigures
+71011-14,Wrestling Champion,2016,6.0,Series 15 Minifigures,Collectible Minifigures
+71011-15,Jewel Thief,2016,8.0,Series 15 Minifigures,Collectible Minifigures
+71011-16,Queen,2016,8.0,Series 15 Minifigures,Collectible Minifigures
+71011-17,LEGO Minifigures - Series 15 - Complete,2016,0.0,Series 15 Minifigures,Collectible Minifigures
+71011-18,LEGO Minifigures - Series 15 - Sealed Box,2016,,Series 15 Minifigures,Collectible Minifigures
+71011-2,Astronaut,2016,,Series 15 Minifigures,Collectible Minifigures
+71011-3,Frightening Knight,2016,,Series 15 Minifigures,Collectible Minifigures
+71011-4,Clumsy Guy,2016,7.0,Series 15 Minifigures,Collectible Minifigures
+71011-5,Tribal Woman,2016,8.0,Series 15 Minifigures,Collectible Minifigures
+71011-6,Flying Warrior,2016,,Series 15 Minifigures,Collectible Minifigures
+71011-7,Faun,2016,6.0,Series 15 Minifigures,Collectible Minifigures
+71011-8,Animal Control Officer,2016,,Series 15 Minifigures,Collectible Minifigures
+71011-9,Janitor,2016,7.0,Series 15 Minifigures,Collectible Minifigures
+71012-1,Stitch,2016,4.0,Disney,Collectible Minifigures
+71012-10,Donald Duck,2016,,Disney,Collectible Minifigures
+71012-11,Minnie Mouse,2016,,Disney,Collectible Minifigures
+71012-12,Mickey Mouse,2016,4.0,Disney,Collectible Minifigures
+71012-13,Mr. Incredible,2016,,Disney,Collectible Minifigures
+71012-14,Syndrome,2016,,Disney,Collectible Minifigures
+71012-15,Peter Pan,2016,7.0,Disney,Collectible Minifigures
+71012-16,Captain Hook,2016,,Disney,Collectible Minifigures
+71012-17,Ursula,2016,,Disney,Collectible Minifigures
+71012-18,Ariel,2016,,Disney,Collectible Minifigures
+71012-19,LEGO Minifigures - Disney Series - Complete,2016,0.0,Collectible Minifigures,Collectible Minifigures
+71012-2,Alien,2016,4.0,Disney,Collectible Minifigures
+71012-3,Buzz Lightyear,2016,,Disney,Collectible Minifigures
+71012-4,Aladdin,2016,,Disney,Collectible Minifigures
+71012-5,Genie,2016,,Disney,Collectible Minifigures
+71012-6,Maleficent,2016,,Disney,Collectible Minifigures
+71012-7,Alice,2016,8.0,Disney,Collectible Minifigures
+71012-8,Cheshire Cat,2016,,Disney,Collectible Minifigures
+71012-9,Daisy Duck,2016,6.0,Disney,Collectible Minifigures
+71013-1,Ice Queen,2016,,Series 16 Minifigures,Collectible Minifigures
+71013-10,Penguin Boy,2016,7.0,Series 16 Minifigures,Collectible Minifigures
+71013-11,Rogue,2016,7.0,Series 16 Minifigures,Collectible Minifigures
+71013-12,Dog Show Winner,2016,7.0,Series 16 Minifigures,Collectible Minifigures
+71013-13,Mariachi,2016,7.0,Series 16 Minifigures,Collectible Minifigures
+71013-14,Spy,2016,,Series 16 Minifigures,Collectible Minifigures
+71013-15,Banana Guy,2016,,Series 16 Minifigures,Collectible Minifigures
+71013-16,Babysitter,2016,,Series 16 Minifigures,Collectible Minifigures
+71013-17,LEGO Minifigures - Series 16 - Complete,2016,0.0,Series 16 Minifigures,Collectible Minifigures
+71013-2,Desert Warrior,2016,,Series 16 Minifigures,Collectible Minifigures
+71013-3,Cyborg,2016,,Series 16 Minifigures,Collectible Minifigures
+71013-4,Cute Little Devil Set,2016,10.0,Series 16 Minifigures,Collectible Minifigures
+71013-5,Spooky Boy,2016,,Series 16 Minifigures,Collectible Minifigures
+71013-6,Hiker,2016,8.0,Series 16 Minifigures,Collectible Minifigures
+71013-7,Wildlife Photographer,2016,8.0,Series 16 Minifigures,Collectible Minifigures
+71013-8,Kickboxer,2016,,Series 16 Minifigures,Collectible Minifigures
+71013-9,Scallywag Pirate,2016,,Series 16 Minifigures,Collectible Minifigures
+71014-1,Joachim Löw,2016,,DFB Minifigures,Collectible Minifigures
+71014-10,Toni Kroos (18),2016,,DFB Minifigures,Collectible Minifigures
+71014-11,Sami Khedira (6),2016,6.0,DFB Minifigures,Collectible Minifigures
+71014-12,André Schürrle (9),2016,,DFB Minifigures,Collectible Minifigures
+71014-13,Marco Reus (21),2016,,DFB Minifigures,Collectible Minifigures
+71014-14,Christoph Kramer (20),2016,6.0,DFB Minifigures,Collectible Minifigures
+71014-15,Mario Götze (19),2016,6.0,DFB Minifigures,Collectible Minifigures
+71014-16,Max Kruse (23),2016,,DFB Minifigures,Collectible Minifigures
+71014-17,DFB Series - Complete,2016,0.0,DFB Minifigures,Collectible Minifigures
+71014-2,Manuel Neuer (1),2016,6.0,DFB Minifigures,Collectible Minifigures
+71014-3,Jérôme Boateng (17),2016,,DFB Minifigures,Collectible Minifigures
+71014-4,Mats Hummels (5),2016,6.0,DFB Minifigures,Collectible Minifigures
+71014-5,Benedikt Höwedes (4),2016,6.0,DFB Minifigures,Collectible Minifigures
+71014-6,Shkodran Mustafi (2),2016,6.0,DFB Minifigures,Collectible Minifigures
+71014-7,Bastian Schweinsteiger (7),2016,6.0,DFB Minifigures,Collectible Minifigures
+71014-8,Mesut Özil (8),2016,,DFB Minifigures,Collectible Minifigures
+71014-9,Thomas Müller (13),2016,6.0,DFB Minifigures,Collectible Minifigures
+71016-1,The Kwik-E-Mart,2015,2176.0,Town,Town
+71017-1,Lobster-Lovin’ Batman™,2017,7.0,Batman,Super Heroes
+71017-10,Pink Power Batgirl™,2017,8.0,Batman,Super Heroes
+71017-11,Red Hood™,2017,,Batman,Super Heroes
+71017-12,The Eraser™,2017,6.0,Batman,Super Heroes
+71017-13,Nurse Harley Quinn™,2017,,Batman,Super Heroes
+71017-14,Orca™,2017,5.0,Batman,Super Heroes
+71017-15,Zodiac Master™,2017,6.0,Batman,Super Heroes
+71017-16,Catman™,2017,,Batman,Super Heroes
+71017-17,March Harriet™,2017,6.0,Batman,Super Heroes
+71017-18,The Calculator™,2017,,Batman,Super Heroes
+71017-19,King Tut™,2017,,Batman,Super Heroes
+71017-2,Glam Metal Batman™,2017,,Batman,Super Heroes
+71017-20,The Mime™,2017,,Batman,Super Heroes
+71017-21,The LEGO Batman Movie Series - Complete,2017,0.0,Collectible Minifigures,Collectible Minifigures
+71017-3,Fairy Batman™,2017,8.0,Batman,Super Heroes
+71017-4,Clan of the Cave Batman™,2017,7.0,Batman,Super Heroes
+71017-5,Vacation Batman™,2017,8.0,Batman,Super Heroes
+71017-6,Barbara Gordon™,2017,,Batman,Super Heroes
+71017-7,Commissioner Gordon™,2017,,Batman,Super Heroes
+71017-8,The Joker™ – Arkham Asylum,2017,6.0,Batman,Super Heroes
+71017-9,Dick Grayson™,2017,7.0,Batman,Super Heroes
+71018-1,Professional Surfer,2017,,Series 17 Minifigures,Collectible Minifigures
+71018-10,Battle Dwarf,2017,,Series 17 Minifigures,Collectible Minifigures
+71018-11,Retro Spaceman,2017,,Series 17 Minifigures,Collectible Minifigures
+71018-12,Yuppie,2017,,Series 17 Minifigures,Collectible Minifigures
+71018-13,Rocket Boy,2017,,Series 17 Minifigures,Collectible Minifigures
+71018-14,Dance Instructor,2017,7.0,Series 17 Minifigures,Collectible Minifigures
+71018-15,Elf-Girl,2017,,Series 17 Minifigures,Collectible Minifigures
+71018-16,Highwayman,2017,9.0,Series 17 Minifigures,Collectible Minifigures
+71018-17,Minifigures - Series 17 - Complete 16 Sets,2017,,Series 17 Minifigures,Collectible Minifigures
+71018-18,LEGO Minifigures Series 17 - All Parts,2017,,Series 17 Minifigures,Collectible Minifigures
+71018-2,Circus Strong Man,2017,6.0,Series 17 Minifigures,Collectible Minifigures
+71018-3,Gourmet Chef,2017,,Series 17 Minifigures,Collectible Minifigures
+71018-4,Corn Cob Guy,2017,,Series 17 Minifigures,Collectible Minifigures
+71018-5,Veterinarian,2017,6.0,Series 17 Minifigures,Collectible Minifigures
+71018-6,Hot Dog Man,2017,9.0,Series 17 Minifigures,Collectible Minifigures
+71018-7,Butterfly Girl,2017,,Series 17 Minifigures,Collectible Minifigures
+71018-8,Roman Gladiator,2017,6.0,Series 17 Minifigures,Collectible Minifigures
+71018-9,Connoisseur,2017,7.0,Series 17 Minifigures,Collectible Minifigures
+710-2,Lockable Storage Case,1966,,Supplemental,Classic
+710-3,Universal Building Set,1983,,Basic Set,Universal Building Set
+7103-1,Jedi Duel,2002,82.0,Star Wars Episode 2,Star Wars
+71040-1,The Disney Castle,2016,4060.0,Disney,Disney
+7104-1,Desert Skiff,2000,,Star Wars Episode 4/5/6,Star Wars
+71042-1,Silent Mary,2017,2286.0,Pirates of the Caribbean,Pirates of the Caribbean
+710-6,Baseplate Assortment,1984,10.0,Service Packs,Service Packs
+7106-1,Droid Escape,2001,45.0,Star Wars Episode 4/5/6,Star Wars
+7110-1,Landspeeder,1999,,Star Wars Episode 4/5/6,Star Wars
+711-1,Jeep CJ-5,1977,58.0,Factory,Factory
+7111-1,Droid Fighter,1999,,Star Wars Episode 1,Star Wars
+7113-1,Tusken Raider Encounter,2002,93.0,Star Wars Episode 2,Star Wars
+7115-1,Gungan Patrol,2000,79.0,Star Wars Episode 1,Star Wars
+7116-1,Tahu,2010,,Stars,Bionicle
+71170-1,Starter Pack: PS3,2015,265.0,Dimensions,Dimensions
+7117-1,Gresh,2010,19.0,Stars,Bionicle
+71171-1,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,2015,265.0,Dimensions,Dimensions
+71172-1,LEGO® DIMENSIONS™ Xbox One Starter Pack,2015,265.0,Dimensions,Dimensions
+71173-1,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,2015,265.0,Dimensions,Dimensions
+71174-1,LEGO® DIMENSIONS™ Wii U™ Starter Pack,2015,,Dimensions,Dimensions
+7119-1,Twin-Pod Cloud Car,2002,118.0,Star Wars Episode 4/5/6,Star Wars
+71200-1,Dimensions Starter Pack,2015,265.0,Dimensions,Dimensions
+71201-1,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,2015,94.0,Dimensions,Dimensions
+71202-1,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,2015,,Dimensions,Dimensions
+71203-1,LEGO® DIMENSIONS™ Portal® 2 Level Pack,2015,85.0,Dimensions,Dimensions
+71204-1,LEGO® DIMENSIONS™ Doctor Who Level Pack,2015,82.0,Dimensions,Dimensions
+71205-1,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,2015,103.0,Dimensions,Dimensions
+71206-1,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,2015,,Dimensions,Dimensions
+71207-1,LEGO® DIMENSIONS® NINJAGO™ Team Pack,2015,,Dimensions,Dimensions
+71209-1,LEGO® DIMENSIONS™ Wonder Woman Fun Pack,2015,41.0,Dimensions,Dimensions
+712-1,Sea Plane,1977,115.0,Airport,Legoland
+71210-1,LEGO® DIMENSIONS™ Cyborg™ Fun Pack,2015,,Dimensions,Dimensions
+7121-1,Naboo Swamp,1999,82.0,Star Wars Episode 1,Star Wars
+71211-1,LEGO® DIMENSIONS™ Bart Fun Pack,2015,34.0,Dimensions,Dimensions
+71212-1,LEGO® DIMENSIONS™ Fun Pack Emmet,2015,55.0,Dimensions,Dimensions
+71213-1,LEGO® DIMENSIONS™ Bad Cop Fun Pack,2015,62.0,Dimensions,Dimensions
+71214-1,LEGO® DIMENSIONS™ Benny Fun Pack ,2015,46.0,Dimensions,Dimensions
+71215-1,LEGO® DIMENSIONS™ Jay Fun Pack,2015,,Dimensions,Dimensions
+71216-1,LEGO® DIMENSIONS™ Nya Fun Pack,2015,,Dimensions,Dimensions
+71217-1,LEGO® DIMENSIONS™ Zane Fun Pack,2015,46.0,Dimensions,Dimensions
+71218-1,LEGO® DIMENSIONS™ Gollum Fun Pack,2015,39.0,Dimensions,Dimensions
+71219-1,LEGO® DIMENSIONS™ Legolas Fun Pack,2015,36.0,Dimensions,Dimensions
+71220-1,LEGO® DIMENSIONS™ Gimli Fun Pack,2015,56.0,Dimensions,Dimensions
+71221-1,LEGO® DIMENSIONS™ Wicked Witch™ Fun Pack,2015,38.0,Dimensions,Dimensions
+71222-1,LEGO® DIMENSIONS™ Laval Fun Pack,2015,57.0,Dimensions,Dimensions
+71223-1,LEGO® DIMENSIONS™ Cragger Fun Pack,2015,45.0,Dimensions,Dimensions
+71227-1,LEGO® DIMENSIONS® Krusty Fun Pack,2015,38.0,Dimensions,Dimensions
+71228-1,The Ghostbusters Level Pack,2016,115.0,Dimensions,Dimensions
+71229-1,DC Comics Team Pack,2016,,Dimensions,Dimensions
+71230-1,Doc Brown Fun Pack,2016,69.0,Dimensions,Dimensions
+71231-1,LEGO® DIMENSIONS™ Unikitty Fun Pack,2015,,Dimensions,Dimensions
+71232-1,LEGO® DIMENSIONS™ Eris Fun Pack,2015,59.0,Dimensions,Dimensions
+71233-1,Stay Puft Fun Pack,2016,65.0,Dimensions,Dimensions
+71234-1,Sensei Wu Fun Pack,2016,58.0,Dimensions,Dimensions
+71235-1,Midway Arcade™ Level Pack,2016,96.0,Dimensions,Dimensions
+71236-1,Superman™ Fun Pack,2016,48.0,Dimensions,Dimensions
+71237-1,Aquaman and Aqua Watercraft,2016,43.0,Dimensions,Dimensions
+71238-1,Cyberman Fun Pack,2016,,Dimensions,Dimensions
+71239-1,Lloyd Fun Pack,2016,56.0,Dimensions,Dimensions
+71240-1,Bane™ Fun Pack,2016,52.0,Dimensions,Dimensions
+7124-1,Flash Speeder,2000,107.0,Star Wars Episode 1,Star Wars
+71241-1,Slimer Fun Pack,2016,,Dimensions,Dimensions
+71242-1,Ghostbusters Story Pack,2016,258.0,Dimensions,Dimensions
+71244-1,Sonic the Hedgehog™ Level Pack,2016,101.0,Dimensions,Dimensions
+71245-1,Adventure Time Level Pack,2016,102.0,Dimensions,Dimensions
+71246-1,Adventure Time Team Pack,2016,96.0,Dimensions,Dimensions
+71247-1,Harry Potter Team Pack,2016,119.0,Dimensions,Dimensions
+71248-1,Mission: Impossible™ Level Pack,2016,,Dimensions,Dimensions
+71251-1,A-Team Fun Pack,2016,73.0,Dimensions,Dimensions
+71253-1,Fantastic Beasts and Where to Find Them™ Story Pack,2016,,Dimensions,Dimensions
+71255-1,"Teen Titans Go!"" Team Pack",2017,,Dimensions,Dimensions
+71256-1,Gremlins™ Team Pack,2016,,Dimensions,Dimensions
+71257-1,Tina Goldstein Fun Pack,2016,51.0,Dimensions,Dimensions
+71258-1,E.T. the Extra-Terrestrial™ Fun Pack,2016,42.0,Dimensions,Dimensions
+7126-1,Battle Droid Carrier,2001,,Star Wars Episode 1,Star Wars
+71264-1,THE LEGO&reg; BATMAN MOVIE Story Pack,2017,156.0,Dimensions,Dimensions
+71266-1,LEGO&reg; City Fun Pack,2017,,Dimensions,Dimensions
+71267-1,"Goonies"" Level Pack",2017,118.0,Dimensions,Dimensions
+7127-1,Imperial AT-ST,2001,,Star Wars Episode 4/5/6,Star Wars
+7128-1,Speeder Bikes,1999,93.0,Star Wars Episode 4/5/6,Star Wars
+71285-1,Marceline the Vampire Queen,2016,60.0,Dimensions,Dimensions
+71286-1,Michael Knight and K.I.T.T. Knight Ryder Fun Pack,2017,54.0,Dimensions,Dimensions
+71287-1,"Teen Titans Go!"" Fun Pack",2017,,Dimensions,Dimensions
+71300-1,Uxar Creature of Jungle,2016,89.0,Bionicle,Bionicle
+7130-1,Snowspeeder,1999,,Star Wars Episode 4/5/6,Star Wars
+71301-1,Ketar Creature of Stone,2016,,Bionicle,Bionicle
+71302-1,Akida Creature of Water,2016,,Bionicle,Bionicle
+71303-1,Ikir Creature of Fire,2016,77.0,Bionicle,Bionicle
+71304-1,Terak Creature of Earth,2016,74.0,Bionicle,Bionicle
+71305-1,Lewa Uniter of Jungle,2016,65.0,Bionicle,Bionicle
+71306-1,Pohatu Uniter of Stone,2016,,Bionicle,Bionicle
+71307-1,Gali Uniter of Water,2016,87.0,Bionicle,Bionicle
+71308-1,Tahu Uniter of Fire,2016,,Bionicle,Bionicle
+71309-1,Onua Uniter of Earth,2016,,Bionicle,Bionicle
+71310-1,Umarak the Hunter,2016,150.0,Bionicle,Bionicle
+7131-1,Anakin's Podracer,1999,136.0,Star Wars Episode 1,Star Wars
+71311-1,Kopaka and Melum - Unity set,2016,169.0,Bionicle,Bionicle
+71312-1,Ekimu the Mask Maker,2016,,Bionicle,Bionicle
+71313-1,Lava Beast,2016,,Bionicle,Bionicle
+71314-1,Storm Beast,2016,,Bionicle,Bionicle
+71315-1,Quake Beast,2016,102.0,Bionicle,Bionicle
+71316-1,Umarak the Destroyer,2016,190.0,Bionicle,Bionicle
+7133-1,Bounty Hunter Pursuit,2002,,Star Wars Episode 2,Star Wars
+71340-1,Supergirl (DC Comics Playstation 4),2016,,Dimensions,Dimensions
+7134-1,A-wing Fighter,2000,125.0,Star Wars Episode 4/5/6,Star Wars
+71342-1,Green Arrow,2016,7.0,Dimensions,Dimensions
+71343-1,"The Powerpuff Girls"" Fun Pack",2017,,Dimensions,Dimensions
+71344-1,"Excalibur Batman"" Fun Pack",2017,57.0,Dimensions,Dimensions
+71346-1,"The Powerpuff Girls"" Team Pack",2017,93.0,Dimensions,Dimensions
+71348-1,"Harry Potter"" Fun Pack",2017,64.0,Dimensions,Dimensions
+71349-1,"Beetlejuice"" Fun Pack",2017,,Dimensions,Dimensions
+7135-1,Takanuva,2010,,Stars,Bionicle
+7136-1,Skrall,2010,21.0,Stars,Bionicle
+7137-1,Piraka,2010,15.0,Stars,Bionicle
+7138-1,Rahkshi,2010,,Stars,Bionicle
+7139-1,Ewok Attack,2002,,Star Wars Episode 4/5/6,Star Wars
+7140-1,X-wing Fighter,1999,271.0,Star Wars Episode 4/5/6,Star Wars
+7141-1,Naboo Fighter,1999,179.0,Star Wars Episode 1,Star Wars
+7142-1,X-wing Fighter (re-release of 7140),2002,273.0,Star Wars Episode 4/5/6,Star Wars
+7143-1,Jedi Starfighter,2002,139.0,Star Wars Episode 2,Star Wars
+7144-1,Slave I,2000,,Star Wars Episode 4/5/6,Star Wars
+7145-1,Von Nebula,2010,156.0,Villains,Hero Factory
+7146-1,TIE Fighter,2001,,Star Wars Episode 4/5/6,Star Wars
+7147-1,Xplode,2010,45.0,Villains,Hero Factory
+7148-1,Meltdown,2010,49.0,Villains,Hero Factory
+7150-1,TIE Fighter & Y-wing,1999,,Star Wars Episode 4/5/6,Star Wars
+715-1,Basic Building Set,1990,,Basic,Universal Building Set
+7151-1,Sith Infiltrator,1999,244.0,Star Wars Episode 1,Star Wars
+7152-1,TIE Fighter & Y-wing (re-release of 7150),2002,411.0,Star Wars Episode 4/5/6,Star Wars
+7153-1,Jango Fett's Slave I,2002,,Star Wars Episode 2,Star Wars
+7155-1,Trade Federation AAT,2000,159.0,Star Wars Episode 1,Star Wars
+7156-1,Corroder,2010,,Villains,Hero Factory
+7157-1,Thunder,2010,,Villains,Hero Factory
+7158-1,Furno Bike,2010,165.0,Vehicles,Hero Factory
+7159-1,Star Wars Podracing Bucket,2000,,Star Wars Episode 1,Star Wars
+7160-1,Drop Ship,2010,393.0,Vehicles,Hero Factory
+7161-1,Gungan Sub,1999,379.0,Star Wars Episode 1,Star Wars
+7162-1,Rotor,2010,144.0,Villains,Hero Factory
+7163-1,Republic Gunship,2002,,Star Wars Episode 2,Star Wars
+7164-1,Preston Stormer,2010,,Heroes,Hero Factory
+7165-1,Natalie Breez,2010,,Heroes,Hero Factory
+7166-1,Imperial Shuttle,2001,238.0,Star Wars Episode 4/5/6,Star Wars
+7167-1,William Furno,2010,19.0,Heroes,Hero Factory
+7168-1,Dunkan Bulk,2010,,Heroes,Hero Factory
+7169-1,Mark Surge,2010,19.0,Heroes,Hero Factory
+7170-2,Jimi Stringer,2010,17.0,Heroes,Hero Factory
+7171-1,Mos Espa Podrace,1999,,Star Wars Episode 1,Star Wars
+7172-1,Apple,2007,10.0,Creator,Creator
+7173-1,Pear,2007,10.0,Creator,Creator
+7174-1,Banana,2007,8.0,Creator,Creator
+7175-1,Grapes,2007,,Creator,Creator
+7176-1,Watermelon - Capespan Promotional,2007,,Food & Drink,Creator
+7177-1,Orange,2007,8.0,Creator,Creator
+7178-1,Chef,2007,,Creator,Creator
+7179-1,Dunkan Bulk and Vapor,2010,89.0,Heroes,Hero Factory
+7180-1,B-wing at Rebel Control Center,2000,346.0,Star Wars Episode 4/5/6,Star Wars
+7181-1,TIE Interceptor - UCS,2000,,Star Wars Episode 4/5/6,Star Wars
+7184-1,Trade Federation MTT,2000,,Star Wars Episode 1,Star Wars
+7186-1,Watto's Junkyard,2001,449.0,Star Wars Episode 1,Star Wars
+7187-1,Escape from Dragon's Prison,2011,185.0,Kingdoms,Castle
+7188-1,King's Carriage Ambush,2011,,Kingdoms,Castle
+7189-1,Mill Village Raid,2011,,Kingdoms,Castle
+7190-1,Millennium Falcon,2000,,Star Wars Episode 4/5/6,Star Wars
+7191-1,X-wing Fighter - UCS,2000,1302.0,Star Wars Episode 4/5/6,Star Wars
+7194-1,Yoda,2002,,Star Wars,Star Wars
+7195-1,Ambush in Cairo,2009,,Raiders of the Lost Ark,Indiana Jones
+7196-1,Chauchilla Cemetery Battle,2009,,Kingdom of the Crystal Skull,Indiana Jones
+7197-1,Venice Canal Chase,2009,,Last Crusade,Indiana Jones
+7198-1,Fighter Plane Attack,2009,383.0,Last Crusade,Indiana Jones
+7199-1,Temple of Doom,2009,,Temple of Doom,Indiana Jones
+7-2,Universal Building Set,1979,64.0,Basic Set,Universal Building Set
+7200-1,Final Duel I,2002,32.0,Star Wars Episode 4/5/6,Star Wars
+720-1,Basic Building Set,1985,339.0,Basic,Universal Building Set
+7201-1,Final Duel II,2002,26.0,Star Wars Episode 4/5/6,Star Wars
+720-2,Train with 12V Electric Motor,1969,357.0,12V,Train
+7203-1,Jedi Defense I,2002,,Star Wars Episode 1,Star Wars
+7204-1,Jedi Defense II,2002,53.0,Star Wars Episode 1,Star Wars
+7206-1,Fire Helicopter,2010,341.0,Fire,Town
+7207-1,Fire Boat,2010,,Fire,Town
+7208-1,Fire Station,2010,,Fire,Town
+7209-1,Pteranodon,2004,28.0,Designer Sets,Designer Sets
+7210-1,Apatosaurus,2004,,Designer Sets,Designer Sets
+721-1,Steam Locomotive,1969,114.0,12V,Train
+7212-1,Sky Squad,2003,129.0,Designer Sets,Designer Sets
+7213-1,Off-Road Fire Truck & Fireboat,2010,,Fire,Town
+7214-1,Sea Plane,2004,,Harbor,Town
+7216-1,Gold Good Guy - looking Right (Duracell 8 pack AA) {Turaga Lhikan},2006,22.0,Bionicle,Bionicle
+7216-2,Gold Good Guy - looking Left (Duracell 12 pack AA) {Turaga Lhikan},2006,,Bionicle,Bionicle
+7216-3,Gold Good Guy - looking Right (Duracell 12 pack AA) {Turaga Lhikan},2006,,Bionicle,Bionicle
+7217-1,Braca (Duracell 12 pack AA battery promotion),2006,16.0,Bionicle,Bionicle
+7217-2,Braca (Duracell 8 pack AA battery promotion),2006,,Bionicle,Bionicle
+7218-1,Orange Speedboat,2004,,Designer Sets,Designer Sets
+7219-1,Dinosaur,2004,34.0,Designer Sets,Designer Sets
+7220-1,Snowman,2004,19.0,Christmas,Seasonal
+722-1,Universal Building Set,1980,,Basic Set,Universal Building Set
+7221-1,Robots,2003,,Designer Sets,Designer Sets
+7221-2,Robots - ANA Promotion,2003,,Designer Sets,Designer Sets
+722-2,12V Electric Train with 2 Wagons,1970,,12V,Train
+7222-1,Small Red Helicopter (Polybag),2003,28.0,Designer Sets,Designer Sets
+7223-1,Yellow Truck (Polybag),2003,34.0,Designer Sets,Designer Sets
+7223-2,Yellow Truck (Box version) - ANA Promotion,2003,36.0,Designer Sets,Designer Sets
+7224-1,"Santa, Tree, and Present",2003,,Creator,Creator
+723-1,Diesel Locomotive,1970,95.0,12V,Train
+723-2,Diesel Locomotive with DB Sticker,1974,,12V,Train
+7235-1,"Police Motorcycle, Black Logo",2005,,Police,Town
+7235-2,Police Motorcycle - Blue Sticker Version,2008,,Police,Town
+7236-1,"Police Car, Black Logo",2005,,Police,Town
+7236-2,Police Car - Blue Sticker Version,2008,59.0,Police,Town
+7237-1,Police Station [Lighted Figure],2005,593.0,Police,Town
+7237-2,Police Station [No Lighted Figure],2006,,Police,Town
+7238-1,Fire Helicopter,2005,75.0,Fire,Town
+7239-1,Fire Truck,2005,215.0,Fire,Town
+7240-1,Fire Station,2005,264.0,Fire,Town
+724-1,12V Diesel Locomotive with Crane and Tipper Wagon,1972,150.0,12V,Train
+7241-1,Fire Car,2005,47.0,Fire,Town
+7242-1,Street Sweeper,2005,64.0,Traffic,Town
+7243-1,Construction Site,2005,,Construction,Town
+7244-1,Speedboat,2005,,Town,Town
+7245-1,"Prisoner Transport, Black Logo",2005,99.0,Police,Town
+7245-2,Prisoner Transport - Blue Sticker Version,2008,99.0,Police,Town
+7246-1,Mini Digger,2005,37.0,Construction,Town
+7248-1,Digger,2005,,Construction,Town
+7249-1,XXL Mobile Crane,2005,,Construction,Town
+7250-1,Clone Scout Walker,2005,109.0,Star Wars Episode 3,Star Wars
+725-1,Basic Building Set,1990,440.0,Basic,Universal Building Set
+7251-1,Darth Vader Transformation,2005,,Star Wars Episode 3,Star Wars
+725-2,12V Freight Train and Track,1974,310.0,12V,Train
+7252-1,Droid Tri-Fighter,2005,,Star Wars Episode 3,Star Wars
+7255-1,General Grievous Chase,2005,,Star Wars Episode 3,Star Wars
+7256-1,Jedi Starfighter & Vulture Droid,2005,202.0,Star Wars Episode 3,Star Wars
+7257-1,Ultimate Lightsaber Duel,2005,278.0,Star Wars Episode 3,Star Wars
+7258-1,Wookiee Attack,2005,368.0,Star Wars Episode 3,Star Wars
+7259-1,ARC-170 Starfighter,2005,401.0,Star Wars Episode 3,Star Wars
+7260-1,Wookiee Catamaran,2005,381.0,Star Wars Episode 3,Star Wars
+726-1,12V Western Train with 2 Wagons and Cowboys,1976,287.0,Train,Train
+7261-1,Clone Turbo Tank [Light-Up Mace Windu],2005,,Star Wars Episode 3,Star Wars
+7261-2,Clone Turbo Tank (with Non-Light-Up Mace Windu),2006,,Star Wars Episode 3,Star Wars
+7262-1,TIE Fighter and Y-wing (TRU exclusive re-release),2004,415.0,Star Wars Episode 4/5/6,Star Wars
+7263-1,TIE Fighter,2005,159.0,Star Wars Episode 4/5/6,Star Wars
+7264-1,Imperial Inspection,2005,378.0,Star Wars Episode 4/5/6,Star Wars
+7266-1,Fireman,2005,,Fire,Town
+7267-1,Paramedic,2005,13.0,Hospital,Town
+7268-1,Crab,2005,,Designer Sets,Designer Sets
+7269-1,Scorpion,2005,,Designer Sets,Designer Sets
+7270-1,Bird,2005,28.0,Designer Sets,Designer Sets
+727-1,12V Locomotive,1977,,12V,Train
+7271-1,Apple - Suntory Promotional,2005,,Food & Drink,Creator
+7272-1,Pear - Suntory Promotional,2005,,Food & Drink,Creator
+7274-1,Orange - Suntory Promotional,2005,,Food & Drink,Creator
+7275-1,Cherry - Suntory Promotional,2005,11.0,Food & Drink,Creator
+7276-1,Mango - Suntory Promotional,2005,6.0,Food & Drink,Creator
+7278-1,Melon - Suntory Promotional,2005,8.0,Food & Drink,Creator
+7279-1,Police Minifigure Collection,2011,57.0,Police,Town
+7280-1,Straight & Crossroad Plates,2005,,Supplemental,Town
+7281-1,T-Junction & Curved Road Plates,2005,2.0,Supplemental,Town
+7283-1,Ultimate Space Battle,2005,540.0,Star Wars Episode 3,Star Wars
+7285-1,Police Dog Unit,2011,95.0,Police,Town
+7286-1,Prisoner Transport,2011,173.0,Police,Town
+7287-1,Police Boat,2011,173.0,Police,Town
+7288-1,Mobile Police Unit,2011,,Police,Town
+7290-1,Pirates Polybag,2004,5.0,Pirates,4 Juniors
+7291-1,Street Rebel,2012,196.0,Creator,Creator
+7292-1,Propeller Adventures,2012,,Creator,Creator
+7294-1,Dino Quad,2005,,Dino 2010,Dino 2010
+7295-1,Dino Buggy Chaser,2005,,Dino 2010,Dino 2010
+7296-1,Dino 4WD Trapper,2005,282.0,Dino 2010,Dino 2010
+7297-1,Dino Track Transport,2005,351.0,Dino 2010,Dino 2010
+7298-1,Dino Air Tracker,2005,,Dino 2010,Dino 2010
+7-3,Basic Set,1973,412.0,Basic Set,Universal Building Set
+7300-1,Double Hover,2001,,Life On Mars,Space
+730-1,Steam Shovel with Carrier,1973,102.0,Construction,Legoland
+7301-1,Rover,2001,29.0,Life On Mars,Space
+730-2,Basic Building Set,1985,,Basic,Universal Building Set
+7302-1,Worker Robot,2001,30.0,Life On Mars,Space
+7303-1,Jet Scooter,2001,24.0,Life On Mars,Space
+7305-1,Scarab Attack,2011,44.0,Pharaoh's Quest,Pharaoh's Quest
+7306-1,Golden Staff Guardians,2011,,Pharaoh's Quest,Pharaoh's Quest
+7307-1,Flying Mummy Attack,2011,124.0,Pharaoh's Quest,Pharaoh's Quest
+7308-1,Double Hover,2001,21.0,Life On Mars,Space
+7309-1,Rover,2001,29.0,Life On Mars,Space
+7310-1,Mono Jet,2001,,Life On Mars,Space
+7311-1,Red Planet Cruiser,2001,,Life On Mars,Space
+7312-1,T3-Trike,2001,,Life On Mars,Space
+73129-1,Four TECHNIC Shocks,1985,4.0,Technic,Service Packs
+7313-1,Red Planet Protector,2001,193.0,Life On Mars,Space
+7314-1,Recon-Mech RP,2001,189.0,Life On Mars,Space
+7315-1,Solar Explorer,2001,,Life On Mars,Space
+7316-1,Excavation Searcher,2001,467.0,Life On Mars,Space
+7317-1,Aero Tube Hanger,2001,,Life On Mars,Space
+7320-1,Vega,2001,,Life On Mars,Space
+7321-1,Mizar,2001,5.0,Life On Mars,Space
+7322-1,Altair,2001,5.0,Life On Mars,Space
+7323-1,Guard,2001,5.0,Life On Mars,Space
+7324-1,Advent Calendar 2005 City,2005,24.0,City,Seasonal
+7324-10,Advent Calendar 2005 City (Day 9) Construction Worker,2005,,City,Seasonal
+7324-11,Advent Calendar 2005 City (Day 10) Wheelbarrow,2005,11.0,City,Seasonal
+7324-12,Advent Calendar 2005 City (Day 11) Barricade,2005,,City,Seasonal
+7324-13,Advent Calendar 2005 City (Day 12) Train Worker,2005,,City,Seasonal
+7324-14,Advent Calendar 2005 City (Day 13) Crossing Gate,2005,13.0,City,Seasonal
+7324-15,Advent Calendar 2005 City (Day 14) Signal Post,2005,,City,Seasonal
+7324-16,Advent Calendar 2005 City (Day 15) Mechanic,2005,5.0,City,Seasonal
+7324-17,Advent Calendar 2005 City (Day 16) Drill Press,2005,11.0,City,Seasonal
+7324-18,Advent Calendar 2005 City (Day 17) Oil Barrel & Hand Truck,2005,7.0,City,Seasonal
+7324-19,Advent Calendar 2005 City (Day 18) Man with Radio,2005,5.0,City,Seasonal
+7324-2,Advent Calendar 2005 City (Day 1) Fireman,2005,5.0,City,Seasonal
+7324-20,Advent Calendar 2005 City (Day 19) RC Car,2005,8.0,City,Seasonal
+7324-21,Advent Calendar 2005 City (Day 20) Skateboard & Helmet,2005,,City,Seasonal
+7324-22,Advent Calendar 2005 City (Day 21) Pizza Chef,2005,,City,Seasonal
+7324-23,Advent Calendar 2005 City (Day 22) Food Counter,2005,6.0,City,Seasonal
+7324-24,Advent Calendar 2005 City (Day 23) Pizza Oven,2005,11.0,City,Seasonal
+7324-25,Advent Calendar 2005 City (Day 24) Santa & Sled,2005,23.0,City,Seasonal
+7324-3,Advent Calendar 2005 City (Day 2) Fire Hydrant Hose Airtanks,2005,10.0,City,Seasonal
+7324-4,Advent Calendar 2005 City (Day 3) Rescue Bucket,2005,,City,Seasonal
+7324-5,Advent Calendar 2005 City (Day 4) Policeman,2005,,City,Seasonal
+7324-6,Advent Calendar 2005 City (Day 5) Police Dog & Barricade,2005,8.0,City,Seasonal
+7324-7,Advent Calendar 2005 City (Day 6) Criminal and Buzz Saw,2005,,City,Seasonal
+7324-8,Advent Calendar 2005 City (Day 7) Safe,2005,12.0,City,Seasonal
+7324-9,Advent Calendar 2005 City (Day 8) Welding Tanks & Torch,2005,12.0,City,Seasonal
+7325-1,Cursed Cobra Statue,2011,,Pharaoh's Quest,Pharaoh's Quest
+7326-1,Rise of the Sphinx,2011,,Pharaoh's Quest,Pharaoh's Quest
+7327-1,Scorpion Pyramid,2011,,Pharaoh's Quest,Pharaoh's Quest
+733-1,Universal Building Set,1980,,Basic Set,Universal Building Set
+7335-1,Foundation Set - Blue Bucket,2006,460.0,Basic Set,Creator
+7336-1,Foundation Set - Red Bucket,2006,427.0,Basic Set,Creator
+7344-1,Dump Truck,2005,,Construction,Town
+7345-1,Transport Chopper,2012,,Airport,Creator
+7346-1,Seaside House,2012,,Building,Creator
+7347-1,Highway Pickup,2012,,Traffic,Creator
+735-1,Basic Building Set,1990,538.0,Basic,Universal Building Set
+7383-1,Creator Watch,2002,0.0,Gear,Gear
+740-1,Basic Building Set,1985,530.0,Basic,Universal Building Set
+740-2,12V Transformer for 220V Pack,1969,1.0,12V,Train
+7409-1,Secret of the Tomb,2003,42.0,Orient Expedition,Adventurers
+7410-1,Jungle River,2003,,Orient Expedition,Adventurers
+741-1,12V New Transformer for 220V Pack,1974,1.0,12V,Train
+7411-1,Tygurah's Roar,2003,94.0,Orient Expedition,Adventurers
+7412-1,Yeti's Hideout,2003,114.0,Orient Expedition,Adventurers
+7413-1,Passage of Jun-Chi,2003,,Orient Expedition,Adventurers
+7414-1,Elephant Caravan,2003,104.0,Orient Expedition,Adventurers
+7415-1,Aero Nomad,2003,120.0,Orient Expedition,Adventurers
+7416-1,Emperor's Ship,2003,178.0,Orient Expedition,Adventurers
+7417-1,Temple of Mount Everest,2003,288.0,Orient Expedition,Adventurers
+7418-1,Scorpion Palace,2003,354.0,Orient Expedition,Adventurers
+7418-2,Scorpion Palace and Foam Scimitar,2003,2.0,Orient Expedition,Adventurers
+7419-1,Dragon Fortress,2003,,Orient Expedition,Adventurers
+7420-1,Thunder Blazer,2003,,Orient Expedition,Adventurers
+742-1,12V New Transformer for 110V Pack,1970,1.0,12V,Train
+7422-1,Airplane,2003,33.0,Orient Expedition,Adventurers
+7422-2,Red Eagle,2003,,Orient Expedition,Adventurers
+7423-1,Mountain Sleigh,2003,,Orient Expedition,Adventurers
+7423-2,Mountain Sleigh (Kabaya Promotional),2003,,Orient Expedition,Adventurers
+7424-1,Black Cruiser,2003,,Orient Expedition,Adventurers
+7424-2,Small Car,2003,28.0,Orient Expedition,Adventurers
+744-1,Universal Building Set,1980,540.0,Basic Set,Universal Building Set
+745-1,"Baseplate, Green",1978,1.0,Supplemental,Universal Building Set
+7452-1,Lime/Black Racer,2007,34.0,Tiny Turbos,Racers
+7453-1,Yellow/Black Racer,2007,,Tiny Turbos,Racers
+746-1,"Baseplates, Green and Yellow",1978,,Supplemental,Universal Building Set
+7467-1,International Space Station,2003,162.0,Discovery,Discovery
+7468-1,Saturn V Moon Mission,2003,,Discovery,Discovery
+7469-1,Mission to Mars,2003,,Discovery,Discovery
+7470-1,Space Shuttle Discovery,2003,,Discovery,Discovery
+747-1,"Baseplates, Red and Blue",1978,2.0,Supplemental,Universal Building Set
+7471-1,Mars Exploration Rover,2003,,Discovery,Discovery
+7473-1,Street Sprinter vs. Mutant Lizard,2005,38.0,Dino Attack,Dino Attack
+7474-1,Urban Avenger vs. Raptor,2005,78.0,Dino Attack,Dino Attack
+7475-1,Fire Hammer vs. Mutant Lizards,2005,258.0,Dino Attack,Dino Attack
+7476-1,Iron Predator vs. T-Rex,2005,273.0,Dino Attack,Dino Attack
+7477-1,T-1 Typhoon vs. T-Rex,2005,,Dino Attack,Dino Attack
+7498-1,Police Station,2011,785.0,Police,Town
+7499-1,Flexible Rails,2011,24.0,RC Train,Train
+75000-1,Clone Troopers vs. Droidekas,2013,124.0,Star Wars Episode 2,Star Wars
+75001-1,Republic Troopers vs. Sith Troopers,2013,,Star Wars,Star Wars
+75002-1,AT-RT,2013,222.0,Star Wars Clone Wars,Star Wars
+75003-1,A-wing Starfighter,2013,177.0,Star Wars Episode 4/5/6,Star Wars
+75004-1,Z-95 Headhunter,2013,371.0,Star Wars Clone Wars,Star Wars
+75005-1,Rancor Pit,2013,,Star Wars Episode 4/5/6,Star Wars
+75006-1,LEGO Star Wars Jedi Starfighter and Kamino,2013,61.0,Planet Series 4,Star Wars
+75007-1,Republic Assault Ship & Coruscant,2013,74.0,Star Wars,Star Wars
+75008-1,LEGO Star Wars TIE Bomber and Asteroid Field,2013,,Planet Series 4,Star Wars
+75009-1,Snowspeeder & Planet Hoth,2013,,Star Wars Episode 4/5/6,Star Wars
+750-1,8 Straight 12V Conducting Rails,1969,,12V,Train
+75010-1,B-wing Starfighter & Planet Endor,2013,,Star Wars Episode 4/5/6,Star Wars
+7501-1,Bangle Minis,2003,,Clikits,Clikits
+75011-1,Tantive IV & Planet Alderaan,2013,102.0,Star Wars Episode 4/5/6,Star Wars
+75012-1,BARC Speeder with Sidecar,2013,,Star Wars Clone Wars,Star Wars
+75013-1,Umbaran MHC (Mobile Heavy Cannon),2013,,Star Wars Clone Wars,Star Wars
+75014-1,Battle Of Hoth,2013,,Star Wars Episode 4/5/6,Star Wars
+75015-1,Corporate Alliance Tank Droid,2013,,Star Wars Episode 3,Star Wars
+75016-1,Homing Spider Droid,2013,295.0,Star Wars Episode 2,Star Wars
+75017-1,Duel on Geonosis,2013,,Star Wars Episode 2,Star Wars
+75018-1,JEK-14's Stealth Starfighter,2013,548.0,Star Wars Other,Star Wars
+75019-1,AT-TE,2013,792.0,Star Wars Episode 2,Star Wars
+75020-1,Jabba’s Sail Barge,2013,,Star Wars Episode 4/5/6,Star Wars
+7502-1,Photo Minis,2003,,Clikits,Clikits
+75021-1,Republic Gunship,2013,,Star Wars Episode 2,Star Wars
+75022-1,Mandalorian Speeder,2013,210.0,Star Wars Other,Star Wars
+75023-1,"Advent Calendar 2013, Star Wars",2013,24.0,Star Wars,Seasonal
+75023-10,"Advent Calendar 2013, Star Wars (Day 9) - Republic Assault Ship",2013,,Star Wars,Seasonal
+75023-11,"Advent Calendar 2013, Star Wars (Day 10) - Clone Trooper",2013,,Star Wars,Seasonal
+75023-12,"Advent Calendar 2013, Star Wars (Day 11) - AT-TE Walker",2013,,Star Wars,Seasonal
+75023-13,"Advent Calendar 2013, Star Wars (Day 12) - Republic Dropship",2013,11.0,Star Wars,Seasonal
+75023-14,"Advent Calendar 2013, Star Wars (Day 13) - Battle Droid",2013,5.0,Star Wars,Seasonal
+75023-15,"Advent Calendar 2013, Star Wars (Day 14) - Geonosian Starfighter",2013,11.0,Star Wars,Seasonal
+75023-16,"Advent Calendar 2013, Star Wars (Day 15) - Geonosian Warrior",2013,,Star Wars,Seasonal
+75023-17,"Advent Calendar 2013, Star Wars (Day 16) - Geonosian Weapons Depot",2013,10.0,Star Wars,Seasonal
+75023-18,"Advent Calendar 2013, Star Wars (Day 17) - Naboo Cruiser",2013,16.0,Star Wars,Seasonal
+75023-19,"Advent Calendar 2013, Star Wars (Day 18) - Scout Trooper",2013,,Star Wars,Seasonal
+75023-2,"Advent Calendar 2013, Star Wars (Day 1) - R5-F7",2013,4.0,Star Wars,Seasonal
+75023-20,"Advent Calendar 2013, Star Wars (Day 19) - Separatist Shuttle",2013,18.0,Star Wars,Seasonal
+75023-21,"Advent Calendar 2013, Star Wars (Day 20) - Jedi Starfighter",2013,13.0,Star Wars,Seasonal
+75023-22,"Advent Calendar 2013, Star Wars (Day 21) - Jango Fett's Slave I",2013,20.0,Star Wars,Seasonal
+75023-23,"Advent Calendar 2013, Star Wars (Day 22) - Young Boba Fett",2013,,Star Wars,Seasonal
+75023-24,"Advent Calendar 2013, Star Wars (Day 23) - Jet Pack Sled",2013,,Star Wars,Seasonal
+75023-25,"Advent Calendar 2013, Star Wars (Day 24) - Holiday Jango Fett",2013,9.0,Star Wars,Seasonal
+75023-3,"Advent Calendar 2013, Star Wars (Day 2) - Dooku's Solar Sailer",2013,,Star Wars,Seasonal
+75023-4,"Advent Calendar 2013, Star Wars (Day 3) - FA-4 Pilot Droid",2013,9.0,Star Wars,Seasonal
+75023-5,"Advent Calendar 2013, Star Wars (Day 4) - Zam Wesell's Speeder",2013,14.0,Star Wars,Seasonal
+75023-6,"Advent Calendar 2013, Star Wars (Day 5) - Twin-Pod Cloud Car",2013,,Star Wars,Seasonal
+75023-7,"Advent Calendar 2013, Star Wars (Day 6) - Endor Rebel Trooper",2013,4.0,Star Wars,Seasonal
+75023-8,"Advent Calendar 2013, Star Wars (Day 7) - Weapons Depot",2013,11.0,Star Wars,Seasonal
+75023-9,"Advent Calendar 2013, Star Wars (Day 8) - Republic Gunship",2013,,Star Wars,Seasonal
+75024-1,HH-87 Starhopper,2014,361.0,Star Wars Clone Wars,Star Wars
+75025-1,Jedi Defender-class Cruiser,2013,925.0,Star Wars Other,Star Wars
+75028-1,Clone Turbo Tank,2014,,Star Wars Episode 3,Star Wars
+75029-1,AAT,2014,,Star Wars,Star Wars
+75030-1,Millennium Falcon,2014,94.0,Mini,Star Wars
+75031-1,TIE Interceptor,2014,92.0,Mini,Star Wars
+75032-1,X-Wing Fighter,2014,,Mini,Star Wars
+75033-1,Star Destroyer,2014,97.0,Mini,Star Wars
+75034-1,Death Star Troopers,2014,100.0,Star Wars,Star Wars
+75035-1,Kashyyyk Troopers,2014,,Star Wars,Star Wars
+75036-1,Utapau Troopers,2014,,Star Wars,Star Wars
+75037-1,Battle on Saleucami,2014,179.0,Star Wars,Star Wars
+75038-1,Jedi Interceptor,2014,,Star Wars,Star Wars
+75039-1,V-Wing Starfighter,2014,200.0,Star Wars,Star Wars
+75040-1,General Grievous' Wheel Bike,2014,261.0,Star Wars,Star Wars
+7504-1,Friendship Frame / Mirror,2004,15.0,Clikits,Clikits
+75041-1,Vulture Droid,2014,,Star Wars,Star Wars
+75042-1,Droid Gunship,2014,,Star Wars,Star Wars
+75043-1,AT-AP,2014,,Star Wars,Star Wars
+75044-1,Droid Tri-Fighter,2014,261.0,Star Wars,Star Wars
+75045-1,Republic AV-7 Anti-Vehicle Cannon,2014,,Star Wars,Star Wars
+75046-1,Coruscant Police Gunship,2014,,Star Wars,Star Wars
+75048-1,The Phantom,2014,,Star Wars Rebels,Star Wars
+75049-1,Snowspeeder,2014,,Star Wars,Star Wars
+75050-1,B-Wing,2014,,Star Wars,Star Wars
+7505-1,Flowered Hair Bands,2004,,Clikits,Clikits
+75051-1,Jedi Scout Fighter,2014,488.0,Star Wars,Star Wars
+75052-1,Mos Eisley Cantina,2014,614.0,Star Wars Episode 4/5/6,Star Wars
+75053-1,The Ghost,2014,927.0,Star Wars Rebels,Star Wars
+75054-1,AT-AT,2014,1136.0,Star Wars Episode 4/5/6,Star Wars
+75055-1,Imperial Star Destroyer,2014,,Star Wars,Star Wars
+75056-1,Advent Calendar 2014 Star Wars,2014,,Star Wars,Seasonal
+75056-10,Advent Calendar 2014 Star Wars (Day 9) - Anakin's Jedi Starfighter,2014,,Star Wars,Seasonal
+75056-11,Advent Calendar 2014 Star Wars (Day 10) - TIE Fighter,2014,11.0,Star Wars,Seasonal
+75056-12,Advent Calendar 2014 Star Wars (Day 11) - TIE Fighter Pilot,2014,,Star Wars,Seasonal
+75056-13,Advent Calendar 2014 Star Wars (Day 12) - Luke's Landspeeder,2014,15.0,Star Wars,Seasonal
+75056-14,Advent Calendar 2014 Star Wars (Day 13) - Luke Skywalker,2014,,Star Wars,Seasonal
+75056-15,Advent Calendar 2014 Star Wars (Day 14) - Moisture Vaporator ,2014,14.0,Star Wars,Seasonal
+75056-16,Advent Calendar 2014 Star Wars (Day 15) - Snowspeeder,2014,,Star Wars,Seasonal
+75056-17,Advent Calendar 2014 Star Wars (Day 16) - Snowspeeder Pilot,2014,,Star Wars,Seasonal
+75056-18,Advent Calendar 2014 Star Wars (Day 17) - Hoth Command Center,2014,16.0,Star Wars,Seasonal
+75056-19,Advent Calendar 2014 Star Wars (Day 18) - General Rieekan,2014,4.0,Star Wars,Seasonal
+75056-2,Advent Calendar 2014 Star Wars (Day 1) - Armored Assault Tank (AAT),2014,14.0,Star Wars,Seasonal
+75056-20,Advent Calendar 2014 Star Wars (Day 19) - Holiday Speeder Bike,2014,19.0,Star Wars,Seasonal
+75056-21,Advent Calendar 2014 Star Wars (Day 20) - Imperial Shuttle,2014,,Star Wars,Seasonal
+75056-22,Advent Calendar 2014 Star Wars (Day 21) - Anakin's Y-wing Starfighter,2014,20.0,Star Wars,Seasonal
+75056-23,Advent Calendar 2014 Star Wars (Day 22) - Festive Astromech,2014,7.0,Star Wars,Seasonal
+75056-24,Advent Calendar 2014 Star Wars (Day 23) - Holiday Fireplace,2014,,Star Wars,Seasonal
+75056-25,Advent Calendar 2014 Star Wars (Day 24) - Santa Darth Vader,2014,6.0,Star Wars,Seasonal
+75056-3,Advent Calendar 2014 Star Wars (Day 2) - Super Battle Droid,2014,4.0,Star Wars,Seasonal
+75056-4,Advent Calendar 2014 Star Wars (Day 3) - Republic Cannon,2014,18.0,Star Wars,Seasonal
+75056-5,Advent Calendar 2014 Star Wars (Day 4) - Clone Trooper with Santa Hat,2014,,Star Wars,Seasonal
+75056-6,Advent Calendar 2014 Star Wars (Day 5) - Clone Trooper Weapon Station,2014,11.0,Star Wars,Seasonal
+75056-7,Advent Calendar 2014 Star Wars (Day 6) - Vulture Droid,2014,,Star Wars,Seasonal
+75056-8,Advent Calendar 2014 Star Wars (Day 7) - Snowball Missle Launcher,2014,16.0,Star Wars,Seasonal
+75056-9,Advent Calendar 2014 Star Wars (Day 8) - Snowtrooper ,2014,4.0,Star Wars,Seasonal
+75058-1,MTT,2014,,Star Wars Episode 1,Star Wars
+75059-1,Sandcrawler,2014,3294.0,Star Wars Episode 4/5/6,Star Wars
+75060-1,Slave I,2015,,Star Wars Episode 4/5/6,Star Wars
+7506-1,Starry Bangles and Rings,2004,9.0,Clikits,Clikits
+7507-1,Jewels-n-Rings,2003,80.0,Clikits,Clikits
+75072-1,ARC-170 Starfighter,2015,95.0,Mini,Star Wars
+75073-1,Vulture Droid,2015,77.0,Mini,Star Wars
+75074-1,Snowspeeder,2015,97.0,Mini,Star Wars
+75075-1,AT-AT,2015,88.0,Mini,Star Wars
+75076-1,Republic Gunship,2015,105.0,Mini,Star Wars
+75077-1,Homing Spider Droid,2015,,Mini,Star Wars
+75078-1,Imperial Troop Transport,2015,,Star Wars Rebels,Star Wars
+75079-1,Shadow Troopers,2015,95.0,Star Wars Expanded Universe,Star Wars
+75080-1,AAT,2015,,Star Wars Episode 1,Star Wars
+7508-1,Jewels-n-Bands,2003,80.0,Clikits,Clikits
+75081-1,T-16 Skyhopper,2015,,Star Wars Episode 4/5/6,Star Wars
+75082-1,TIE Advanced Prototype,2015,354.0,Star Wars Rebels,Star Wars
+75083-1,AT-DP,2015,,Star Wars Rebels,Star Wars
+75084-1,Wookiee Gunship,2015,,Star Wars Rebels,Star Wars
+75085-1,Hailfire Droid,2015,163.0,Star Wars Episode 2,Star Wars
+75086-1,Battle Droid Troop Carrier,2015,565.0,Star Wars Episode 1,Star Wars
+75087-1,Anakin's Custom Jedi Starfighter,2015,369.0,Star Wars Clone Wars,Star Wars
+75088-1,Senate Commando Troopers,2015,106.0,Star Wars Expanded Universe,Star Wars
+75089-1,Geonosis Troopers,2015,,Star Wars Expanded Universe,Star Wars
+75090-1,Ezra's Speeder Bike,2015,,Star Wars Rebels,Star Wars
+75090-2,Ezra's Speeder Bike,2015,253.0,Star Wars Rebels,Star Wars
+7509-1,Jewels-n-Clips,2003,72.0,Clikits,Clikits
+75091-1,Flash Speeder,2015,,Star Wars Episode 1,Star Wars
+75092-1,Naboo Starfighter,2015,,Star Wars Episode 1,Star Wars
+75093-1,Death Star Final Duel,2015,722.0,Star Wars Episode 4/5/6,Star Wars
+75094-1,Imperial Shuttle Tydirium,2015,935.0,Star Wars,Star Wars
+75095-1,UCS TIE Fighter,2015,1683.0,Star Wars,Star Wars
+75096-1,Sith Infiltrator,2015,,Star Wars Episode 1,Star Wars
+75097-1,LEGO® Star Wars™ Advent Calendar,2015,,Star Wars,Seasonal
+75098-1,Assault on Hoth,2016,,Star Wars Episode 4/5/6,Star Wars
+75099-1,Rey's Speeder™,2015,194.0,Star Wars,Star Wars
+75100-1,First Order Snowspeeder™,2015,443.0,Star Wars,Star Wars
+7510-1,Trendy Tote Hot Pink,2003,89.0,Clikits,Clikits
+75101-1,First Order Special Forces TIE fighter™,2015,519.0,Star Wars,Star Wars
+75102-1,Poe’s X-Wing Fighter™,2015,715.0,Star Wars,Star Wars
+75103-1,First Order Transporter™,2015,783.0,Star Wars,Star Wars
+75104-1,Kylo Ren’s Command Shuttle™,2015,,Star Wars,Star Wars
+75105-1,Millennium Falcon™,2015,1328.0,Star Wars,Star Wars
+75106-1,Imperial Assault Carrier,2015,1214.0,Star Wars Rebels,Star Wars
+75107-1,Jango Fett™,2015,,Star Wars,Star Wars
+75108-1,Clone Commander Cody™,2015,,Star Wars,Star Wars
+75109-1,Obi-Wan Kenobi™,2015,83.0,Star Wars,Star Wars
+751-1,8 Curved 12V Conducting Rails,1969,,12V,Train
+75110-1,Luke Skywalker™,2015,,Star Wars,Star Wars
+7511-1,Trendy Tote Tangerine,2003,,Clikits,Clikits
+75111-1,Darth Vader™,2015,160.0,Star Wars,Star Wars
+75112-1,General Grievous™,2015,,Star Wars,Star Wars
+75113-1,Rey,2016,84.0,Star Wars Episode 7,Star Wars
+75114-1,First Order Stormtrooper,2016,81.0,Star Wars Episode 7,Star Wars
+75115-1,Poe Dameron,2016,,Star Wars Episode 7,Star Wars
+75116-1,Finn,2016,,Star Wars Episode 7,Star Wars
+75117-1,Kylo Ren,2016,86.0,Star Wars Episode 7,Star Wars
+75118-1,Captain Phasma,2016,82.0,Star Wars Episode 7,Star Wars
+75119-1,Sergeant Jyn Erso,2016,104.0,Star Wars Rogue One,Star Wars
+75120-1,K-2SO,2016,,Star Wars Rogue One,Star Wars
+7512-1,Trendy Tote Sky Blue,2003,94.0,Clikits,Clikits
+75121-1,Imperial Death Trooper,2016,,Star Wars Rogue One,Star Wars
+75125-1,Resistance X-Wing Fighter,2016,87.0,Star Wars Episode 7,Star Wars
+75126-1,First Order Snowspeeder,2016,,Star Wars Episode 7,Star Wars
+75127-1,The Ghost,2016,,Mini,Star Wars
+75128-1,TIE Advanced Prototype,2016,,Star Wars Rebels,Star Wars
+75129-1,Wookiee Gunship,2016,,Star Wars Rebels,Star Wars
+75130-1,AT-DP,2016,,Star Wars Rebels,Star Wars
+75131-1,Resistance Trooper Battle Pack,2016,,Star Wars Episode 7,Star Wars
+75132-1,First Order Battle Pack,2016,88.0,Star Wars Episode 7,Star Wars
+75133-1,Rebel Alliance Battle Pack,2016,99.0,Star Wars,Star Wars
+75134-1,Galactic Empire™ Battle Pack,2016,109.0,Star Wars,Star Wars
+75135-1,Obi-Wan's Jedi Interceptor,2016,,Star Wars Episode 3,Star Wars
+75136-1,Droid Escape Pod,2016,,Star Wars Episode 4/5/6,Star Wars
+75137-1,Carbon-Freezing Chamber,2016,,Star Wars Episode 4/5/6,Star Wars
+75138-1,Hoth Attack,2016,230.0,Star Wars Episode 4/5/6,Star Wars
+75139-1,Battle on Takodana,2016,403.0,Star Wars Episode 7,Star Wars
+75140-1,Resistance Troop Transporter,2016,,Star Wars Episode 7,Star Wars
+7514-1,Sweet Dreamy Jewels,2004,12.0,Clikits,Clikits
+75141-1,Kanan's Speeder Bike,2016,227.0,Star Wars Rebels,Star Wars
+75142-1,Homing Spider Droid,2016,309.0,Star Wars Episode 2,Star Wars
+75144-1,Snowspeeder,2017,1702.0,Star Wars,Star Wars
+75145-1,Eclipse Fighter,2016,,Star Wars Other,Star Wars
+75146-1,Advent Calendar 2016 Star Wars,2016,,Star Wars,Seasonal
+75147-1,StarScavenger,2016,,Star Wars Other,Star Wars
+75148-1,Encounter on Jakku,2016,,Star Wars Episode 7,Star Wars
+75149-1,Resistance X-Wing Fighter,2016,738.0,Star Wars Episode 7,Star Wars
+75150-1,Vader’s TIE Advanced vs. A-Wing Starfighter,2016,701.0,Star Wars Rebels,Star Wars
+75151-1,Clone Turbo Tank,2016,,Star Wars Episode 3,Star Wars
+75152-1,Imperial Assault Hovertank,2016,385.0,Star Wars Rogue One,Star Wars
+75153-1,AT-ST Walker,2016,448.0,Star Wars Rogue One,Star Wars
+75154-1,TIE Striker,2016,,Star Wars Rogue One,Star Wars
+75155-1,Rebel U-Wing Fighter,2016,657.0,Star Wars Rogue One,Star Wars
+75156-1,Krennic’s Imperial Shuttle,2016,861.0,Star Wars Rogue One,Star Wars
+75157-1,Captain Rex’s AT-TE,2016,,Star Wars Rebels,Star Wars
+75158-1,Rebel Combat Frigate,2016,934.0,Star Wars Rebels,Star Wars
+75159-1,Death Star,2016,,Star Wars,Star Wars
+75160,U-wing,2017,107.0,Star Wars,Star Wars
+75160-1,U-wing,2017,109.0,Star Wars Rogue One,Star Wars
+7516-1,Cool Starry Jewels,2004,52.0,Clikits,Clikits
+75161-1,Tie Striker Microfighter,2017,,Mini,Star Wars
+75162-1,Y-wing,2017,,Star Wars,Star Wars
+75163-1,Krennics Imperial Shuttle Microfighter,2017,,Mini,Star Wars
+75164-1,Rebel Trooper Battle Pack,2017,119.0,Star Wars Rogue One,Star Wars
+75165-1,Imperial Trooper Battle Pack,2017,112.0,Star Wars Rogue One,Star Wars
+75166-1,First Order Transport Speeder Battle Pack,2017,115.0,Star Wars Episode 8,Star Wars
+75167-1,"Bounty Hunter Speeder Bike"" Battle Pack",2017,125.0,Star Wars,Star Wars
+75168-1,Yoda's Jedi Starfighter,2017,,Star Wars Clone Wars,Star Wars
+75169-1,Duel on Naboo,2017,,Star Wars Episode 1,Star Wars
+75170-1,The Phantom,2017,,Star Wars Rebels,Star Wars
+75171-1,Battle on Scarif,2017,419.0,Star Wars Rogue One,Star Wars
+75172-1,Y-Wing Starfighter,2017,688.0,Star Wars Rogue One,Star Wars
+75173-1,Luke's Landspeeder,2017,148.0,Star Wars Episode 4/5/6,Star Wars
+75174-1,Desert Skiff Escape,2017,,Star Wars,Star Wars
+75175-1,A-Wing Starfighter,2017,356.0,Star Wars,Star Wars
+75176-1,Resistance Transport Pod,2017,,Star Wars Episode 8,Star Wars
+75177-1,First Order Heavy Scout Walker,2017,,Star Wars Episode 8,Star Wars
+75178-1,Jakku Quadjumper,2017,456.0,Star Wars,Star Wars
+75179-1,Kylo Ren's TIE Fighter,2017,,Star Wars Episode 8,Star Wars
+75180-1,"Rathtar"" Escape",2017,,Star Wars Episode 7,Star Wars
+7518-1,Cool Room Catchers,2003,,Clikits,Clikits
+75182-1,Republic Fighter Tank,2017,,Star Wars Episode 3,Star Wars
+75183-1,"Darth Vader"" Transformation",2017,290.0,Planet Series 3,Star Wars
+75184-1,"""Star Wars"" Advent Calendar",2017,308.0,Star Wars,Seasonal
+75185-1,Tracker I,2017,557.0,Freemakers,Star Wars
+75186-1,The Arrowhead,2017,,Freemakers,Star Wars
+75187-1,BB-8,2017,,Star Wars Episode 8,Star Wars
+75188-1,Resistance Bomber,2017,,Star Wars Episode 8,Star Wars
+75189-1,First Order Heavy Assault Walker,2017,,Star Wars Episode 8,Star Wars
+75190-1,First Order Star Destroyer,2017,,Star Wars Episode 8,Star Wars
+75191-1,"Jedi Starfighter"" With Hyperdrive",2017,831.0,Star Wars Episode 2,Star Wars
+75192-1,UCS Millennium Falcon,2017,,Ultimate Collector Series,Star Wars
+7522-1,Let's Party,2003,,Clikits,Clikits
+7523-1,Hip Hair Set,2005,16.0,Clikits,Clikits
+7524-1,Glamour Girl Purse,2004,,Clikits,Clikits
+7525-1,Sunshine Picture Stand,2004,22.0,Clikits,Clikits
+7526-1,My Starry Notes,2004,,Clikits,Clikits
+7527-1,Pretty in Pink Beauty Set,2005,136.0,Clikits,Clikits
+7528-1,Designer Desk Set,2004,71.0,Clikits,Clikits
+7529-1,Stylin' Stationery Set,2004,,Clikits,Clikits
+7530-1,Starry Decoration Set,2004,71.0,Clikits,Clikits
+753-1,Automatic Right Electric Switch,1969,,12V,Train
+7531-1,The Ultimate Jewelry Collection,2004,152.0,Clikits,Clikits
+7533-1,Pretty in Pink Jewels-n-More,2005,66.0,Clikits,Clikits
+7534-1,Stylin' Citrus Jewels-n-More,2005,67.0,Clikits,Clikits
+7535-1,Groovy Grape Jewels-n-More,2005,67.0,Clikits,Clikits
+7537-1,Cool Carry-All Set,2005,72.0,Clikits,Clikits
+7540-1,Friends 4-Ever Jewels & More,2005,,Clikits,Clikits
+754-1,Automatic Left Electric Switch,1969,,12V,Train
+7545-1,Pink & Pearls Jewels 'n' More,2006,,Clikits,Clikits
+7546-1,Tropical Breeze Jewels 'n' More,2006,73.0,Clikits,Clikits
+7548-1,Fun Flamingo Frames 'n' More,2006,,Clikits,Clikits
+7549-1,Totally Tropical Decor Set,2006,132.0,Clikits,Clikits
+755-1,Left and Right Switches,1974,12.0,12V,Train
+75523-1,Scarif Stormtrooper,2017,,Star Wars,Star Wars
+75524-1,Chirrut Îmwe,2017,87.0,Star Wars,Star Wars
+75525-1,Baze Malbus,2017,,Star Wars,Star Wars
+75526-1,Elite TIE Fighter Pilot,2017,,Star Wars Episode 8,Star Wars
+75528-1,Rey,2017,83.0,Star Wars Episode 8,Star Wars
+75529-1,Elite Praetorian Guard,2017,,Star Wars Episode 8,Star Wars
+75530-1,Chewbacca,2017,178.0,Star Wars Episode 8,Star Wars
+7553-1,Advent Calendar 2011 City,2011,24.0,City,Seasonal
+7553-10,Advent Calendar 2011 City (Day 9) Ice Fisherman,2011,5.0,City,Seasonal
+7553-11,Advent Calendar 2011 City (Day 10) Camp Fire and Fishing Pole,2011,6.0,City,Seasonal
+75531-1,"Stormtrooper"" Commander",2017,100.0,Star Wars,Star Wars
+7553-12,Advent Calendar 2011 City (Day 11) Wall with Doorway,2011,,City,Seasonal
+7553-13,Advent Calendar 2011 City (Day 12) Wall with Small Window,2011,,City,Seasonal
+7553-14,Advent Calendar 2011 City (Day 13) Police Officer with Radio,2011,5.0,City,Seasonal
+7553-15,Advent Calendar 2011 City (Day 14) Forensic Lab,2011,,City,Seasonal
+7553-16,Advent Calendar 2011 City (Day 15) Police Car Base,2011,14.0,City,Seasonal
+7553-17,Advent Calendar 2011 City (Day 16) Police Car Middle Section,2011,11.0,City,Seasonal
+7553-18,Advent Calendar 2011 City (Day 17) Police Car Top Section,2011,7.0,City,Seasonal
+7553-19,Advent Calendar 2011 City (Day 18) Robber with Crowbar,2011,,City,Seasonal
+7553-2,Advent Calendar 2011 City (Day 1) Robber with Snowball,2011,,City,Seasonal
+7553-20,Advent Calendar 2011 City (Day 19) Safe with Gold Bars,2011,10.0,City,Seasonal
+7553-21,Advent Calendar 2011 City (Day 20) Orange Snowmobile,2011,,City,Seasonal
+75532-1,"Scout Trooper"" & Speeder Bike",2017,451.0,Star Wars Episode 4/5/6,Star Wars
+7553-22,Advent Calendar 2011 City (Day 21) Sled with Crate,2011,,City,Seasonal
+7553-23,Advent Calendar 2011 City (Day 22) White Snowmobile,2011,8.0,City,Seasonal
+7553-24,Advent Calendar 2011 City (Day 23) Dog with Bone,2011,,City,Seasonal
+7553-25,Advent Calendar 2011 City (Day 24) Santa and Fireplace,2011,18.0,City,Seasonal
+7553-3,Advent Calendar 2011 City (Day 2) Catapult,2011,,City,Seasonal
+7553-4,Advent Calendar 2011 City (Day 3) Police Officer with Handcuffs,2011,5.0,City,Seasonal
+7553-5,Advent Calendar 2011 City (Day 4) Wall with Barred Window,2011,14.0,City,Seasonal
+7553-6,Advent Calendar 2011 City (Day 5) Wall with Large Window,2011,18.0,City,Seasonal
+7553-7,Advent Calendar 2011 City (Day 6) Christmas Tree,2011,18.0,City,Seasonal
+7553-8,Advent Calendar 2011 City (Day 7) Skateboard and Gifts,2011,,City,Seasonal
+7553-9,Advent Calendar 2011 City (Day 8) Bed,2011,,City,Seasonal
+7554-1,Pearly Pink Bracelet & Bands,2006,63.0,Clikits,Clikits
+7557-1,Blooms & Butterflies,2005,14.0,Clikits,Clikits
+7558-1,Shells & Starfish,2005,14.0,Clikits,Clikits
+7559-1,Sports & Stars,2005,14.0,Clikits,Clikits
+756-1,Electric Crossing,1974,5.0,12V,Train
+7566-1,Farmer,2010,,Farm,Town
+7567-1,Traveler,2010,21.0,Traffic,Town
+7569-1,Desert Attack,2010,,Prince of Persia,Prince of Persia
+7570-1,The Ostrich Race,2010,169.0,Prince of Persia,Prince of Persia
+757-1,Storage Tray,1987,,Service Packs,Service Packs
+7571-1,The Fight for the Dagger,2010,259.0,Prince of Persia,Prince of Persia
+7572-1,Quest Against Time,2010,506.0,Prince of Persia,Prince of Persia
+7573-1,Battle of Alamut,2010,821.0,Prince of Persia,Prince of Persia
+7574-1,Advent Calendar 2005 Clikits,2005,,Clikits,Seasonal
+7574-10,Advent Calendar 2005 Clikits (Day 9) Hair Band,2005,4.0,Clikits,Seasonal
+7574-11,Advent Calendar 2005 Clikits (Day 10) Paper Clip,2005,10.0,Clikits,Seasonal
+7574-12,Advent Calendar 2005 Clikits (Day 11) Picture Frame,2005,6.0,Clikits,Seasonal
+7574-13,Advent Calendar 2005 Clikits (Day 12) Gift Tag with Icons,2005,4.0,Clikits,Seasonal
+7574-14,Advent Calendar 2005 Clikits (Day 13) Hair Band,2005,7.0,Clikits,Seasonal
+7574-15,Advent Calendar 2005 Clikits (Day 14) Ring,2005,3.0,Clikits,Seasonal
+7574-16,Advent Calendar 2005 Clikits (Day 15) Hair Band,2005,,Clikits,Seasonal
+7574-17,Advent Calendar 2005 Clikits (Day 16) Gift Tag with Icons,2005,4.0,Clikits,Seasonal
+7574-18,Advent Calendar 2005 Clikits (Day 17) Icons,2005,,Clikits,Seasonal
+7574-19,Advent Calendar 2005 Clikits (Day 18) Bracelet,2005,9.0,Clikits,Seasonal
+7574-2,Advent Calendar 2005 Clikits (Day 1) Ring,2005,3.0,Clikits,Seasonal
+7574-20,Advent Calendar 2005 Clikits (Day 19) Necklace,2005,,Clikits,Seasonal
+7574-21,Advent Calendar 2005 Clikits (Day 20) Paper Clip,2005,,Clikits,Seasonal
+7574-22,Advent Calendar 2005 Clikits (Day 21) Bangle,2005,2.0,Clikits,Seasonal
+7574-23,Advent Calendar 2005 Clikits (Day 22) Hair Band,2005,4.0,Clikits,Seasonal
+7574-24,Advent Calendar 2005 Clikits (Day 23) Gift Tag with Icons,2005,,Clikits,Seasonal
+7574-25,Advent Calendar 2005 Clikits (Day 24) Hair Grip,2005,3.0,Clikits,Seasonal
+7574-3,Advent Calendar 2005 Clikits (Day 2) Hair Band,2005,7.0,Clikits,Seasonal
+7574-4,Advent Calendar 2005 Clikits (Day 3) Necklace,2005,,Clikits,Seasonal
+7574-5,Advent Calendar 2005 Clikits (Day 4) Icons,2005,8.0,Clikits,Seasonal
+7574-6,Advent Calendar 2005 Clikits (Day 5) Bangle,2005,,Clikits,Seasonal
+7574-7,Advent Calendar 2005 Clikits (Day 6) Magnet,2005,3.0,Clikits,Seasonal
+7574-8,Advent Calendar 2005 Clikits (Day 7) Trinket Box,2005,,Clikits,Seasonal
+7574-9,Advent Calendar 2005 Clikits (Day 8) Magnet,2005,,Clikits,Seasonal
+7575-1,Advent Calendar 2004 Clikits,2004,24.0,Clikits,Seasonal
+7575-10,Advent Calendar 2004 Clikits (Day 9) Bracelet,2004,,Clikits,Seasonal
+7575-11,Advent Calendar 2004 Clikits (Day 10) Hair Band,2004,5.0,Clikits,Seasonal
+7575-12,Advent Calendar 2004 Clikits (Day 11) Icons,2004,10.0,Clikits,Seasonal
+7575-13,Advent Calendar 2004 Clikits (Day 12) Necklace,2004,8.0,Clikits,Seasonal
+7575-14,Advent Calendar 2004 Clikits (Day 13) Hair Band,2004,4.0,Clikits,Seasonal
+7575-15,Advent Calendar 2004 Clikits (Day 14) Gift Tag with Icons,2004,,Clikits,Seasonal
+7575-16,Advent Calendar 2004 Clikits (Day 15) Ring,2004,,Clikits,Seasonal
+7575-17,Advent Calendar 2004 Clikits (Day 16) Necklace,2004,4.0,Clikits,Seasonal
+7575-18,Advent Calendar 2004 Clikits (Day 17) Bangle,2004,2.0,Clikits,Seasonal
+7575-19,Advent Calendar 2004 Clikits (Day 18) Paper Clip / Hair Clip,2004,,Clikits,Seasonal
+7575-2,Advent Calendar 2004 Clikits (Day 1) Paper Clip / Hair Clip,2004,3.0,Clikits,Seasonal
+7575-20,Advent Calendar 2004 Clikits (Day 19) Picture Frame,2004,,Clikits,Seasonal
+7575-21,Advent Calendar 2004 Clikits (Day 20) Hair Band,2004,4.0,Clikits,Seasonal
+7575-22,Advent Calendar 2004 Clikits (Day 21) Gift Tag with Icons,2004,,Clikits,Seasonal
+7575-23,Advent Calendar 2004 Clikits (Day 22) Paper Clip / Hair Clip,2004,,Clikits,Seasonal
+7575-24,Advent Calendar 2004 Clikits (Day 23) Hair Band,2004,,Clikits,Seasonal
+7575-25,Advent Calendar 2004 Clikits (Day 24) Carry Case,2004,5.0,Clikits,Seasonal
+7575-3,Advent Calendar 2004 Clikits (Day 2) Bracelet,2004,4.0,Clikits,Seasonal
+7575-4,Advent Calendar 2004 Clikits (Day 3) Hair Band,2004,7.0,Clikits,Seasonal
+7575-5,Advent Calendar 2004 Clikits (Day 4) Ring,2004,10.0,Clikits,Seasonal
+7575-6,Advent Calendar 2004 Clikits (Day 5) Picture Frame,2004,,Clikits,Seasonal
+7575-7,Advent Calendar 2004 Clikits (Day 6) Bangle,2004,,Clikits,Seasonal
+7575-8,Advent Calendar 2004 Clikits (Day 7) Gift Tag with Icons,2004,,Clikits,Seasonal
+7575-9,Advent Calendar 2004 Clikits (Day 8) Hair Band,2004,4.0,Clikits,Seasonal
+7577-1,Winter Wonder Palace,2006,,Fairy-Tale,Belville
+7578-1,Ultimate Princesses,2006,158.0,Fairy-Tale,Belville
+7579-1,Blossom Fairy,2006,49.0,Fairy-Tale,Belville
+7580-1,The Skating Princess,2007,,Fairy-Tale,Belville
+758-1,Storage Tray,1987,1.0,Service Packs,Service Packs
+7581-1,Winter Royal Stables,2007,,Fairy-Tale,Belville
+7582-1,Royal Summer Palace,2007,174.0,Fairy-Tale,Belville
+75821-1,Piggy Car Escape,2016,,Angry Birds,Angry Birds
+75822-1,Piggy Plane Attack,2016,168.0,Angry Birds,Angry Birds
+75823-1,Bird Island Egg Heist,2016,282.0,Angry Birds,Angry Birds
+75824-1,Pig City Teardown,2016,,Angry Birds,Angry Birds
+75825-1,Piggy Pirate Ship,2016,,Angry Birds,Angry Birds
+75826-1,King Pig’s Castle,2016,854.0,Angry Birds,Angry Birds
+75827-1,Firehouse Headquarters,2016,,Other,Other
+75828-1,Ecto1 & 2,2016,552.0,Ghostbusters,Ghostbusters
+7583-1,Playful Puppy,2008,83.0,Playhouse,Belville
+7585-1,Pony Stable,2008,215.0,Recreation,Belville
+7586-1,Sunshine Home,2008,448.0,Playhouse,Belville
+75870-1,Chevrolet Corvette Z06,2016,176.0,Speed Champions,Speed Champions
+7587-1,Pony Jumping,2008,,Recreation,Belville
+75871-1,Ford Mustang GT,2016,188.0,Speed Champions,Speed Champions
+75872-1,Audi R18 e-tron quattro,2016,168.0,Speed Champions,Speed Champions
+75873-1,Audi R8 LMS ultra,2016,178.0,Speed Champions,Speed Champions
+75874-1,Chevrolet Camaro Drag Race,2016,448.0,Speed Champions,Speed Champions
+75875-1,Ford F-150 Raptor & Ford Model A Hot Rod,2016,,Speed Champions,Speed Champions
+75876-1,Porsche 919 Hybrid and 917K Pit Lane,2016,742.0,Speed Champions,Speed Champions
+75877-1,Mercedes-AMG GT3,2017,,Speed Champions,Speed Champions
+75878-1,Bugatti Chiron,2017,181.0,Speed Champions,Speed Champions
+75879-1,Scuderia Ferrari SF16-H,2017,184.0,Speed Champions,Speed Champions
+75880-1,McLaren 720S,2017,,Speed Champions,Speed Champions
+75881-1,2016 Ford GT & 1966 Ford GT40,2017,366.0,Speed Champions,Speed Champions
+75882-1,Ferrari FXX K & Development Center,2017,493.0,Speed Champions,Speed Champions
+75883-1,"MERCEDES AMG PETRONAS Formula One"" Team",2017,940.0,Speed Champions,Speed Champions
+75899-1,LaFerrari,2015,,Speed Champions,Speed Champions
+75900-1,Mummy Museum Mystery,2015,110.0,Scooby-Doo,Scooby-Doo
+7590-1,Woody and Buzz to the Rescue,2010,,Toy Story,Toy Story
+75901-1,Mystery Plane Adventures,2015,,Scooby-Doo,Scooby-Doo
+75902-1,The Mystery Machine,2015,300.0,Scooby-Doo,Scooby-Doo
+75903-1,Haunted Lighthouse,2015,435.0,Scooby-Doo,Scooby-Doo
+75904-1,Mystery Mansion,2015,,Scooby-Doo,Scooby-Doo
+75908-1,458 Italia GT2,2015,156.0,Speed Champions,Speed Champions
+75909-1,McLaren P1,2015,171.0,Speed Champions,Speed Champions
+759-1,Storage Cabinet,1985,,Service Packs,Service Packs
+75910-1,Porsche 918 Spyder,2015,154.0,Speed Champions,Speed Champions
+7591-1,Construct-a-Zurg,2010,,Toy Story,Toy Story
+75911-1,McLaren Mercedes Pit Stop,2015,340.0,Speed Champions,Speed Champions
+75912-1,Porsche 911 GT Finish Line,2015,,Speed Champions,Speed Champions
+75913-1,F14 T & Scuderia Ferrari Truck,2015,,Speed Champions,Speed Champions
+75915-1,Pteranodon Capture,2015,173.0,Jurassic World,Jurassic World
+75916-1,Dilophosaurus Ambush,2015,246.0,Jurassic World,Jurassic World
+75917-1,Raptor Rampage,2015,,Jurassic World,Jurassic World
+75918-1,T-Rex Tracker,2015,519.0,Jurassic World,Jurassic World
+75919-1,Indominus rex™ Breakout,2015,1154.0,Jurassic World,Jurassic World
+75920-1,Raptor Escape,2015,,Jurassic World,Jurassic World
+7592-1,Construct-a-Buzz,2010,205.0,Toy Story,Toy Story
+7593-1,Buzz's Star Command Spaceship,2010,,Toy Story,Toy Story
+7594-1,Woody's Roundup!,2010,502.0,Toy Story,Toy Story
+7595-1,Army Men on Patrol,2010,,Toy Story,Toy Story
+7596-1,Trash Compactor Escape,2010,367.0,Toy Story,Toy Story
+7597-1,Western Train Chase,2010,,Toy Story,Toy Story
+7598-1,Pizza Planet Truck Rescue,2010,225.0,Toy Story,Toy Story
+7599-1,Garbage Truck Getaway,2010,404.0,Toy Story,Toy Story
+76000-1,Arctic Batman vs. Mr. Freeze: Aquaman on Ice,2013,197.0,Batman,Super Heroes
+7600-1,Advent Calendar 2007 Belville,2007,,Belville,Seasonal
+7600-10,Advent Calendar 2007 Belville (Day 9) Sleigh,2007,9.0,Belville,Seasonal
+7600-11,Advent Calendar 2007 Belville (Day 10) Snowman,2007,9.0,Belville,Seasonal
+76001-1,The Bat vs. Bane: Tumbler Chase,2013,,Batman,Super Heroes
+7600-12,Advent Calendar 2007 Belville (Day 11) Turret,2007,4.0,Belville,Seasonal
+7600-13,Advent Calendar 2007 Belville (Day 12) Rabbit,2007,3.0,Belville,Seasonal
+7600-14,Advent Calendar 2007 Belville (Day 13) Fruit Cup and Bottles,2007,,Belville,Seasonal
+7600-15,Advent Calendar 2007 Belville (Day 14) Flowers,2007,8.0,Belville,Seasonal
+7600-16,Advent Calendar 2007 Belville (Day 15) Vanity Case,2007,,Belville,Seasonal
+7600-17,Advent Calendar 2007 Belville (Day 16) Fireplace,2007,20.0,Belville,Seasonal
+7600-18,Advent Calendar 2007 Belville (Day 17) Frog Book and Jewel Case,2007,,Belville,Seasonal
+7600-19,Advent Calendar 2007 Belville (Day 18) Teddy Bear,2007,5.0,Belville,Seasonal
+7600-2,Advent Calendar 2007 Belville (Day 1) Fairy with Wand,2007,2.0,Belville,Seasonal
+7600-20,Advent Calendar 2007 Belville (Day 19) Jelly and Ice Cream,2007,10.0,Belville,Seasonal
+7600-21,Advent Calendar 2007 Belville (Day 20) Dog and Bowl,2007,,Belville,Seasonal
+76002-1,Superman: Metropolis Showdown,2013,119.0,Superman,Super Heroes
+7600-22,Advent Calendar 2007 Belville (Day 21) Toy Ball,2007,,Belville,Seasonal
+7600-23,Advent Calendar 2007 Belville (Day 22) Festive Wreath,2007,,Belville,Seasonal
+7600-24,Advent Calendar 2007 Belville (Day 23) Toy Castle,2007,17.0,Belville,Seasonal
+7600-25,Advent Calendar 2007 Belville (Day 24) Christmas Tree and Presents,2007,9.0,Belville,Seasonal
+7600-3,Advent Calendar 2007 Belville (Day 2) Bed,2007,,Belville,Seasonal
+76003-1,Superman: Battle of Smallville,2013,417.0,Superman,Super Heroes
+7600-4,Advent Calendar 2007 Belville (Day 3) Vanity Unit,2007,8.0,Belville,Seasonal
+76004-1,Spider-Man: Spider-Cycle Chase,2013,236.0,Spider-Man,Super Heroes
+7600-5,Advent Calendar 2007 Belville (Day 4) Jewel Chest,2007,,Belville,Seasonal
+76005-1,Spider-Man: Daily Bugle Showdown,2013,473.0,Spider-Man,Super Heroes
+7600-6,Advent Calendar 2007 Belville (Day 5) Cat,2007,6.0,Belville,Seasonal
+76006-1,Iron Man: Extremis Sea Port Battle,2013,195.0,Iron Man,Super Heroes
+7600-7,Advent Calendar 2007 Belville (Day 6) Tea Set,2007,,Belville,Seasonal
+76007-1,Iron Man: Malibu Mansion Attack,2013,363.0,Iron Man,Super Heroes
+7600-8,Advent Calendar 2007 Belville (Day 7) Chair and Desk Lamp,2007,,Belville,Seasonal
+76008-1,Iron Man vs. The Mandarin: Ultimate Showdown,2013,91.0,Iron Man,Super Heroes
+7600-9,Advent Calendar 2007 Belville (Day 8) Kitten,2007,12.0,Belville,Seasonal
+76009-1,Superman: Black Zero Escape,2013,,Superman,Super Heroes
+760-1,Storage Cabinet,1985,5.0,Service Packs,Service Packs
+76010-1,The Penguin Face Off,2014,,Batman,Super Heroes
+76011-1,Batman: Man-Bat Attack,2014,183.0,Batman,Super Heroes
+76012-1,Batman: The Riddler Chase,2014,303.0,Batman,Super Heroes
+76013-1,The Joker Steam Roller,2014,,Batman,Super Heroes
+76014-1,Spider-Trike vs. Electro,2014,,Spider-Man,Super Heroes
+76015-1,Doc Ock Truck Heist,2014,236.0,Spider-Man,Super Heroes
+76016-1,Spider-Helicopter Rescue,2014,,Spider-Man,Super Heroes
+76017-1,Captain America vs. Hydra,2014,179.0,Avengers,Super Heroes
+76018-1,Hulk Lab Smash,2014,396.0,Avengers,Super Heroes
+76019-1,Starblaster Showdown,2014,195.0,Guardians of the Galaxy,Super Heroes
+760-2,London Bus,1975,110.0,Factory,Factory
+76020-1,Knowhere Escape Mission,2014,,Guardians of the Galaxy,Super Heroes
+7602-1,Jeep,2006,,Creator,Creator
+76021-1,The Milano Spaceship Rescue,2014,664.0,Guardians of the Galaxy,Super Heroes
+76022-1,X-Men vs. The Sentinel,2014,,X-Men,Super Heroes
+76023-1,The Tumbler,2014,1866.0,Ultimate Collector Series,Super Heroes
+76025-1,Green Lantern vs. Sinestro,2015,,Justice League,Super Heroes
+76026-1,Gorilla Grodd Goes Bananas,2015,,Justice League,Super Heroes
+76027-1,Black Manta Deep Sea Strike,2015,386.0,Justice League,Super Heroes
+76028-1,Darkseid Invasion,2015,,Justice League,Super Heroes
+76029-1,Iron Man vs. Ultron,2015,92.0,Avengers,Super Heroes
+76030-1,Avengers Hydra Showdown,2015,219.0,Avengers,Super Heroes
+76031-1,The Hulk Buster Smash,2015,,Avengers,Super Heroes
+76032-1,The Avengers Quinjet Chase,2015,,Avengers,Super Heroes
+76034-1,Batboat Harbor Pursuit,2015,263.0,Batman,Super Heroes
+76035-1,Jokerland,2015,,Batman,Super Heroes
+76036-1,Carnage's Shield Sky Attack,2015,,Marvel,Super Heroes
+76037-1,Rhino and Sandman Supervillain Team-up,2015,,Marvel,Super Heroes
+76038-1,Attack on Avengers Tower,2015,,Avengers,Super Heroes
+76039-1,Ant-Man Final Battle,2015,,Marvel,Super Heroes
+76040-1,Brainiac Attack,2015,178.0,Justice League,Super Heroes
+7604-1,Dinosaur,2006,,Creator,Creator
+76041-1,The Hydra Fortress Smash,2015,,Avengers,Super Heroes
+76042-1,The SHIELD Helicarrier,2015,2995.0,Avengers,Super Heroes
+76044-1,Clash of the Heroes,2016,91.0,Super Heroes,Super Heroes
+76045-1,Kryptonite Interception,2016,,Super Heroes,Super Heroes
+76046-1,Heroes of Justice: Sky High Battle,2016,,Super Heroes,Super Heroes
+76047-1,Black Panther Pursuit,2016,284.0,Marvel,Super Heroes
+76048-1,Iron Skull Sub Attack,2016,333.0,Avengers,Super Heroes
+76049-1,Avenjet Space Mission,2016,,Avengers,Super Heroes
+76050-1,Crossbones’ Hazard Heist,2016,,Marvel,Super Heroes
+76051-1,Super Hero Airport Battle,2016,,Super Heroes,Super Heroes
+76052-1,Batman Classic TV Series - Batcave,2016,,Batman,Super Heroes
+76053-1,Gotham City Cycle Chase,2016,,Batman,Super Heroes
+76054-1,Batman: Scarecrow Harvest of Fear,2016,561.0,Batman,Super Heroes
+76055-1,Batman: Killer Croc Sewer Smash,2016,,Batman,Super Heroes
+76056-1,Batman: Rescue from Ra's al Ghul,2016,256.0,Batman,Super Heroes
+76057-1,Spider-Man: Web Warriors Ultimate Bridge Battle,2016,1090.0,Spider-Man,Super Heroes
+76058-1,Spider-Man: Ghost Rider Team-up,2016,216.0,Spider-Man,Super Heroes
+76059-1,Spider-Man: Doc Ock's Tentacle Trap,2016,445.0,Spider-Man,Super Heroes
+76060-1,Doctor Strange's Sanctum Sanctorum,2016,,Marvel,Super Heroes
+7606-1,Frog,2006,,Creator,Creator
+76061-1,Mighty Micros: Batman™ vs. Catwoman™,2016,,Super Heroes,Super Heroes
+76062-1,Mighty Micros: Robin™ vs. Bane™,2016,77.0,Super Heroes,Super Heroes
+76063-1,Mighty Micros: The Flash™ vs. Captain Cold™,2016,88.0,Super Heroes,Super Heroes
+76064-1,Mighty Micros: Spider-Man vs. Green Goblin,2016,85.0,Super Heroes,Super Heroes
+76065-1,Mighty Micros: Captain America vs. Red Skull,2016,,Super Heroes,Super Heroes
+76066-1,Mighty Micros: Hulk vs. Ultron,2016,,Super Heroes,Super Heroes
+76067-1,Tanker Truck Takedown,2016,329.0,Marvel,Super Heroes
+76068-1,Mighty Micros: Superman™ vs. Bizarro™,2017,,Superman,Super Heroes
+76069-1,Mighty Micros: Batman vs. Killer Moth,2017,,Batman,Super Heroes
+76070-1,Mighty Micros: Wonder Woman vs. Doomsday,2017,85.0,Super Heroes,Super Heroes
+7607-1,Butterfly,2006,29.0,Creator,Creator
+76071-1,Mighty Micros: Spider-Man vs. Scorpion ,2017,79.0,Spider-Man,Super Heroes
+76072-1,Mighty Micros: Iron Man vs. Thanos,2017,,Super Heroes,Super Heroes
+76073-1,Mighty Micros: Wolverine vs. Magneto,2017,84.0,Marvel,Super Heroes
+76075-1,"Wonder Woman"" Warrior Battle",2017,,Super Heroes,Super Heroes
+76076-1,Captain America Jet Pursuit,2017,,Marvel,Super Heroes
+76077-1,Iron Man: Detroit Steel Strikes,2017,376.0,Marvel,Super Heroes
+76078-1,Hulk vs. Red Hulk,2017,,Marvel,Super Heroes
+76079-1,Ravager Attack,2017,196.0,Guardians of the Galaxy,Super Heroes
+76080-1,Ayesha's Revenge,2017,321.0,Guardians of the Galaxy,Super Heroes
+7608-1,Shark,2006,27.0,Creator,Creator
+76081-1,The Milano vs. The Abilisk,2017,458.0,Guardians of the Galaxy,Super Heroes
+76082-1,ATM Heist Battle,2017,184.0,Marvel,Super Heroes
+76083-1,Beware the Vulture,2017,,Marvel,Super Heroes
+76084-1,The Ultimate Battle for Asgard,2017,399.0,Marvel,Super Heroes
+76085-1,Battle of Atlantis,2017,,Super Heroes,Super Heroes
+76086-1,Knightcrawler Tunnel Attack,2017,621.0,Super Heroes,Super Heroes
+76087-1,Flying Fox: Batmobile Airlift Attack,2017,953.0,Super Heroes,Super Heroes
+76088-1,Thor vs. Hulk: Arena Clash,2017,491.0,Marvel Super Heroes,Juniors
+7609-1,Helicopter,2006,28.0,Airport,Creator
+7610-1,Speedboat,2006,,Creator,Creator
+7611-1,Police Car,2008,35.0,Racers,Racers
+7612-1,Muscle Car,2008,,Tiny Turbos,Racers
+7613-1,Track Racer,2008,,Tiny Turbos,Racers
+7615-1,Basic Blue Bucket,2009,471.0,Basic Set,Creator
+7616-1,Basic Red Bucket,2009,,Basic Set,Creator
+7620-1,Motorcycle Chase,2008,79.0,Last Crusade,Indiana Jones
+7621-1,Lost Tomb,2008,277.0,Raiders of the Lost Ark,Indiana Jones
+7622-1,Race for the Stolen Treasure,2008,275.0,Raiders of the Lost Ark,Indiana Jones
+7623-1,Temple Escape,2008,553.0,Raiders of the Lost Ark,Indiana Jones
+7624-1,Jungle Duel,2008,,Kingdom of the Crystal Skull,Indiana Jones
+7625-1,River Chase,2008,,Kingdom of the Crystal Skull,Indiana Jones
+7626-1,Jungle Cutter,2008,,Kingdom of the Crystal Skull,Indiana Jones
+7627-1,Temple of the Crystal Skull,2008,,Kingdom of the Crystal Skull,Indiana Jones
+7628-1,Peril in Peru,2008,,Kingdom of the Crystal Skull,Indiana Jones
+7630-1,Front-End Loader,2009,107.0,Construction,Town
+7631-1,Dump Truck,2009,184.0,Construction,Town
+7632-1,Crawler Crane,2009,478.0,Construction,Town
+7633-1,Construction Site,2009,897.0,Construction,Town
+7634-1,Tractor,2009,77.0,Farm,Town
+7635-1,4WD with Horse Trailer,2009,176.0,Farm,Town
+7636-1,Combine Harvester,2009,,Farm,Town
+7637-1,Farm,2009,,Farm,Town
+7638-1,Tow Truck,2009,,Traffic,Town
+7639-1,Camper,2009,164.0,Traffic,Town
+7641-1,City Corner,2009,,Traffic,Town
+7642-1,Garage,2009,957.0,Traffic,Town
+7643-1,Air Show Plane,2009,114.0,Airport,Town
+7644-1,MX-81 Hypersonic Operations Aircraft,2008,794.0,Mars Mission,Space
+7645-1,MT-61 Crystal Reaper,2008,598.0,Mars Mission,Space
+764521-1,Co-Pack,2008,,City,Town
+7646-1,ETX Alien Infiltrator,2008,,Mars Mission,Space
+7647-1,MX-41 Switch Fighter,2008,234.0,Mars Mission,Space
+7648-1,MT-21 Mobile Mining Unit,2008,129.0,Mars Mission,Space
+7649-1,MT-201 Ultra-Drill Walker,2008,757.0,Mars Mission,Space
+7654-1,Droids Battle Pack,2007,,Star Wars Episode 3,Star Wars
+7655-1,Clone Troopers Battle Pack,2007,,Star Wars Episode 3,Star Wars
+7656-1,General Grievous Starfighter,2007,232.0,Star Wars Episode 3,Star Wars
+7657-1,AT-ST,2007,243.0,Star Wars Episode 4/5/6,Star Wars
+7658-1,Y-wing Fighter,2007,454.0,Star Wars Episode 4/5/6,Star Wars
+7659-1,Imperial Landing Craft,2007,471.0,Star Wars Episode 4/5/6,Star Wars
+7660-1,Naboo N-1 Starfighter and Vulture Droid,2007,279.0,Star Wars Episode 1,Star Wars
+7661-1,Jedi Starfighter with Hyperdrive Booster Ring,2007,,Star Wars Episode 3,Star Wars
+7662-1,Trade Federation MTT,2007,1326.0,Star Wars Episode 1,Star Wars
+7663-1,Sith Infiltrator,2007,,Star Wars Episode 1,Star Wars
+7664-1,TIE Crawler,2007,546.0,Star Wars Other,Star Wars
+7665-1,Republic Cruiser (Limited Edition - with R2-R7),2007,920.0,Star Wars Episode 1,Star Wars
+7666-1,Hoth Rebel Base [Limited Edition - with K-3PO],2007,557.0,Star Wars Episode 4/5/6,Star Wars
+7667-1,Imperial Dropship,2008,80.0,Star Wars Other,Star Wars
+7668-1,Rebel Scout Speeder,2008,81.0,Star Wars Other,Star Wars
+7669-1,Anakin's Jedi Starfighter,2008,,Star Wars Clone Wars,Star Wars
+7669-2,Anakin's Jedi Starfighter Clone Wars White Box,2008,144.0,Star Wars Clone Wars,Star Wars
+7670-1,Hailfire Droid & Spider Droid,2008,,Star Wars Episode 2,Star Wars
+7670-2,Hailfire Droid & Spider Droid Clone Wars White Box,2008,249.0,Star Wars Clone Wars,Star Wars
+7671-1,AT-AP Walker,2008,392.0,Star Wars Episode 3,Star Wars
+7672-1,Rogue Shadow,2008,481.0,Star Wars Other,Star Wars
+7673-1,Magna Guard Starfighter,2008,430.0,Star Wars Clone Wars,Star Wars
+7674-1,V-19 Torrent,2008,470.0,Star Wars Clone Wars,Star Wars
+7675-1,AT-TE Walker,2008,809.0,Star Wars Clone Wars,Star Wars
+7676-1,Republic Attack Gunship,2008,1033.0,Star Wars Clone Wars,Star Wars
+7678-1,Droid Gunship,2008,,Star Wars Episode 3,Star Wars
+7679-1,Republic Fighter Tank,2008,595.0,Star Wars Clone Wars,Star Wars
+7680-1,The Twilight - Limited Edition,2008,887.0,Star Wars Clone Wars,Star Wars
+7681-1,Separatist Spider Droid,2008,,Star Wars Clone Wars,Star Wars
+7682-1,Shanghai Chase,2009,,Temple of Doom,Indiana Jones
+7683-1,Fight on the Flying Wing,2009,,Raiders of the Lost Ark,Indiana Jones
+7684-1,Pig Farm & Tractor,2010,,Farm,Town
+7685-1,Dozer,2009,,Construction,Town
+7686-1,Helicopter Transporter,2009,,Traffic,Town
+7687-1,Advent Calendar 2009 City,2009,,City,Seasonal
+7687-10,Advent Calendar 2009 City (Day 9) Traffic Light,2009,,City,Seasonal
+7687-11,Advent Calendar 2009 City (Day 10) Letter Carrier,2009,5.0,City,Seasonal
+7687-12,Advent Calendar 2009 City (Day 11) ATV,2009,17.0,City,Seasonal
+7687-13,Advent Calendar 2009 City (Day 12) Crate and Present,2009,,City,Seasonal
+7687-14,Advent Calendar 2009 City (Day 13) Chef and Cup,2009,5.0,City,Seasonal
+7687-15,Advent Calendar 2009 City (Day 14) Coffee Stand,2009,17.0,City,Seasonal
+7687-16,Advent Calendar 2009 City (Day 15) Park Bench,2009,,City,Seasonal
+7687-17,Advent Calendar 2009 City (Day 16) Street Cleaner,2009,5.0,City,Seasonal
+7687-18,Advent Calendar 2009 City (Day 17) Wheelbarrow and Snowballs,2009,,City,Seasonal
+7687-19,Advent Calendar 2009 City (Day 18) Fountain,2009,9.0,City,Seasonal
+7687-2,Advent Calendar 2009 City (Day 1) Minifigure and Snowballs,2009,,City,Seasonal
+7687-20,Advent Calendar 2009 City (Day 19) Child and RC Car,2009,12.0,City,Seasonal
+7687-21,Advent Calendar 2009 City (Day 20) RC Car Cones and Flag,2009,15.0,City,Seasonal
+7687-22,Advent Calendar 2009 City (Day 21) Lumberjack,2009,6.0,City,Seasonal
+7687-23,Advent Calendar 2009 City (Day 22) Chainsaw Sawhorse and Log,2009,14.0,City,Seasonal
+7687-24,Advent Calendar 2009 City (Day 23) Christmas Tree,2009,,City,Seasonal
+7687-25,Advent Calendar 2009 City (Day 24) Santa and Fireplace,2009,,City,Seasonal
+7687-3,Advent Calendar 2009 City (Day 2) Snowman,2009,,City,Seasonal
+7687-4,Advent Calendar 2009 City (Day 3) Sleigh,2009,,City,Seasonal
+7687-5,Advent Calendar 2009 City (Day 4) Minifigure on Skates,2009,7.0,City,Seasonal
+7687-6,Advent Calendar 2009 City (Day 5) Skate Stand,2009,,City,Seasonal
+7687-7,Advent Calendar 2009 City (Day 6) Street Light with Garland,2009,12.0,City,Seasonal
+7687-8,Advent Calendar 2009 City (Day 7) Police Officer with Loudhailer,2009,,City,Seasonal
+7687-9,Advent Calendar 2009 City (Day 8) Road Barrier,2009,,City,Seasonal
+7688-1,Sports Plane,2010,105.0,Airport,Town
+7690-1,MB-01 Eagle Command Base,2007,763.0,Mars Mission,Space
+7691-1,ETX Alien Mothership Assault,2007,,Mars Mission,Space
+7692-1,MX-71 Recon Dropship,2007,434.0,Mars Mission,Space
+7693-1,ETX Alien Strike,2007,,Mars Mission,Space
+7694-1,MT-31 Trike,2007,94.0,Mars Mission,Space
+7695-1,MX-11 Astro Fighter,2007,56.0,Mars Mission,Space
+7696-1,Commuter Jet,2011,107.0,Airport,Town
+7697-1,MT-51 Claw-Tank Ambush,2007,,Mars Mission,Space
+7699-1,MT-101 Armored Drilling Unit,2007,634.0,Mars Mission,Space
+7700-1,Stealth Hunter,2006,163.0,Exo-Force,Exo-Force
+770-1,Rescue Set,1976,142.0,Hospital,Legoland
+7701-1,Grand Titan,2006,196.0,Exo-Force,Exo-Force
+7702-1,Thunder Fury,2006,196.0,Exo-Force,Exo-Force
+7703-1,Fire Vulture,2006,,Exo-Force,Exo-Force
+7704-1,Sonic Phantom,2006,,Exo-Force,Exo-Force
+7705-1,Gate Assault,2006,401.0,Exo-Force,Exo-Force
+7706-1,Mobile Defense Tank,2006,371.0,Exo-Force,Exo-Force
+7707-1,Striking Venom,2006,645.0,Exo-Force,Exo-Force
+7708-1,Uplink,2006,68.0,Exo-Force,Exo-Force
+7709-1,Sentai Fortress,2006,,Exo-Force,Exo-Force
+7710-1,Push-Along Passenger Steam Train,1980,,4.5V,Train
+7711-1,Sentry,2006,,Exo-Force,Exo-Force
+7712-1,Supernova,2006,,Exo-Force,Exo-Force
+7713-1,Bridge Walker vs. White Lightning,2006,,Exo-Force,Exo-Force
+7714-1,Golden Guardian [Limited Gold Edition],2007,266.0,Exo-Force,Exo-Force
+7715-1,Push-Along Passenger Steam Train,1985,448.0,4.5V,Train
+7716-1,QUICK Good Guy White,2006,21.0,Bionicle,Bionicle
+7717-1,QUICK Bad Guy Green,2006,,Bionicle,Bionicle
+7718-1,QUICK Bad Guy Yellow,2006,26.0,Bionicle,Bionicle
+7719-1,QUICK Good Guy Red,2006,21.0,Bionicle,Bionicle
+7720-1,"Diesel Freight Train Set, battery",1980,,4.5V,Train
+7721-1,Combat Crawler X2,2007,,Exo-Force,Exo-Force
+7722-1,"Steam Cargo Train, battery",1985,497.0,4.5V,Train
+7723-1,Police Pontoon Plane,2008,214.0,Police,Town
+7724-1,Advent Calendar 2008 City,2008,,City,Seasonal
+7724-10,Advent Calendar 2008 City (Day 9) Ladder,2008,,City,Seasonal
+7724-11,Advent Calendar 2008 City (Day 10) Chef and Paddle,2008,5.0,City,Seasonal
+7724-12,Advent Calendar 2008 City (Day 11) Table and Pizzas,2008,13.0,City,Seasonal
+7724-13,Advent Calendar 2008 City (Day 12) Oven,2008,,City,Seasonal
+7724-14,Advent Calendar 2008 City (Day 13) Diver and Spear Gun,2008,,City,Seasonal
+7724-15,Advent Calendar 2008 City (Day 14) Life Vest Fins and Bouy,2008,6.0,City,Seasonal
+7724-16,Advent Calendar 2008 City (Day 15) Underwater Scooter,2008,9.0,City,Seasonal
+7724-17,Advent Calendar 2008 City (Day 16) Police Officer and Camera,2008,,City,Seasonal
+7724-18,Advent Calendar 2008 City (Day 17) Mug Shot Studio,2008,8.0,City,Seasonal
+7724-19,Advent Calendar 2008 City (Day 18) Criminal with Handcuffs,2008,5.0,City,Seasonal
+7724-2,Advent Calendar 2008 City (Day 1) Minifigure and Drumstick,2008,5.0,City,Seasonal
+7724-20,Advent Calendar 2008 City (Day 19) Train Worker,2008,,City,Seasonal
+7724-21,Advent Calendar 2008 City (Day 20) Pallet Jack,2008,16.0,City,Seasonal
+7724-22,Advent Calendar 2008 City (Day 21) Pallet of Bottles,2008,18.0,City,Seasonal
+7724-23,Advent Calendar 2008 City (Day 22) Hiker with Ice Pick,2008,6.0,City,Seasonal
+7724-24,Advent Calendar 2008 City (Day 23) Snowmobile,2008,16.0,City,Seasonal
+7724-25,Advent Calendar 2008 City (Day 24) Female and Snowman,2008,15.0,City,Seasonal
+7724-3,Advent Calendar 2008 City (Day 2) Barbecue,2008,10.0,City,Seasonal
+7724-4,Advent Calendar 2008 City (Day 3) Table Cup and Frying Pan,2008,,City,Seasonal
+7724-5,Advent Calendar 2008 City (Day 4) Female with Ice Cream,2008,5.0,City,Seasonal
+7724-6,Advent Calendar 2008 City (Day 5) Freezer Chest and Umbrella,2008,6.0,City,Seasonal
+7724-7,Advent Calendar 2008 City (Day 6) Ice Cream Cart and Sundae,2008,11.0,City,Seasonal
+7724-8,Advent Calendar 2008 City (Day 7) Fireman and Radio,2008,5.0,City,Seasonal
+7724-9,Advent Calendar 2008 City (Day 8) Kitten in a Tree,2008,,City,Seasonal
+7725-1,Electric Passenger Train,1981,488.0,12V,Train
+7726-1,Coast Guard Truck with Speed Boat,2008,,Coast Guard,Town
+7727-1,Freight Steam Train,1983,569.0,12V,Train
+7730-1,Electric Goods Train,1980,519.0,12V,Train
+7731-1,Mail Van,2008,65.0,Town,Town
+7732-1,Air Mail,2008,,Town,Town
+7733-1,Truck & Forklift,2008,342.0,Cargo,Town
+7734-1,Cargo Plane,2008,462.0,Cargo,Town
+7735-1,Freight Train,1985,516.0,12V,Train
+7736-1,Coast Guard Quad Bike,2008,33.0,Coast Guard,Town
+7737-1,Off-Road Vehicle and Jet Scooter,2008,,Coast Guard,Town
+7738-1,Coast Guard Helicopter and Life Raft,2008,447.0,Coast Guard,Town
+7739-1,Coast Guard Patrol Boat and Tower,2008,444.0,Coast Guard,Town
+7740-1,Inter-City Passenger Train,1980,,12V,Train
+7741-1,Police Helicopter,2008,93.0,Police,Town
+7743-1,Police Command Center,2008,523.0,Police,Town
+7744-1,Police Headquarters,2008,957.0,Police,Town
+7745-1,High-Speed City Express Passenger Train,1985,735.0,12V,Train
+7746-1,Single-Drum Roller,2009,207.0,Construction,Town
+7747-1,Wind Turbine Transport,2009,,Traffic,Town
+7748-1,Corporate Alliance Tank Droid,2009,216.0,Star Wars Clone Wars,Star Wars
+7749-1,Echo Base,2009,,Star Wars Episode 4/5/6,Star Wars
+7750-1,Steam Engine,1980,267.0,12V,Train
+775-1,Fire Fighter Ship,1978,141.0,Boat,Boat
+7751-1,Ahsoka's Starfighter and Vulture Droid,2009,290.0,Star Wars Clone Wars,Star Wars
+7752-1,Count Dooku's Solar Sailer,2009,,Star Wars Clone Wars,Star Wars
+7753-1,Pirate Tank,2009,,Star Wars Clone Wars,Star Wars
+7754-1,Home One Mon Calamari Star Cruiser - Limited Edition,2009,,Star Wars Episode 4/5/6,Star Wars
+7755-1,Diesel Heavy Shunting Locomotive,1983,163.0,12V,Train
+7760-1,Diesel Shunter Locomotive,1980,151.0,12V,Train
+7770-1,Deep Sea Treasure Hunter,2007,79.0,Aquaraiders II,Aquazone
+7771-1,Angler Ambush,2007,,Aquaraiders II,Aquazone
+7772-1,Lobster Strike,2007,224.0,Aquaraiders II,Aquazone
+7773-1,Tiger Shark Attack,2007,,Aquaraiders II,Aquazone
+7774-1,Crab Crusher,2007,582.0,Aquaraiders II,Aquazone
+7775-1,Aquabase Invasion,2007,850.0,Aquaraiders II,Aquazone
+7776-1,The Shipwreck,2007,,Aquaraiders II,Aquazone
+7777-1,Idea Book 7777,1981,,Train,Books
+7778-1,Midi-Scale Millennium Falcon,2009,355.0,Star Wars Episode 4/5/6,Star Wars
+7779-1,The Batman Dragster: Catwoman Pursuit,2006,,Batman,Super Heroes
+7780-1,The Batboat: Hunt for Killer Croc,2006,,Batman,Super Heroes
+7781-1,The Batmobile: Two-Face's Escape,2006,392.0,Batman,Super Heroes
+7782-1,The Batwing: The Joker's Aerial Assault,2006,,Batman,Super Heroes
+7783-1,The Batcave: The Penguin and Mr. Freeze's Invasion,2006,,Batman,Super Heroes
+7784-1,The Batmobile Ultimate Collectors' Edition,2006,1045.0,Ultimate Collector Series,Super Heroes
+7785-1,Arkham Asylum,2006,868.0,Batman,Super Heroes
+7786-1,The Batcopter: The Chase for the Scarecrow,2007,299.0,Batman,Super Heroes
+7787-1,The Bat-Tank: The Riddler and Bane's Hideout,2007,651.0,Batman,Super Heroes
+7789-1,Lotso's Dump Truck,2010,129.0,Toy Story,Toy Story
+7793-1,LEGO Standard Starter Set,2006,,Basic Set,Creator
+7795-1,LEGO Deluxe Starter Set,2006,1092.0,Basic Set,Creator
+7796-1,House,2008,,Building,Creator
+7797-1,Bi-Plane,2008,37.0,Airport,Creator
+7798-1,Stegosaurus,2008,,Creature,Creator
+7799-1,Cargo Chopper,2008,,Creator,Creator
+7800-1,Off Road Racer,2009,28.0,Tiny Turbos,Racers
+780-1,Road Construction Set,1976,159.0,Construction,Legoland
+7801-1,Red Racer Polybag,2009,,Tiny Turbos,Racers
+7802-1,Black Racer Polybag,2009,28.0,Tiny Turbos,Racers
+7803-1,Jeep,2009,38.0,Traffic,Creator
+7804-1,Green Lizard,2009,,Creator,Creator
+7805-1,Shark,2009,44.0,Creator,Creator
+7808-1,Yellow Airplane,2009,,Creator,Creator
+7810-1,Push-Along Steam Engine,1980,,4.5V,Train
+781-1,Storage Case,1982,,Supplemental,Universal Building Set
+7813-1,Shell Tanker Wagon,1986,120.0,4.5V,Train
+7814-1,Crane Wagon with Small Container,1980,113.0,4.5V,Train
+7815-1,Passenger Carriage / Sleeper,1983,228.0,4.5V,Train
+7816-1,Shell Tanker Wagon,1980,111.0,4.5V,Train
+7817-1,Crane Wagon,1985,,4.5V,Train
+7818-1,Passenger Carriage,1980,,4.5V,Train
+7819-1,Postal Container Wagon Covered,1983,182.0,Train,Train
+7820-1,Mail Van,1980,211.0,Train,Train
+782-1,Storage Case,1984,,Supplemental,Universal Building Set
+7821-1,Overhead Gantry and Lighting Maintenance Wagon,1983,90.0,4.5V,Train
+7822-1,Railway Station,1980,382.0,4.5V,Train
+7823-1,Container Crane Depot,1986,,12V,Train
+7824-1,Railway Station,1983,478.0,4.5V,Train
+7825-1,Creator Bucket,2002,,Basic Set,Creator
+7830-1,Small Blue Bucket,2002,200.0,Basic Set,Creator
+783-1,Storage Case,1985,1.0,Supplemental,Universal Building Set
+7831-1,Make-believe Bucket,2002,200.0,Basic Set,Creator
+7832-1,Small Blue Bucket,2002,200.0,Basic Set,Creator
+7834-1,Level Crossing Manual,1980,95.0,12V,Train
+7835-1,Manual Road Crossing,1985,134.0,4.5V,Train
+7836-1,Halloween Bucket,2003,200.0,Seasonal,Seasonal
+7837-1,Build and Create,2002,600.0,Basic Set,Creator
+7838-1,Freight Loading Depot with Wagon,1983,,4.5V,Train
+7839-1,Car Transport Depot,1986,,12V,Train
+7844-1,Duplo Airport Rescue Truck,2004,,Duplo,Duplo
+7848-1,Toys 'R' Us Truck,2010,,Traffic,Town
+7850-1,8 Straight Rails Gray 4.5v,1980,32.0,4.5V,Train
+785-1,Red Box,1973,1.0,Supplemental,Universal Building Set
+7851-1,8 Curved Rails Gray 4.5v,1980,32.0,4.5V,Train
+7852-1,Left and Right Points Manual Gray 4.5v,1980,14.0,4.5V,Train
+7853-1,"Crossing, Gray 4.5v",1980,,4.5V,Train
+7854-1,8 Straight Electric Rails Gray 12v,1980,,12V,Train
+7855-1,8 Curved Electric Rails Gray 12v,1980,,12V,Train
+7856-1,Left and Right Manual Points with Electric Rails,1980,16.0,12V,Train
+7857-1,"Crossing, Electric Rails Gray 12v",1980,5.0,12V,Train
+78579-1,Action Pack (Target Exclusive),1998,,Town,Town
+78579-2,Action Pack,1998,4.0,Town,Town
+7858-1,Remote Controlled Points Right 12v,1980,,12V,Train
+7859-1,Remote Controlled Points Left 12v,1980,,12V,Train
+78597-1,Extreme Action Pack,1999,3.0,Extreme Team,Town
+7860-1,Remote Controlled Signal 12v,1980,25.0,12V,Train
+786-1,Storage Cloth,1980,1.0,Supplemental,Universal Building Set
+7861-1,Lighting Set Electric 12v,1980,,12V,Train
+7862-1,Remote Controlled Decoupling,1981,16.0,12V,Train
+7863-1,Remote Controlled Point Motor,1980,7.0,12V,Train
+7864-1,Transformer / Controller 12V,1980,34.0,12V,Train
+7865-1,12V Motor,1980,19.0,12V,Train
+7866-1,Remote Controlled Road Crossing,1983,194.0,12V,Train
+7867-1,12V Train Light Posts,1983,52.0,12V,Train
+78675-1,Exclusive RoboRiders Six Set Limited Edition Value Pack,2000,,RoboRiders,Technic
+7868-1,Mace Windu's Jedi Starfighter,2011,,Star Wars Clone Wars,Star Wars
+7869-1,Battle for Geonosis,2011,335.0,Star Wars Clone Wars,Star Wars
+7870-1,Hans Christian Andersen Bucket,2005,,Basic Set,Creator
+787-1,Play Mat with Drawstring,1977,1.0,Supplemental,Universal Building Set
+7871-1,Whale,2007,,Creator,Creator
+7872-1,Lion,2007,57.0,Creature,Creator
+7873-1,Airplane,2007,38.0,Airport,Creator
+7875-1,Backhoe,2007,39.0,Construction,Creator
+7876-1,Cement Mixer,2007,44.0,Construction,Creator
+7877-1,Naboo Starfighter,2011,317.0,Star Wars Episode 1,Star Wars
+78777-1,Alien Discovery,2000,3.0,Life On Mars,Space
+7879-1,Hoth Echo Base,2011,,Star Wars Episode 4/5/6,Star Wars
+78800-1,Soccer Bonus Set,2000,,Soccer,Sports
+7880-1,Big Pirate Ship,2006,34.0,Duplo,Duplo
+7881-1,Pirate Ship,2006,24.0,Duplo,Duplo
+7882-1,Shark Attack,2006,11.0,Duplo,Duplo
+7883-1,Treasure Hunt,2006,10.0,Duplo,Duplo
+7884-1,Batman's Buggy: The Escape of Mr. Freeze,2008,76.0,Batman,Super Heroes
+7885-1,Robin's Scuba Jet: Attack of The Penguin,2008,207.0,Batman,Super Heroes
+7886-1,The Batcycle: Harley Quinn's Hammer Truck,2008,,Batman,Super Heroes
+7888-1,The Tumbler: Joker's Ice Cream Surprise,2008,456.0,Batman,Super Heroes
+7890-1,Ambulance,2006,,Hospital,Town
+789-1,Storage Cloth,1987,1.0,Supplemental,Universal Building Set
+7891-1,Airport Firetruck,2006,,Airport,Town
+7892-1,Hospital,2006,385.0,Hospital,Town
+7893-1,Passenger Plane,2006,403.0,Airport,Town
+7893-2,Passenger Plane - ANA version,2006,386.0,Airport,Town
+7894-1,Airport,2006,,Airport,Town
+7894-2,Airport - ANA Version,2007,685.0,Airport,Town
+7895-1,Switching Tracks,2006,,RC Train,Train
+7896-1,Straight & Curved Rails,2006,16.0,RC Train,Train
+7897-1,Passenger Train,2006,,RC Train,Train
+7898-1,Cargo Train Deluxe,2006,,RC Train,Train
+7899-1,Police Boat,2006,,Police,Town
+79000-1,Riddles for The Ring,2012,105.0,An Unexpected Journey,The Hobbit and Lord of the Rings
+7900-1,Heavy Loader,2006,348.0,Construction,Town
+79001-1,Escape from Mirkwood Spiders,2012,298.0,An Unexpected Journey,The Hobbit and Lord of the Rings
+79002-1,Attack of the Wargs,2012,,An Unexpected Journey,The Hobbit and Lord of the Rings
+79003-1,An Unexpected Gathering,2012,,An Unexpected Journey,The Hobbit and Lord of the Rings
+79004-1,Barrel Escape,2012,333.0,An Unexpected Journey,The Hobbit and Lord of the Rings
+79005-1,The Wizard Battle,2013,,The Fellowship of the Ring,The Hobbit and Lord of the Rings
+79006-1,The Council of Elrond,2013,242.0,The Fellowship of the Ring,The Hobbit and Lord of the Rings
+79007-1,Battle at the Black Gate,2013,655.0,The Return of the King,The Hobbit and Lord of the Rings
+79008-1,Pirate Ship Ambush,2013,,The Return of the King,The Hobbit and Lord of the Rings
+79010-1,The Goblin King Battle,2012,,An Unexpected Journey,The Hobbit and Lord of the Rings
+7901-1,Airplane Mechanic,2006,,Airport,Town
+79011-1,Dol Guldur Ambush,2013,217.0,The Desolation of Smaug,The Hobbit and Lord of the Rings
+79012-1,Mirkwood Elf Army,2013,276.0,The Desolation of Smaug,The Hobbit and Lord of the Rings
+79013-1,Lake-town Chase,2013,,The Desolation of Smaug,The Hobbit and Lord of the Rings
+79014-1,Dol Guldur Battle,2013,795.0,The Desolation of Smaug,The Hobbit and Lord of the Rings
+79015-1,Witch-King Battle,2014,,The Battle of the Five Armies,The Hobbit and Lord of the Rings
+79016-1,Attack on Lake-town,2014,313.0,The Battle of the Five Armies,The Hobbit and Lord of the Rings
+79017-1,The Battle of the Five Armies,2014,471.0,The Battle of the Five Armies,The Hobbit and Lord of the Rings
+79018-1,The Lonely Mountain,2014,864.0,The Battle of the Five Armies,The Hobbit and Lord of the Rings
+7902-1,Doctor's Car,2006,65.0,Hospital,Town
+7903-1,Rescue Helicopter,2006,248.0,Hospital,Town
+7904-1,Advent Calendar 2006 City,2006,24.0,City,Seasonal
+7904-10,Advent Calendar 2006 City (Day 9) Computer Desk & Chair,2006,,City,Seasonal
+7904-11,Advent Calendar 2006 City (Day 10) Train Conductor with Signal Paddle,2006,6.0,City,Seasonal
+7904-12,Advent Calendar 2006 City (Day 11) Level Crossing and Signal,2006,,City,Seasonal
+7904-13,Advent Calendar 2006 City (Day 12) Train Handcar,2006,,City,Seasonal
+7904-14,Advent Calendar 2006 City (Day 13) Street Cleaner,2006,5.0,City,Seasonal
+7904-15,Advent Calendar 2006 City (Day 14) Street Cleaner's Pushcart,2006,13.0,City,Seasonal
+7904-16,Advent Calendar 2006 City (Day 15) Phone Kiosk,2006,,City,Seasonal
+7904-17,Advent Calendar 2006 City (Day 16) Police Officer with Signal Paddle,2006,6.0,City,Seasonal
+7904-18,Advent Calendar 2006 City (Day 17) Police Barricade and Speed Limit Sign,2006,,City,Seasonal
+7904-19,Advent Calendar 2006 City (Day 18) Speed Radar Gun,2006,,City,Seasonal
+7904-2,Advent Calendar 2006 City (Day 1) Construction Worker,2006,5.0,City,Seasonal
+7904-20,Advent Calendar 2006 City (Day 19) Mechanic,2006,5.0,City,Seasonal
+7904-21,Advent Calendar 2006 City (Day 20) Tool Chest,2006,11.0,City,Seasonal
+7904-22,Advent Calendar 2006 City (Day 21) Work Bench with Vise,2006,,City,Seasonal
+7904-23,Advent Calendar 2006 City (Day 22) Firefighter,2006,7.0,City,Seasonal
+7904-24,Advent Calendar 2006 City (Day 23) Water Cannon and Burning Oil Drum,2006,11.0,City,Seasonal
+7904-25,Advent Calendar 2006 City (Day 24) Santa Tree Gifts & Fireplace,2006,31.0,City,Seasonal
+7904-3,Advent Calendar 2006 City (Day 2) Traffic Control Sticks,2006,,City,Seasonal
+7904-4,Advent Calendar 2006 City (Day 3) Traffic Cone Barricade Cement Finisher,2006,12.0,City,Seasonal
+7904-5,Advent Calendar 2006 City (Day 4) Airport Ground Crew,2006,,City,Seasonal
+7904-6,Advent Calendar 2006 City (Day 5) Hand Truck and Luggage,2006,,City,Seasonal
+7904-7,Advent Calendar 2006 City (Day 6) X-Ray Machine,2006,,City,Seasonal
+7904-8,Advent Calendar 2006 City (Day 7) Doctor with bag,2006,,City,Seasonal
+7904-9,Advent Calendar 2006 City (Day 8) Hospital Bed with IV Stand,2006,10.0,City,Seasonal
+7905-1,Building Crane,2006,,Construction,Town
+7906-1,Fireboat,2007,,Fire,Town
+7907-1,Advent Calendar 2007 City,2007,,City,Seasonal
+7907-10,Advent Calendar 2007 City (Day 9) Radar,2007,10.0,City,Seasonal
+7907-11,Advent Calendar 2007 City (Day 10) Dock Worker,2007,,City,Seasonal
+7907-12,Advent Calendar 2007 City (Day 11) Small Dock with Life Preserver,2007,,City,Seasonal
+7907-13,Advent Calendar 2007 City (Day 12) Hand Truck and Load,2007,,City,Seasonal
+7907-14,Advent Calendar 2007 City (Day 13) Mechanic and Wrench,2007,5.0,City,Seasonal
+7907-15,Advent Calendar 2007 City (Day 14) Car Wash Kiosk,2007,11.0,City,Seasonal
+7907-16,Advent Calendar 2007 City (Day 15) Cash Register and Display,2007,,City,Seasonal
+7907-17,Advent Calendar 2007 City (Day 16) Train Worker and Briefcase,2007,5.0,City,Seasonal
+7907-18,Advent Calendar 2007 City (Day 17) Bench with Clock,2007,11.0,City,Seasonal
+7907-19,Advent Calendar 2007 City (Day 18) Signal Mast,2007,9.0,City,Seasonal
+7907-2,Advent Calendar 2007 City (Day 1) Firefighter and Saw,2007,,City,Seasonal
+7907-20,Advent Calendar 2007 City (Day 19) Sanitary Engineer and Broom,2007,,City,Seasonal
+7907-21,Advent Calendar 2007 City (Day 20) Dustbin and Shovel,2007,11.0,City,Seasonal
+7907-22,Advent Calendar 2007 City (Day 21) Dumpster,2007,13.0,City,Seasonal
+7907-23,Advent Calendar 2007 City (Day 22) Policeman with Megaphone,2007,,City,Seasonal
+7907-24,Advent Calendar 2007 City (Day 23) Computer Desk and Chair,2007,,City,Seasonal
+7907-25,Advent Calendar 2007 City (Day 24) Christmas Tree,2007,27.0,City,Seasonal
+7907-3,Advent Calendar 2007 City (Day 2) Fire Hydrant and Tools,2007,13.0,City,Seasonal
+7907-4,Advent Calendar 2007 City (Day 3) Crate with Burning Cylinders,2007,,City,Seasonal
+7907-5,Advent Calendar 2007 City (Day 4) Construction Worker and Pickaxe,2007,5.0,City,Seasonal
+7907-6,Advent Calendar 2007 City (Day 5) Barricade,2007,12.0,City,Seasonal
+7907-7,Advent Calendar 2007 City (Day 6) Directional Sign,2007,,City,Seasonal
+7907-8,Advent Calendar 2007 City (Day 7) Airline Worker and Radio,2007,5.0,City,Seasonal
+7907-9,Advent Calendar 2007 City (Day 8) Luggage Cart,2007,9.0,City,Seasonal
+79100-1,Kraang Lab Escape,2013,90.0,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+7910-1,Robot Promotional (Duracell),2004,29.0,Designer Sets,Designer Sets
+79101-1,Shredder's Dragon Bike,2013,197.0,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+79102-1,Stealth Shell in Pursuit,2013,160.0,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+79103-1,Turtle Lair Attack,2013,485.0,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+79104-1,The Shellraiser Street Chase,2013,,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+79104-2,The Shellraiser Street Chase V2.0,2013,,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+79104-3,The Shellraiser Street Chase (Technic Base Version),2013,,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+79105-1,Baxter Robot Rampage,2013,396.0,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+79106-1,Cavalry Builder Set,2013,70.0,The Lone Ranger,The Lone Ranger
+79107-1,Comanche Camp,2013,161.0,The Lone Ranger,The Lone Ranger
+79108-1,Stagecoach Escape,2013,279.0,The Lone Ranger,The Lone Ranger
+79109-1,Colby City Showdown,2013,,The Lone Ranger,The Lone Ranger
+791-1,Storage Box - Red,1972,,Supplemental,Universal Building Set
+79110-1,Silver Mine Shootout,2013,643.0,The Lone Ranger,The Lone Ranger
+7911-1,Ship Promotional (Duracell),2004,,Designer Sets,Designer Sets
+79111-1,Constitution Train Chase,2013,,The Lone Ranger,The Lone Ranger
+79115-1,Turtle Van Takedown,2014,367.0,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+79116-1,Big Rig Snow Getaway,2014,741.0,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+79117-1,Turtle Lair Invasion,2014,,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+79118-1,Karai Bike Escape,2014,87.0,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+79119-1,Mutation Chamber Unleashed,2014,195.0,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+79120-1,T-Rawket Sky Strike,2014,,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+7912-1,Helicopter Promotional (Duracell),2004,,Designer Sets,Designer Sets
+79121-1,Turtle Sub Undersea Chase,2014,,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+79122-1,Shredder’s Lair Rescue,2014,,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+7913-1,Clone Trooper Battle Pack,2011,,Star Wars Clone Wars,Star Wars
+7914-1,Mandalorian Battle Pack,2011,,Star Wars Clone Wars,Star Wars
+7915-1,Imperial V-wing Starfighter,2011,138.0,Star Wars Episode 3,Star Wars
+7917-1,McDonald's Sports Set Number 3 - Blue Basketball Player #22,2004,4.0,Basketball,Sports
+7918-1,McDonald's Sports Set Number 8 - Green Basketball Player #35,2004,4.0,Basketball,Sports
+7919-1,McDonald's Sports Set Number 4 - White Hockey Player #5,2004,,Hockey,Sports
+7920-1,McDonald's Sports Set Number 5 - Blue Hockey Player #4,2004,3.0,Hockey,Sports
+792-1,Storage Box - White,1972,,Supplemental,Universal Building Set
+7921-1,McDonald's Sports Set Number 7 - Gray Vest Skateboarder,2004,5.0,Gravity Games,Sports
+7922-1,McDonald's Sports Set Number 6 - Orange Vest Snowboarder,2004,,Gravity Games,Sports
+7923-1,McDonald's Sports Set Number 1 - White Soccer Player #4,2004,,Soccer,Sports
+7924-1,McDonald's Sports Set Number 2 - Red Soccer Player #11,2004,,Soccer,Sports
+7929-1,The Battle of Naboo,2011,,Star Wars Episode 1,Star Wars
+7930-1,Bounty Hunter Gunship,2011,389.0,Star Wars Clone Wars,Star Wars
+793-1,Storage Box - Blue,1972,,Supplemental,Universal Building Set
+7931-1,T6 Jedi Shuttle,2011,,Star Wars Clone Wars,Star Wars
+7936-1,Level Crossing,2010,138.0,Train,Train
+7937-1,Train Station,2010,367.0,Train,Train
+7938-1,Passenger Train,2010,668.0,RC Train,Train
+7939-1,Cargo Train,2010,838.0,RC Train,Train
+794-1,Storage Box - Yellow,1972,,Supplemental,Universal Building Set
+7942-1,Off-Road Fire Rescue,2007,130.0,Fire,Town
+7944-1,Fire Hovercraft,2007,273.0,Fire,Town
+7945-1,Fire Station,2007,603.0,Fire,Town
+7946-1,King's Castle,2010,932.0,Kingdoms,Castle
+7947-1,Prison Tower Rescue,2010,365.0,Kingdoms,Castle
+7948-1,Outpost Attack,2010,,Kingdoms,Castle
+7949-1,Prison Carriage Rescue,2010,,Kingdoms,Castle
+7950-1,Knight's Showdown,2010,,Kingdoms,Castle
+795-1,"Baseplates, Red and Blue",1971,,Supplemental,Universal Building Set
+7952-1,Advent Calendar 2010 Kingdoms,2010,,Castle,Seasonal
+7952-10,Advent Calendar 2010 Kingdoms (Day 9) - Chest with Jewels,2010,5.0,Castle,Seasonal
+7952-11,Advent Calendar 2010 Kingdoms (Day 10) - Skeleton,2010,,Castle,Seasonal
+7952-12,Advent Calendar 2010 Kingdoms (Day 11) - Dungeon Cell Window with Handcuffs,2010,,Castle,Seasonal
+7952-13,Advent Calendar 2010 Kingdoms (Day 12) - Pig with Apple,2010,2.0,Castle,Seasonal
+7952-14,Advent Calendar 2010 Kingdoms (Day 13) - Prince with Sword,2010,5.0,Castle,Seasonal
+7952-15,Advent Calendar 2010 Kingdoms (Day 14) - Sword in the Stone,2010,6.0,Castle,Seasonal
+7952-16,Advent Calendar 2010 Kingdoms (Day 15) - Jousting Dummy with Helmet and Halberd,2010,,Castle,Seasonal
+7952-17,Advent Calendar 2010 Kingdoms (Day 16) - Barmaid,2010,,Castle,Seasonal
+7952-18,Advent Calendar 2010 Kingdoms (Day 17) - Keg with Tap,2010,9.0,Castle,Seasonal
+7952-19,Advent Calendar 2010 Kingdoms (Day 18) - Cauldron,2010,3.0,Castle,Seasonal
+7952-2,Advent Calendar 2010 Kingdoms (Day 1) - Blacksmith with Hammer,2010,5.0,Castle,Seasonal
+7952-20,Advent Calendar 2010 Kingdoms (Day 19) - Lion Knight with Spear,2010,,Castle,Seasonal
+7952-21,Advent Calendar 2010 Kingdoms (Day 20) - Catapult,2010,7.0,Castle,Seasonal
+7952-22,Advent Calendar 2010 Kingdoms (Day 21) - Lion Knight Scale Mail with Quiver and Crossbow,2010,6.0,Castle,Seasonal
+7952-23,Advent Calendar 2010 Kingdoms (Day 22) - Owl in Tree,2010,6.0,Castle,Seasonal
+7952-24,Advent Calendar 2010 Kingdoms (Day 23) - Cooking Table with Frying Pan,2010,12.0,Castle,Seasonal
+7952-25,Advent Calendar 2010 Kingdoms (Day 24) - Blue Wizard with Wand,2010,6.0,Castle,Seasonal
+7952-3,Advent Calendar 2010 Kingdoms (Day 2) - Anvil and Forge with Sword,2010,13.0,Castle,Seasonal
+7952-4,Advent Calendar 2010 Kingdoms (Day 3) - Weapons Rack,2010,11.0,Castle,Seasonal
+7952-5,Advent Calendar 2010 Kingdoms (Day 4) - Dragon Knight with Flail,2010,5.0,Castle,Seasonal
+7952-6,Advent Calendar 2010 Kingdoms (Day 5) - Weapons Cart with Spear,2010,9.0,Castle,Seasonal
+7952-7,Advent Calendar 2010 Kingdoms (Day 6) - Armor Rack with Plate Armor and Helmet,2010,,Castle,Seasonal
+7952-8,Advent Calendar 2010 Kingdoms (Day 7) - Queen with Frog,2010,6.0,Castle,Seasonal
+7952-9,Advent Calendar 2010 Kingdoms (Day 8) - Throne,2010,7.0,Castle,Seasonal
+7953-1,Court Jester,2010,22.0,Kingdoms,Castle
+7955-1,Wizard,2010,,Kingdoms,Castle
+7956-1,Ewok Attack,2011,,Star Wars Episode 4/5/6,Star Wars
+7957-1,Sith Nightspeeder,2011,213.0,Star Wars Clone Wars,Star Wars
+7958-1,Advent Calendar 2011 Star Wars,2011,,Star Wars,Seasonal
+7958-10,Advent Calendar 2011 Star Wars (Day 9) - X-wing Fighter,2011,,Star Wars,Seasonal
+7958-11,Advent Calendar 2011 Star Wars (Day 10) - Imperial Shuttle,2011,,Star Wars,Seasonal
+7958-12,Advent Calendar 2011 Star Wars (Day 11) - Battle Droid Pilot,2011,,Star Wars,Seasonal
+7958-13,Advent Calendar 2011 Star Wars (Day 12) - Rebel Snowspeeder,2011,17.0,Star Wars,Seasonal
+7958-14,Advent Calendar 2011 Star Wars (Day 13) - R2-Q5,2011,4.0,Star Wars,Seasonal
+7958-15,Advent Calendar 2011 Star Wars (Day 14) - Mouse Droid,2011,,Star Wars,Seasonal
+7958-16,Advent Calendar 2011 Star Wars (Day 15) - Republic Gunship,2011,14.0,Star Wars,Seasonal
+7958-17,Advent Calendar 2011 Star Wars (Day 16) - Clone Pilot,2011,4.0,Star Wars,Seasonal
+7958-18,Advent Calendar 2011 Star Wars (Day 17) - Weapon Depot,2011,,Star Wars,Seasonal
+7958-19,Advent Calendar 2011 Star Wars (Day 18) - Anakin's Y-wing Starfighter,2011,,Star Wars,Seasonal
+7958-2,Advent Calendar 2011 Star Wars (Day 1) - Republic Cruiser,2011,19.0,Star Wars,Seasonal
+7958-20,Advent Calendar 2011 Star Wars (Day 19) - TIE Defender Pilot,2011,4.0,Star Wars,Seasonal
+7958-21,Advent Calendar 2011 Star Wars (Day 20) - TIE Fighter,2011,7.0,Star Wars,Seasonal
+7958-22,Advent Calendar 2011 Star Wars (Day 21) - Millennium Falcon,2011,13.0,Star Wars,Seasonal
+7958-23,Advent Calendar 2011 Star Wars (Day 22) - A-wing Fighter,2011,9.0,Star Wars,Seasonal
+7958-24,Advent Calendar 2011 Star Wars (Day 23) - Christmas Tree,2011,18.0,Star Wars,Seasonal
+7958-25,Advent Calendar 2011 Star Wars (Day 24) - Santa Yoda,2011,7.0,Star Wars,Seasonal
+7958-3,Advent Calendar 2011 Star Wars (Day 2) - Nute Gunray,2011,4.0,Star Wars,Seasonal
+7958-4,Advent Calendar 2011 Star Wars (Day 3) - Mechno-Chair,2011,,Star Wars,Seasonal
+7958-5,Advent Calendar 2011 Star Wars (Day 4) - Separatist Spider Droid,2011,20.0,Star Wars,Seasonal
+7958-6,Advent Calendar 2011 Star Wars (Day 5) - Boba Fett's Slave I,2011,20.0,Star Wars,Seasonal
+7958-7,Advent Calendar 2011 Star Wars (Day 6) - Chewbacca,2011,,Star Wars,Seasonal
+7958-8,Advent Calendar 2011 Star Wars (Day 7) - Tool Depot,2011,9.0,Star Wars,Seasonal
+7958-9,Advent Calendar 2011 Star Wars (Day 8) - Zev Senesca,2011,,Star Wars,Seasonal
+7959-1,Geonosian Starfighter,2011,,Star Wars Clone Wars,Star Wars
+796-1,"Baseplates, Green and Yellow",1971,2.0,Supplemental,Universal Building Set
+7961-1,Darth Maul's Sith Infiltrator,2011,,Star Wars Episode 1,Star Wars
+7962-1,Anakin's and Sebulba's Podracers,2011,810.0,Star Wars Episode 1,Star Wars
+7964-1,Republic Frigate,2011,1030.0,Star Wars Clone Wars,Star Wars
+7965-1,Millennium Falcon,2011,,Star Wars Episode 4/5/6,Star Wars
+7967-1,Fast,2010,68.0,Power Racers,Racers
+7968-1,Strong,2010,90.0,Power Racers,Racers
+7970-1,Hero,2010,,Power Racers,Racers
+797-1,"2 large baseplates, gray/white",1971,2.0,Supplemental,Universal Building Set
+7971-1,Bad,2010,,Power Racers,Racers
+7976-1,Ocean Speeder,2011,,Atlantis,Atlantis
+7977-1,Seabed Strider,2011,,Atlantis,Atlantis
+7978-1,Angler Attack,2011,,Atlantis,Atlantis
+7979-1,Advent Calendar 2008 Castle,2008,24.0,Castle,Seasonal
+7979-10,Advent Calendar 2008 Castle (Day 9) - Crossbow on Wheels,2008,7.0,Castle,Seasonal
+7979-11,Advent Calendar 2008 Castle (Day 10) - Dwarf with Pick Axe,2008,,Castle,Seasonal
+7979-12,Advent Calendar 2008 Castle (Day 11) - Fire and Crystal,2008,6.0,Castle,Seasonal
+7979-13,Advent Calendar 2008 Castle (Day 12) - Container on Wheels,2008,,Castle,Seasonal
+7979-14,Advent Calendar 2008 Castle (Day 13) - Tools Storage with Frog,2008,,Castle,Seasonal
+7979-15,Advent Calendar 2008 Castle (Day 14) - Evil Witch,2008,,Castle,Seasonal
+7979-16,Advent Calendar 2008 Castle (Day 15) - Cooking Pot with Snake,2008,9.0,Castle,Seasonal
+7979-17,Advent Calendar 2008 Castle (Day 16) - Shelving with Bat,2008,,Castle,Seasonal
+7979-18,Advent Calendar 2008 Castle (Day 17) - Crystal Ball,2008,,Castle,Seasonal
+7979-19,Advent Calendar 2008 Castle (Day 18) - Maid with Broom and Rat,2008,6.0,Castle,Seasonal
+7979-2,Advent Calendar 2008 Castle (Day 1) - Soldier with Spear,2008,5.0,Castle,Seasonal
+7979-20,Advent Calendar 2008 Castle (Day 19) - Food Basket,2008,4.0,Castle,Seasonal
+7979-21,Advent Calendar 2008 Castle (Day 20) - Dinner Table,2008,,Castle,Seasonal
+7979-22,Advent Calendar 2008 Castle (Day 21) - Troll Warrior,2008,5.0,Castle,Seasonal
+7979-23,Advent Calendar 2008 Castle (Day 22) - Catapult,2008,,Castle,Seasonal
+7979-24,Advent Calendar 2008 Castle (Day 23) - Treasure Chest with Spider,2008,,Castle,Seasonal
+7979-25,Advent Calendar 2008 Castle (Day 24) - Jester,2008,4.0,Castle,Seasonal
+7979-3,Advent Calendar 2008 Castle (Day 2) - Brick Arch with Flag and Shield,2008,10.0,Castle,Seasonal
+7979-4,Advent Calendar 2008 Castle (Day 3) - Armour Stand,2008,,Castle,Seasonal
+7979-5,Advent Calendar 2008 Castle (Day 4) - White Skeleton with Flail,2008,,Castle,Seasonal
+7979-6,Advent Calendar 2008 Castle (Day 5) - Weapon Stand,2008,,Castle,Seasonal
+7979-7,Advent Calendar 2008 Castle (Day 6) - Black Skeleton with Crossbow,2008,7.0,Castle,Seasonal
+7979-8,Advent Calendar 2008 Castle (Day 7) - Castle Soldier with Sword,2008,5.0,Castle,Seasonal
+7979-9,Advent Calendar 2008 Castle (Day 8) - Archery Target,2008,,Castle,Seasonal
+798-1,"Baseplates, Green",1972,2.0,Supplemental,Universal Building Set
+7984-1,Deep Sea Raider,2011,265.0,Atlantis,Atlantis
+7985-1,City of Atlantis,2011,686.0,Atlantis,Atlantis
+7990-1,Cement Mixer,2007,,Construction,Town
+799-1,"Baseplate, Gray",1964,,Supplemental,Classic
+7991-1,Garbage Truck,2007,,Traffic,Town
+7992-1,Container Stacker,2007,217.0,Cargo,Town
+7993-1,Service Station,2007,,Town,Town
+7994-1,LEGO City Harbor,2007,660.0,Harbor,Town
+7996-1,Double Crossover Track,2007,4.0,RC Train,Train
+7997-1,Train Station,2007,,RC Train,Train
+7998-1,Heavy Hauler,2007,331.0,Construction,Town
+8000-1,Pit Droid™ / Star Wars Pit Droid,2000,,Star Wars,Star Wars
+800-1,Gear Set with Motor,1970,120.0,Gears,Universal Building Set
+8001-1,Battle Droid™ / Star Wars Battle Droid,2000,336.0,Star Wars,Star Wars
+800-2,Extra Bricks Red,1986,,Supplemental,Universal Building Set
+8002-1,Destroyer Droid™ / Star Wars Destroyer Droid,2000,,Star Wars,Star Wars
+8003-1,Volcano Climber,2000,,RoboRiders,Technic
+8004-1,Dirt Bike,2000,,RoboRiders,Technic
+8005-1,Ice Explorer,2000,34.0,RoboRiders,Technic
+8006-1,Swamp Craft,2000,25.0,RoboRiders,Technic
+8007-1,C-3PO™,2001,340.0,Star Wars,Star Wars
+8008-1,Stormtrooper™,2001,,Star Wars,Star Wars
+8009-1,R2-D2™,2002,,Star Wars,Star Wars
+8010-1,Darth Vader™,2002,,Star Wars,Star Wars
+801-1,Gear Set,1970,,Gears,Universal Building Set
+8011-1,Jango Fett™,2002,,Star Wars,Star Wars
+801-2,Extra Bricks Blue,1986,62.0,Supplemental,Universal Building Set
+8012-1,Super Battle Droid™,2002,379.0,Star Wars,Star Wars
+8014-1,Clone Walker Battle Pack,2009,79.0,Star Wars Clone Wars,Star Wars
+8015-1,Assassin Droids Battle Pack,2009,,Star Wars Clone Wars,Star Wars
+8016-1,Hyena Droid Bomber,2009,231.0,Star Wars Clone Wars,Star Wars
+8017-1,Darth Vader's TIE Fighter,2009,250.0,Star Wars Episode 4/5/6,Star Wars
+8018-1,Armored Assault Tank (AAT),2009,,Star Wars Clone Wars,Star Wars
+8019-1,Republic Attack Shuttle,2009,636.0,Star Wars Clone Wars,Star Wars
+8020-1,Universal Building Set,1984,119.0,Universal Building Set,Technic
+802-1,Gear Supplementary Set,1970,,Gears,Universal Building Set
+802-2,Extra Bricks White,1986,62.0,Supplemental,Universal Building Set
+8022-1,TECHNIC Starter Set,1993,118.0,Universal Building Set,Technic
+8024-1,Universal Building Set,1989,114.0,Universal Building Set,Technic
+8026-1,Kraatu,2004,20.0,Bionicle,Bionicle
+8028-1,TIE Fighter - Mini,2008,,Star Wars Episode 4/5/6,Star Wars
+8029-1,Mini Snowspeeder,2008,66.0,Mini,Star Wars
+8030-1,Universal Building Set,1982,,Universal Building Set,Technic
+803-1,Extra Bricks Yellow,1986,,Supplemental,Universal Building Set
+8031-1,V-19 Torrent - Mini,2008,,Star Wars Clone Wars,Star Wars
+803-2,Gear/Wheel Set,1972,163.0,Gears,Universal Building Set
+8032-1,Universal Set,1994,212.0,Universal Building Set,Technic
+8033-1,General Grievous Starfighter - Mini,2009,44.0,Star Wars Episode 3,Star Wars
+8034-1,Universal Building Set,1989,,Universal Building Set,Technic
+8035-1,Universal Building Set,1986,,Universal Building Set,Technic
+8036-1,Separatist Shuttle,2009,,Star Wars Clone Wars,Star Wars
+8037-1,Anakin's Y-wing Starfighter,2009,569.0,Star Wars Clone Wars,Star Wars
+8038-1,The Battle of Endor,2009,,Star Wars Episode 4/5/6,Star Wars
+8039-1,Venator-Class Republic Attack Cruiser,2009,1169.0,Star Wars Clone Wars,Star Wars
+8040-1,Universal Building Set,1984,,Universal Building Set,Technic
+804-1,Extra Bricks Black,1986,,Supplemental,Universal Building Set
+8041-1,Race Truck,2010,607.0,Race,Technic
+8042-1,Universal Pneumatic Set,1993,230.0,Universal Building Set,Technic
+8043-1,Motorized Excavator,2010,1124.0,Construction,Technic
+8044-1,Universal Pneumatic Set,1989,,Universal Building Set,Technic
+8045-1,Mini Telehandler,2010,118.0,Construction,Technic
+8046-1,Helicopter,2010,152.0,Airport,Technic
+8047-1,Compact Excavator,2010,252.0,Construction,Technic
+8048-1,Buggy,2010,313.0,Off-Road,Technic
+8049-1,Tractor with Log Loader,2010,,Farm,Technic
+8050-1,Universal Building Set,1982,,Universal Building Set,Technic
+805-1,Extra Bricks Gray,1986,,Supplemental,Universal Building Set
+8051-1,Motorbike,2010,,Riding Cycle,Technic
+8052-1,Container Truck,2010,685.0,Construction,Technic
+8053-1,Mobile Crane,2010,1288.0,Construction,Technic
+8054-1,Universal Building Set,1989,196.0,Universal Building Set,Technic
+8055-1,Universal Building Set with Motor,1986,,Universal Building Set,Technic
+8056-1,Monster Crab Clash,2010,,Atlantis,Atlantis
+8057-1,Wreck Raider,2010,,Atlantis,Atlantis
+8058-1,Guardian of the Deep,2010,,Atlantis,Atlantis
+8059-1,Seabed Scavenger,2010,119.0,Atlantis,Atlantis
+8060-1,Typhoon Turbo Sub,2010,,Atlantis,Atlantis
+806-1,Extra Plates Blue,1986,42.0,Supplemental,Universal Building Set
+8061-1,Gateway of the Squid,2010,,Atlantis,Atlantis
+8062-1,Universal Set with Storage Case,1994,,Universal Building Set,Technic
+8063-1,Tractor with Trailer,2009,,Farm,Technic
+8064-1,Motorized Universal Building Set,1990,219.0,Universal Building Set,Technic
+8065-1,Mini Container Truck,2011,119.0,Construction,Technic
+8066-1,Off-Roader,2011,141.0,Off-Road,Technic
+8067-1,Mini Mobile Crane,2011,292.0,Construction,Technic
+8068-1,Rescue Helicopter,2011,407.0,Airport,Technic
+8069-1,Backhoe Loader,2011,608.0,Construction,Technic
+8070-1,Supercar,2011,,Technic,Technic
+807-1,Extra Plates Red,1986,42.0,Supplemental,Universal Building Set
+8071-1,Lift Truck,2011,,Model,Technic
+8072-1,Sea Jet,2010,,Atlantis,Atlantis
+8073-1,Manta Warrior,2010,13.0,Atlantis,Atlantis
+8074-1,Universal Building Set with Flex System,1992,313.0,Universal Building Set,Technic
+8075-1,Neptune Carrier,2010,,Atlantis,Atlantis
+8076-1,Deep Sea Striker,2010,,Atlantis,Atlantis
+8077-1,Atlantis Exploration HQ,2010,,Atlantis,Atlantis
+8078-1,Portal of Atlantis,2010,,Atlantis,Atlantis
+8079-1,Shadow Snapper,2010,244.0,Atlantis,Atlantis
+8080-1,Undersea Explorer,2010,,Atlantis,Atlantis
+808-1,Wheels and Tires,1986,40.0,Supplemental,Universal Building Set
+8081-1,Extreme Cruiser,2011,589.0,Model,Technic
+8082-1,Universal Building Set,1993,456.0,Universal Building Set,Technic
+8083-1,Rebel Trooper Battle Pack,2010,79.0,Star Wars Episode 4/5/6,Star Wars
+8084-1,Snowtrooper Battle Pack,2010,74.0,Star Wars Episode 4/5/6,Star Wars
+8085-1,Freeco Speeder,2010,,Star Wars Clone Wars,Star Wars
+8086-1,Droid Tri-Fighter,2010,,Star Wars Clone Wars,Star Wars
+8087-1,TIE Defender,2010,304.0,Star Wars Other,Star Wars
+8088-1,ARC-170 Starfighter,2010,395.0,Star Wars Clone Wars,Star Wars
+8089-1,Hoth Wampa Cave,2010,296.0,Star Wars Episode 4/5/6,Star Wars
+8090-1,TECHNIC Universal Set,1982,,Universal Building Set,Technic
+809-1,Doors and Windows,1986,38.0,Supplemental,Universal Building Set
+8091-1,Republic Swamp Speeder - Limited Edition,2010,175.0,Star Wars Clone Wars,Star Wars
+8092-1,Luke's Landspeeder,2010,163.0,Star Wars Episode 4/5/6,Star Wars
+8093-1,Plo Koon’s Jedi Starfighter,2010,174.0,Star Wars Episode 3,Star Wars
+8094-1,TECHNIC Control Center,1990,548.0,Universal Building Set,Technic
+8095-1,General Grievous’ Starfighter,2010,453.0,Star Wars Clone Wars,Star Wars
+8096-1,Emperor Palpatine’s Shuttle,2010,,Star Wars Episode 3,Star Wars
+8097-1,Slave I (Third Edition) [Initial Release],2010,562.0,Star Wars Episode 4/5/6,Star Wars
+8098-1,Clone Turbo Tank,2010,1142.0,Star Wars Clone Wars,Star Wars
+8099-1,Midi-Scale Imperial Star Destroyer,2010,423.0,Star Wars Episode 4/5/6,Star Wars
+810003-1,LEGO Collector,2008,0.0,Books,Books
+810005-1,LEGO Collector's Guide 2nd Edition,2011,0.0,Books,Books
+8100-1,Cyclone Defender,2007,91.0,Exo-Force,Exo-Force
+810-1,Basic Motor Set,1985,,Supplemental,Universal Building Set
+8101-1,Claw Crusher,2007,98.0,Exo-Force,Exo-Force
+810-2,Town Plan - Continental European,1961,,Town Plan,Classic
+8102-1,Blade Titan,2007,161.0,Exo-Force,Exo-Force
+810-3,Gear Truck Set,1974,110.0,Gears,Universal Building Set
+8103-1,Sky Guardian,2007,143.0,Exo-Force,Exo-Force
+810-4,"Town Plan - UK, Cardboard box",1962,755.0,Town Plan,Classic
+8104-1,Shadow Crawler,2007,160.0,Exo-Force,Exo-Force
+8105-1,Iron Condor,2007,,Exo-Force,Exo-Force
+8106-1,Aero Booster,2007,311.0,Exo-Force,Exo-Force
+8107-1,Fight for the Golden Tower,2007,,Exo-Force,Exo-Force
+8108-1,Mobile Devastator,2007,,Exo-Force,Exo-Force
+8109-1,Flatbed Truck,2011,1114.0,Model,Technic
+8110-1,Unimog U400,2011,,Model,Technic
+811-1,"Red Roof Bricks, Steep Pitch",1986,,Supplemental,Universal Building Set
+8111-1,River Dragon,2008,113.0,Exo-Force,Exo-Force
+811-2,Gear Crane Set,1974,181.0,Gears,Universal Building Set
+8112-1,Battle Arachnoid,2008,130.0,Exo-Force,Exo-Force
+8113-1,Assault Tiger,2008,164.0,Exo-Force,Exo-Force
+8114-1,Chameleon Hunter,2008,189.0,Exo-Force,Exo-Force
+8115-1,Dark Panther,2008,243.0,Exo-Force,Exo-Force
+8117-1,Storm Lasher,2008,282.0,Exo-Force,Exo-Force
+8118-1,Hybrid Rescue Tank,2008,346.0,Exo-Force,Exo-Force
+8119-1,Thunder Racer,2009,,Tiny Turbos,Racers
+8120-1,Rally Sprinter,2009,,Tiny Turbos,Racers
+812-1,Gear Supplementary Set,1974,,Gears,Universal Building Set
+8121-1,Track Marshal,2009,,Tiny Turbos,Racers
+812-2,"Red Roof Bricks, Shallow Pitch",1986,,Supplemental,Universal Building Set
+8122-1,Desert Viper,2009,,Tiny Turbos,Racers
+8123-1,Ferrari F1 Racers,2009,,Racers,Racers
+8124-1,Ice Rally,2009,,Tiny Turbos,Racers
+8125-1,Thunder Raceway,2009,160.0,Tiny Turbos,Racers
+8126-1,Desert Challenge,2009,145.0,Tiny Turbos,Racers
+8128-1,Cad Bane's Speeder,2010,317.0,Star Wars Clone Wars,Star Wars
+8129-1,AT-AT Walker,2010,811.0,Star Wars Episode 4/5/6,Star Wars
+8130-1,Terrain Crusher,2007,,Tiny Turbos,Racers
+813-1,"Baseplate, Green",1986,1.0,Supplemental,Universal Building Set
+8131-1,Raceway Rider,2007,,Tiny Turbos,Racers
+813-2,Gear Bulldozer Set,1974,,Gears,Universal Building Set
+8132-1,Night Driver,2007,,Tiny Turbos,Racers
+8133-1,Rally Rider,2007,50.0,Tiny Turbos,Racers
+8134-1,Night Crusher,2007,,Tiny Turbos,Racers
+8135-1,Bridge Chase,2007,542.0,Tiny Turbos,Racers
+8136-1,Fire Crusher,2007,64.0,Power Racers,Racers
+8137-1,Booster Beast,2007,,Power Racers,Racers
+8138-1,Phantom Crasher,2007,84.0,Power Racers,Racers
+8139-1,Night Blazer,2007,65.0,Power Racers,Racers
+8140-1,Tow Trasher,2007,183.0,Power Racers,Racers
+814-1,"Baseplates, Green, Red and Yellow",1986,,Supplemental,Universal Building Set
+8141-1,Off Road Power,2007,,Power Racers,Racers
+814-2,Gear Farm Set,1975,89.0,Gears,Universal Building Set
+8142-1,Ferrari 248 1:24 (Vodafone stickers),2007,166.0,Ferrari,Racers
+8142-2,Ferrari 248 F1 1:24 (Alice version),2007,166.0,Ferrari,Racers
+8143-1,Ferrari 1:17 F430 Challenge,2007,,Ferrari,Racers
+8144-1,Ferrari 248 F1 Team (Schumacher Edition),2007,710.0,Ferrari,Racers
+8144-2,Ferrari 248 F1 Team (Raikkonen Edition),2007,,Ferrari,Racers
+8145-1,Ferrari 599 GTB Fiorano 1:10,2007,1325.0,Ferrari,Racers
+8146-1,Nitro Muscle,2007,597.0,Power Racers,Racers
+8147-1,Bullet Run,2007,,Tiny Turbos,Racers
+8148-1,EZ-Roadster,2008,,Tiny Turbos,Racers
+8149-1,Midnight Streak,2008,42.0,Tiny Turbos,Racers
+8150-1,ZX Turbo,2008,54.0,Tiny Turbos,Racers
+815-1,"Baseplate, Gray",1986,1.0,Supplemental,Universal Building Set
+8151-1,Adrift Sport,2008,,Tiny Turbos,Racers
+8152-1,Speed Chasing,2008,141.0,Tiny Turbos,Racers
+8153-1,Ferrari F1 Truck 1:55,2008,269.0,Ferrari,Racers
+8154-1,Brick Street Customs,2008,,Tiny Turbos,Racers
+8155-1,Ferrari F1 Pit 1:55,2008,,Ferrari,Racers
+8156-1,Ferrari FXX 1:17,2008,625.0,Ferrari,Racers
+8157-1,Ferrari F1 1:9,2009,996.0,Ferrari,Racers
+8158-1,Speed Racer & Snake Oiler,2008,,Speed Racer,Racers
+8159-1,Racer X & Taejo Togokhan,2008,,Speed Racer,Racers
+8160-1,Cruncher Block & Racer X,2008,,Speed Racer,Racers
+816-1,"Lighting Bricks, 4.5V",1987,17.0,Supplemental,Universal Building Set
+8161-1,Grand Prix Race,2008,598.0,Speed Racer,Racers
+8162-1,Race Rig,2009,103.0,Power Racers,Racers
+8163-1,Blue Sprinter,2009,109.0,Power Racers,Racers
+8164-1,Extreme Wheelie,2009,86.0,Power Racers,Racers
+8165-1,Monster Jumper,2009,90.0,Power Racers,Racers
+8166-1,Wing Jumper,2009,202.0,Power Racers,Racers
+8167-1,Jump Riders,2009,208.0,Power Racers,Racers
+8168-1,Ferrari Victory,2009,,Ferrari,Racers
+8169-1,Lamborghini Gallardo LP 560-4,2009,740.0,Lamborghini,Racers
+818-1,"Pullback Motor, Red",1990,,Supplemental,Universal Building Set
+8182-1,Monster Crushers,2009,387.0,Tiny Turbos,Racers
+8183-1,Track Turbo RC,2009,91.0,Radio Control,Racers
+8184-1,Twin X-treme RC,2009,238.0,Radio Control,Racers
+8185-1,Ferrari Truck,2009,,Ferrari,Racers
+8186-1,Street Extreme,2009,,Tiny Turbos,Racers
+8188-1,Fire Blaster,2010,69.0,Power Miners,Power Miners
+8189-1,Magma Mech,2010,185.0,Power Miners,Power Miners
+8190-1,Claw Catcher,2010,,Power Miners,Power Miners
+819-1,Blue Sea Plate,1991,1.0,Supplemental,Universal Building Set
+8191-1,Lavatraz,2010,383.0,Power Miners,Power Miners
+8192-1,Lime Racer,2010,43.0,Tiny Turbos,Racers
+8193-1,Blue Bullet,2010,49.0,Tiny Turbos,Racers
+8194-1,Nitro Muscle,2010,47.0,Tiny Turbos,Racers
+8195-1,Turbo Tow,2010,,Tiny Turbos,Racers
+8196-1,Chopper Jump,2010,141.0,Tiny Turbos,Racers
+8197-1,Highway Chaos,2010,,Tiny Turbos,Racers
+8198-1,Ramp Crash,2010,145.0,Tiny Turbos,Racers
+8199-1,Security Smash,2010,135.0,Tiny Turbos,Racers
+8-2,Universal Building Set,1979,,Basic Set,Universal Building Set
+8200-1,Radiator Springs Lightning McQueen,2011,35.0,Cars,Cars
+820-1,Red Plates Parts Pack,1980,,Supplemental,Universal Building Set
+8201-1,Radiator Springs Classic Mater,2011,,Cars,Cars
+820-2,"LegoWooden Storage Box Large (Double Latch) with Contents, with Lattice",1966,0.0,Classic,Classic
+8202-1,Blast Off Chopper with Bungee Cord Power!,1998,,Competition,Technic
+8203-1,Rover Discovery,1998,,Off-Road,Technic
+8204-1,Sky Flyer I,1998,,Airport,Technic
+8205-1,Bungee Blaster,1997,63.0,Race,Technic
+8206-1,Tokyo Pit Stop,2011,,Cars,Cars
+8207-1,Dune Duster / Hawaiian Beach Racer,1996,,Off-Road,Technic
+8208-1,Custom Cruiser,1998,,Riding Cycle,Technic
+8209-1,F1 Racer / Future F1,1998,48.0,Race,Technic
+8210-1,Nitro Bike GTX / GTX 500,1995,,Riding Cycle,Technic
+821-1,"Brick Separator, Gray",1990,1.0,Supplemental,Universal Building Set
+8211-1,Brick Street Getaway,2010,552.0,Tiny Turbos,Racers
+821264-1,The Lego High Speed Adventure Team (TRU Exclusive),1991,3.0,Classic Town,Town
+8213-1,Spy Runner,1998,,Race,Technic
+8214-1,Gallardo LP 560-4 Polizia,2010,800.0,Lamborghini,Racers
+8215-1,Gyro Copter,1997,106.0,Airport,Technic
+8216-1,Turbo I,1997,,Race,Technic
+8217-1,The Wasp,1998,63.0,Airport,Technic
+8218-1,Trike Tourer,1998,70.0,Riding Cycle,Technic
+8219-1,Go-Cart,1998,,Race,Technic
+822-1,Blue Plates Parts Pack,1980,,Supplemental,Universal Building Set
+8221-1,Storming Enforcer,2011,95.0,Power Racers,Racers
+8222-1,V-TOL,1997,,Airport,Technic
+8223-1,Hydrofoil 7 / Powerboat Columbia,1996,,Harbor,Technic
+8225-1,Road Rally V / Super Kart,1995,97.0,Race,Technic
+8226-1,Mud Masher / Desert Stormer,1998,120.0,Off-Road,Technic
+8227-1,Dragon Dueller,2011,,Power Racers,Racers
+8228-1,Sting Striker,2011,81.0,Power Racers,Racers
+8229-1,Tread Trekker,1997,185.0,Off-Road,Technic
+8230-1,Coastal Cop Buggy / Miami Police Patrol,1996,,Technic,Technic
+8231-1,Vicious Viper,2011,,Power Racers,Racers
+8232-1,Chopper Force,1997,,Airport,Technic
+8233-1,MC vs. Stinger,1998,118.0,Competition,Technic
+8235-1,Front End Loader,1995,166.0,Construction,Technic
+8236-1,Bike Burner,2000,59.0,Speed Slammers,Technic
+8237-1,Slammer Racer / Formula Force,2000,112.0,Speed Slammers,Technic
+8238-1,Slammer Dragsters / Dueling Dragsters,2000,,Speed Slammers,Technic
+8239-1,Cyber Challenge,1998,121.0,Competition,Technic
+8240-1,Slammer Stunt Bike,2001,,Speed Slammers,Technic
+8241-1,Battle Cars,2001,110.0,Speed Slammers,Technic
+8242-1,Slammer Turbo,2001,251.0,Speed Slammers,Technic
+8244-1,Convertables,1996,275.0,Universal Building Set,Technic
+8245-1,Robot's Revenge,1998,,Competition,Technic
+8246-1,Hydro Racer / Swamp Boat,1999,,Harbor,Technic
+8247-1,Road Rebel / Buggy Racer,1999,,Race,Technic
+8248-1,Forklift,1998,227.0,Construction,Technic
+8250-1,Search Sub [No CD],1997,370.0,Harbor,Technic
+8251-1,Sonic Cycle / Motorbike,1999,88.0,Riding Cycle,Technic
+8252-1,Beach Buster / Police Car,1999,168.0,Technic,Technic
+8253-1,Fire Helicopter,1999,210.0,Technic,Technic
+8255-1,Rescue Motorbike / Rescue Trike,1999,,Riding Cycle,Technic
+8256-1,Go-Kart,2009,,Race,Technic
+8257-1,Cyber Strikers,1998,367.0,Competition,Technic
+8258-1,Crane Truck,2009,1876.0,Traffic,Technic
+8259-1,Mini Bulldozer,2009,,Construction,Technic
+8260-1,Tractor,2009,,Construction,Technic
+8261-1,Rally Truck,2009,,Off-Road,Technic
+8262-1,Quad Bike,2009,,Riding Cycle,Technic
+8263-1,Snow Groomer,2009,590.0,Traffic,Technic
+8264-1,Hauler,2009,,Construction,Technic
+8265-1,Front Loader,2009,1060.0,Construction,Technic
+8266-1,Spyder Slayer,1998,,Competition,Technic
+8268-1,Scorpion Attack,1999,,Competition,Technic
+8269-1,Competition Ultra Challenge [aka Cyber Stinger],1999,327.0,Competition,Technic
+8270-1,Rough Terrain Crane,2007,106.0,Construction,Technic
+8271-1,Wheel Loader,2007,,Construction,Technic
+8272-1,Snowmobile,2007,331.0,Off-Road,Technic
+8273-1,Off Road Truck,2007,804.0,Traffic,Technic
+8274-1,Combine Harvester,2007,,Farm,Technic
+8275-1,Motorized Bulldozer,2007,1381.0,Construction,Technic
+8277-1,Giant Model Set,1997,553.0,Robot,Technic
+8279-1,4WD X-Track,2000,,Off-Road,Technic
+8280-1,Fire Engine / Fire Response Unit,1995,430.0,Fire,Technic
+8281-1,Mini Tractor,2006,121.0,Farm,Technic
+8282-1,Quad Bike,2006,200.0,Riding Cycle,Technic
+8283-1,Telehandler,2006,324.0,Construction,Technic
+8284-1,Tractor / Dune Buggy,2006,872.0,Off-Road,Technic
+8284-2,Tractor / Dune Buggy,2006,872.0,Farm,Technic
+8285-1,Tow Truck,2006,1877.0,Traffic,Technic
+8286-1,3 In 1 Car / Amphipower,1996,731.0,Traffic,Technic
+8287-1,Motor Box,2006,93.0,Supplemental,Technic
+8288-1,Crawler Crane,2006,800.0,Construction,Technic
+8289-1,Fire Truck,2006,,Fire,Technic
+8290-1,Mini Forklift,2008,,Construction,Technic
+8291-1,Dirt Bike,2008,,Riding Cycle,Technic
+8292-1,Cherry Picker,2008,,Construction,Technic
+8293-1,Power Functions Motor Set,2008,10.0,Power Functions,Power Functions
+8294-1,Excavator,2008,,Construction,Technic
+8295-1,Telescopic Handler,2008,1180.0,Construction,Technic
+8296-1,Dune Buggy,2008,199.0,Off-Road,Technic
+8297-1,Off-Roader,2008,,Off-Road,Technic
+8299-1,Search Sub With CDROM,1997,371.0,Harbor,Technic
+8-3,Basic Set,1973,,Basic Set,Universal Building Set
+8300-1,LEGO TECHNIC Team,2000,,Supplemental,Technic
+830-1,Red Bricks Parts Pack,1980,46.0,Supplemental,Universal Building Set
+8301-1,Urban Enforcer,2011,44.0,Tiny Turbos,Racers
+8302-1,Rod Rider,2011,,Tiny Turbos,Racers
+8303-1,Demon Destroyer,2011,50.0,Tiny Turbos,Racers
+8304-1,Smokin' Slickster,2011,,Tiny Turbos,Racers
+8305-1,Duel Bikes,2000,208.0,Competition,Technic
+8307-1,Turbo Racer,2000,392.0,Competition,Technic
+831-1,Black Bricks Parts Pack,1980,,Supplemental,Universal Building Set
+832-1,Blue Bricks Parts Pack,1980,46.0,Supplemental,Universal Building Set
+833-1,White Bricks Parts Pack,1980,46.0,Supplemental,Universal Building Set
+834-1,Yellow Bricks Parts Pack,1980,,Supplemental,Universal Building Set
+8350-1,Pro Stunt,2003,30.0,Drome Racers,Racers
+8353-1,Slammer Rhino,2003,218.0,Drome Racers,Racers
+8354-1,Exo Force Bike,2003,,Drome Racers,Racers
+8355-1,H.O.T. Blaster Bike,2003,87.0,Drome Racers,Racers
+8356-1,Jungle Monster,2003,,Drome Racers,Racers
+8357-1,Zonic Strike,2003,106.0,Drome Racers,Racers
+8358-1,Off-Roader,2003,26.0,Drome Racers,Racers
+8359-1,Desert Racer,2003,27.0,Drome Racers,Racers
+8360-1,Track Racer,2003,,Drome Racers,Racers
+836-1,Doors and Windows Parts Pack,1980,,Supplemental,Universal Building Set
+8362-1,Ferrari F1 Racer 1:24 Scale,2004,,Ferrari,Racers
+8363-1,Baja Desert Racers,2003,,Drome Racers,Racers
+8364-1,Multi-Challenge Race Track,2003,,Track System,Racers
+8365-1,Tuneable Racer,2003,195.0,Drome Racers,Racers
+8366-1,Supersonic RC,2003,,Radio Control,Racers
+8369-1,Dirt Crusher RC,2004,87.0,Radio Control,Racers
+8369-2,Dirt Crusher RC (Blue),2005,87.0,Radio Control,Racers
+8370-1,Nitro Stunt Bike,2003,89.0,Drome Racers,Racers
+837-1,Wheels and Tires Parts Pack,1980,,Supplemental,Universal Building Set
+8371-1,Extreme Power Bike,2003,97.0,Drome Racers,Racers
+8374-1,Williams F1 Team Racer 1:27,2003,,Williams F1,Racers
+8375-1,Ferrari F1 Pit Set,2004,,Ferrari,Racers
+8376-1,Hot Flame RC Car,2003,256.0,Radio Control,Racers
+8378-1,Red Beast RC,2004,64.0,Radio Control,Racers
+8380-1,Red Maniac,2004,,Power Racers,Racers
+838-1,"Red Roof Bricks Parts Pack, 45 Degree",1980,,Supplemental,Universal Building Set
+8381-1,Exo Raider,2003,93.0,Power Racers,Racers
+8382-1,Hot Buster,2004,,Power Racers,Racers
+8383-1,Nitro Terminator,2004,69.0,Power Racers,Racers
+8384-1,Jungle Crasher,2004,,Power Racers,Racers
+8385-1,Exo Stealth,2004,,Power Racers,Racers
+8386-1,Ferrari F1 Racer 1:10 Scale,2004,,Ferrari,Racers
+8389-1,M. Schumacher and R. Barrichello,2004,,Ferrari,Racers
+839-1,"Red Roof Bricks Parts Pack, 33 Degree",1980,,Supplemental,Universal Building Set
+8396-1,Soldier's Arsenal,2009,17.0,Pirates II,Pirates
+8397-1,Pirate Survival,2009,16.0,Pirates II,Pirates
+8398-1,BBQ Stand,2009,,Town,Town
+8399-1,K-9 Bot,2009,22.0,Space Police III,Space
+8-4,Magnetic Train Couplers with Plates,1977,,Train,Service Packs
+8400-1,Space Speeder,2009,14.0,Space Police III,Space
+840-1,"Baseplate, Green",1980,1.0,Supplemental,Universal Building Set
+8401-1,City Minifigure Collection,2009,,Supplemental,Town
+8402-1,Sports Car,2009,68.0,Traffic,Town
+8403-1,City House,2010,,Town,Town
+8404-1,City Public Transport,2010,,Traffic,Town
+8408-1,Desert Ranger,1996,,Off-Road,Technic
+8409-1,Spidermonkey,2010,,Ben 10,Ben 10
+8410-1,Swampfire,2010,22.0,Ben 10,Ben 10
+841-1,"Baseplates, Green and Yellow",1980,2.0,Supplemental,Universal Building Set
+8411-1,ChromaStone,2010,21.0,Ben 10,Ben 10
+8412-1,Nighthawk / Sky Wasp,1995,283.0,Airport,Technic
+8414-1,Mountain Rambler,1997,243.0,Off-Road,Technic
+8415-1,Dump Truck,2005,,Construction,Technic
+8416-1,Forklift,2005,729.0,Construction,Technic
+8417-1,Mag Wheel Master,1998,,Riding Cycle,Technic
+8418-1,Mini Loader,2005,66.0,Construction,Technic
+8419-1,Excavator,2005,286.0,Construction,Technic
+8420-1,Street Bike,2005,506.0,Riding Cycle,Technic
+842-1,"Baseplates, Red and Blue",1980,,Supplemental,Universal Building Set
+8421-1,Mobile Crane,2005,1884.0,Construction,Technic
+8422-1,Circuit Shock Racer / V-Twin Super Bike,1995,314.0,Riding Cycle,Technic
+8423-1,World Grand Prix Racing Rivalry,2011,,Cars,Cars
+8424-1,Mater’s Spy Zone,2011,113.0,Cars,Cars
+8425-1,Black Hawk / Sky Stormer,1996,,Airport,Technic
+8426-1,Escape at Sea,2011,,Cars,Cars
+8428-1,Turbo Command Featuring CD-ROM Experience Expander,1998,,Off-Road,Technic
+8429-1,Helicopter,2002,,Airport,Technic
+8430-1,Motorbike,2002,,Riding Cycle,Technic
+843-1,"Baseplate, Gray",1980,,Supplemental,Universal Building Set
+8431-1,Crane Truck,2002,,Construction,Technic
+8432-1,TECHNIC Car,1998,471.0,Off-Road,Technic
+8433-1,Cool Movers,2004,,Traffic,Technic
+8434-1,Aircraft,2004,445.0,Airport,Technic
+8435-1,4WD,2004,,Off-Road,Technic
+8436-1,Truck,2004,,Traffic,Technic
+8437-1,Future Car,1997,420.0,Off-Road,Technic
+8438-1,Pneumatic Crane Truck,2003,845.0,Construction,Technic
+8439-1,Front End Loader,2004,591.0,Construction,Technic
+8440-1,Formula Flash / Formula Indy Racer,1995,418.0,Race,Technic
+8441-1,Fork Lift Truck,2003,70.0,Construction,Technic
+8443-1,Pneumatic Log Loader / Pneumatic Logger,1996,334.0,Construction,Technic
+8444-1,Air Enforcer / Supercopter,1999,,Airport,Technic
+8445-1,Indy Storm / Formula 1 Racer,1999,,Race,Technic
+8446-1,Crane Truck,1999,,Construction,Technic
+8448-1,Super Street Sensation,1999,,Traffic,Technic
+8450-1,Mission Experience Pack,2000,,Competition,Technic
+845-1,"Battery Motor, 9V",1992,27.0,Supplemental,Universal Building Set
+8451-1,Dumper,2003,183.0,Construction,Technic
+8453-1,Front End Loader,2003,214.0,Construction,Technic
+8453-2,Front-End Loader Black Box,2004,214.0,Construction,Technic
+8454-1,Rescue Truck,2003,,Fire,Technic
+8455-1,Backhoe Loader,2003,704.0,Construction,Technic
+8456-1,Fiber Optic Multi Set / Multi Racer Set (with Fibre Optics),1996,,Airport,Technic
+8457-1,Power Puller,2000,,Race,Technic
+8458-1,Silver Champion / Formula 1 Racer,2000,1430.0,Race,Technic
+8459-1,Pneumatic Front-End Loader,1997,,Construction,Technic
+8460-1,Pneumatic Crane Truck / Mobile Crane,1995,855.0,Construction,Technic
+846-1,Lighting Bricks,1992,,Supplemental,Universal Building Set
+8461-1,Williams F1 Racer,2002,1483.0,Williams F1,Racers
+8462-1,Tow Truck,1998,784.0,Traffic,Technic
+8463-1,Forklift Truck,2001,232.0,Construction,Technic
+8464-1,Pneumatic Front End Loader,2001,582.0,Construction,Technic
+8465-1,Extreme Off-Roader,2001,,Off-Road,Technic
+8465934-1,Muji Christmas Set,2009,120.0,Other,Other
+8465972-1,Muji Basic Set,2009,,Other,Other
+8466-1,4x4 Off Roader,2001,,Off-Road,Technic
+8468-1,Power Crusher,2002,,Drome Racers,Racers
+8469-1,Slammer Raptor,2002,143.0,Drome Racers,Racers
+8470-1,Slammer G-Force,2002,,Drome Racers,Racers
+8471-1,Nitro Burner,2002,,Drome Racers,Racers
+8472-1,Street 'n' Mud Racer,2002,,Drome Racers,Racers
+8473-1,Nitro Race Team,2002,,Drome Racers,Racers
+8475-1,RC Race Buggy,2002,,Radio Control,Racers
+8479-1,Barcode Multi-Set,1997,1269.0,Traffic,Technic
+8480-1,Space Shuttle,1996,1355.0,Airport,Technic
+8482-1,CyberMaster,1998,896.0,Competition,Technic
+8483-1,CyberMaster,1998,,Competition,Technic
+8484-1,Ultimate Build Lightning McQueen,2011,,Cars,Cars
+8485-1,Control Center / Control II,1995,,Universal Building Set,Technic
+8486-1,Mack’s Team Truck,2011,384.0,Cars,Cars
+8487-1,Flo's V8 Café,2011,516.0,Cars,Cars
+8490-1,Desert Hopper,2008,,Power Racers,Racers
+8491-1,Ram Rod,2008,71.0,Power Racers,Racers
+8492-1,Mud Hopper,2008,58.0,Power Racers,Racers
+8493-1,Red Ace,2008,,Power Racers,Racers
+8494-1,Ring of Fire,2008,268.0,Power Racers,Racers
+8495-1,Crosstown Craze,2008,,Tiny Turbos,Racers
+8496-1,Desert Hammer,2008,,Power Racers,Racers
+8500-1,Torch / Fire Slizer,1999,33.0,Throwbot Slizer,Technic
+850-1,Fork lift truck,1977,216.0,Expert Builder,Technic
+8501-1,Ski / Ice Slizer,1999,34.0,Throwbot Slizer,Technic
+850150-1,Santa Claus Classic Key Chain,2006,,Key Chain,Gear
+850152-1,Blue Brick Key Chain,2007,0.0,Key Chain,Gear
+850154-1,LEGO® Red Brick Key Chain,2007,1.0,Key Chain,Gear
+8502-1,Turbo / City Slizer,1999,45.0,Throwbot Slizer,Technic
+8503-1,Scuba / Sub,1999,,Throwbot Slizer,Technic
+850353-1,Darth Vader Key Chain,2008,0.0,Key Chain,Gear
+850355-1,Stormtrooper Key Chain (with Lego logo on back),2002,4.0,Key Chain,Gear
+8504-1,Jet / Judge Slizer,1999,44.0,Throwbot Slizer,Technic
+850423-1,Minifigure Presentation Boxes,2012,89.0,Gear,Gear
+850425-1,Business Card Holder,2012,,Gear,Gear
+850426-1,Pencil Holder,2012,,Gear,Gear
+850445-1,Ninjago Character Card Shrine,2012,,Ninjago,Ninjago
+850446-1,Darth Maul Key Chain,2012,,Key Chain,Gear
+850449-1,Minifigure Beach Accessory Pack,2012,64.0,Collectible Minifigures,Collectible Minifigures
+850452-1,Ghost Key Chain,2012,0.0,Key Chain,Gear
+850457-1,I Love LEGOLAND Magnet [Male],2012,,Gear,Gear
+850458-1,VIP Top 5 Boxed Minifigures,2012,37.0,Collectible Minifigures,Collectible Minifigures
+850486-1,Rock Band,2012,62.0,Other,Other
+850487-1,Halloween Accessory Set,2012,56.0,Monster Fighters,Monster Fighters
+850502-1,I 'L brick' Anaheim Figure Magnet,2012,6.0,Legoland,Legoland
+850506-1,Card Making Kit,2012,0.0,Gear,Gear
+850507-1,LEGO® Marvel Super Heroes Spider-Man Key Chain,2012,0.0,Key Chain,Gear
+8505-1,Amazon / Jungle Slizer,1999,36.0,Throwbot Slizer,Technic
+850513-1,I Love Malaysia Magnet [Male],2012,,Gear,Gear
+850529-1,Loki Key Chain,2012,0.0,Gear,Gear
+850581-1,Friends Calendar [English],2013,140.0,Gear,Gear
+850591-1,LEGO Friends Name Sign,2013,29.0,Gear,Gear
+850595-1,LEGO® Friends Notebook,2014,16.0,Gear,Gear
+850597-1,LEGO® Friends Carry Case,2013,31.0,Gear,Gear
+850598-1,LEGO® Legends of Chima™ Game Cards Binder,2013,0.0,Game,Gear
+850602-1,LEGO® Legends of Chima™ Cragger Key Chain,2013,,Key Chain,Gear
+850608-1,Key Chain Laval,2013,0.0,Key Chain,Gear
+8506-1,Granite / Rock Slizer,1999,,Throwbot Slizer,Technic
+850617-1,City Police Accessory Set,2013,34.0,Police,Town
+850618-1,City Fire Accessory Set,2013,43.0,Fire,Town
+850632-1,Ninjago Battle Pack,2013,36.0,Ninjago,Ninjago
+850635-1,LEGO® Star Wars™ Darth Vader™ Magnet,2013,2.0,Gear,Gear
+850642-1,LEGO® Star Wars™ Stormtrooper™ Magnet,2013,5.0,Gear,Gear
+850646-1,LEGO® Teenage Mutant Ninja Turtles™ Donatello Key Chain,2013,,Key Chain,Gear
+850648-1,LEGO® Teenage Mutant Ninja Turtles™ Leonardo Key Chain,2013,0.0,Key Chain,Gear
+850653-1,LEGO® Teenage Mutant Ninja Turtles™ Michelangelo Key Chain,2013,0.0,Key Chain,Gear
+850656-1,LEGO® Teenage Mutant Ninja Turtles™ Raphael Key Chain,2013,0.0,Key Chain,Gear
+850664-1,LEGO® DC Universe™ Super Heroes Batman™ Magnet,2013,1.0,Gear,Gear
+850670-1,LEGO® DC Universe™ Super Heroes Superman™ Magnet,2013,,Gear,Gear
+850682-1,Bilbo Baggins Magnet,2013,3.0,Gear,Gear
+850686-1,"Notebook, Baseplate Cover with Alphanumeric Tiles and Lego Logo Clasp",2013,,Gear,Gear
+850702-1,Classic Picture Frame,2013,52.0,Gear,Gear
+850705-1,Salt and Pepper Set,2013,,Gear,Gear
+8507-1,Electro / Energy Slizer,1999,,Throwbot Slizer,Technic
+850751-1,Orlando Picture Frame,2013,101.0,Legoland,Legoland
+850760-1,I Love Paris Magnet [Male],2013,6.0,Gear,Gear
+850779-1,Legends of Chima Minifigure Accessory Set,2013,42.0,Legends of Chima,Legends of Chima
+850789-1,LEGO® Friends Horse Bag Charm,2013,6.0,Key Chain,Gear
+850791-1,Minifigure Birthday Set,2013,,Other,Other
+850794-1,Family Window Decals,2013,,Gear,Gear
+850798-1,LEGO Classic Name Sign,2013,,Gear,Gear
+850802-1,I Love Tokyo Magnet [Male],2011,6.0,Gear,Gear
+850807-1,LEGO® Gold Minifigure Key Chain,2013,0.0,Key Chain,Gear
+850808-1,LEGO® Gold 2x4 Stud Key Chain,2013,1.0,Key Chain,Gear
+8508-1,Supplementary Disks,1999,5.0,Throwbot Slizer,Technic
+850814-1,LEGO® Marvel Super Heroes The Hulk™ Key Chain,2013,0.0,Key Chain,Gear
+850838-1,Splinter Key Chain,2013,0.0,Key Chain,Gear
+850839-1,Classic Pirate Set,2013,43.0,Pirates,Pirates
+850841-1,LEGO® Classic Gift Wrap,2013,0.0,Gear,Gear
+850842-1,Fire Truck Holiday Bauble,2013,34.0,Creator,Seasonal
+850843-1,Dinosaur Holiday Bauble,2013,,Creator,Seasonal
+850849-1,Friends Puppy Holiday Bauble,2013,,Christmas,Seasonal
+850850-1,Santa Holiday Bauble,2013,23.0,Creator,Seasonal
+850851-1,Lego Tree Holiday Bauble,2013,,Creator,Seasonal
+850852-1,Lego Reindeer Holiday Bauble,2013,,Creator,Seasonal
+850884-1,LEGO® Castle King Key Chain,2014,,Key Chain,Gear
+850886-1,LEGO® Castle Dragon Wizard Key Chain,2014,,Key Chain,Gear
+850888-1,Castle Knights Accessory Set,2014,,Supplemental,Classic
+850889-1,Castle Dragons Accessory Set,2014,,Supplemental,Castle
+850894-1,THE LEGO® MOVIE™ Emmet Key Chain,2014,0.0,Key Chain,Gear
+850895-1,THE LEGO® MOVIE™ Wyldstyle Key Chain,2014,,Key Chain,Gear
+850896-1,THE LEGO® MOVIE™ Bad Cop Key Chain,2014,,Key Chain,Gear
+850899-1,LEGO® Legends of Chima™ Playmat,2014,,Gear,Gear
+850909-1,Sir Fangar Key Chain,2014,0.0,Key Chain,Gear
+8509-1,Swamp,2000,45.0,RoboRiders,Technic
+850910-1,Legends of Chima Minifigure Accessory Set,2014,52.0,Legends of Chima,Legends of Chima
+850913-1,Fire and Ice Minifigure Accessory Set,2014,48.0,Legends of Chima,Legends of Chima
+850918-1,Ice Cube Tray,2014,0.0,Gear,Gear
+850929-1,LEGO® City Playmat,2014,0.0,Gear,Gear
+850932-1,Polar Accessory Set,2014,,Arctic,Town
+850933-1,LEGO® City Policeman Key Chain,2014,,Key Chain,Gear
+850935-1,Classic Minifigure Graduation Set,2014,27.0,Gear,Gear
+850936-1,Halloween Set,2014,11.0,Halloween,Seasonal
+850939-1,Santa Set,2014,,Christmas,Seasonal
+850949-1,Christmas Snow Hut Ornament,2014,45.0,Creator,Seasonal
+850950-1,Christmas Cat Ornament,2014,34.0,Creator,Seasonal
+850951-1,Girl Minifigure Key Chain,2015,0.0,Key Chain,Gear
+850952-1,LEGO® Classic Firetruck Bag Charm,2014,0.0,Key Chain,Gear
+850953-1,Police Car Bag Charm,2014,,Key Chain,Gear
+850963-1,LEGO® Friends Tumbler 2014,2014,14.0,Gear,Gear
+850967-1,Jungle Accessory Set,2014,39.0,Friends,Friends
+850972-1,Friendship Book,2014,0.0,Gear,Gear
+850996-1,Darth Vader Key Chain,2014,0.0,Gear,Gear
+850997-1,Princess Leia Key Chain,2014,,Key Chain,Gear
+850998-1,LEGO® Star Wars™ Boba Fett™ Key Chain,2014,0.0,Key Chain,Gear
+850999-1,LEGO® Star Wars™ Stormtrooper™ Key Chain,2014,0.0,Key Chain,Gear
+851003-1,LEGO® Super Heroes The Joker Key Chain,2014,0.0,Key Chain,Gear
+851005-1,LEGO® Super Heroes Batgirl Key Chain,2014,,Key Chain,Gear
+851007-1,Wolverine Magnet,2014,,Gear,Gear
+8510-1,Lava,2000,,RoboRiders,Technic
+851015-1,LEGO® Legends of Chima™ Scorpion Sword & Shield,2014,,Gear,Gear
+851091-1,R2-D2 Key Chain,2005,,Key Chain,Gear
+851097,"Sword, Toa Hordika Blazer Claw with Flame End",2004,0.0,Gear,Gear
+851-1,Tractor,1977,,Expert Builder,Technic
+8511-1,Frost,2000,44.0,RoboRiders,Technic
+8512-1,Onyx,2000,38.0,RoboRiders,Technic
+851210-1,Lord Vladek Sword,2005,,Gear,Gear
+8513-1,Dust,2000,45.0,RoboRiders,Technic
+851317-1,LEGO® Star Wars™ Boba Fett™ Magnet,2014,,Gear,Gear
+851318-1,Sir Fangar Claw & Shield,2014,,Gear,Gear
+851320-1,LEGO® Minifigure Notebooks,2014,,Gear,Gear
+851324-1,Dolphin Bag Charm,2014,,Key Chain,Gear
+851325-1,Jungle Playmat,2014,0.0,Gear,Gear
+851331-1,I Love LEGOLAND Magnet [Female],2015,,Gear,Gear
+851335-1,Ninja Sword,2015,0.0,Gear,Gear
+851336-1,Ninja Fork Weapon,2015,0.0,Gear,Gear
+851338-1,Ninja Belt & Throwing Star,2015,0.0,Gear,Gear
+851339-1,Ninja Bandana,2015,0.0,Gear,Gear
+851341-1,LEGO® Elves Playmat,2015,0.0,Gear,Gear
+851342-1,Ninja Army Building Set,2015,37.0,Ninjago,Ninjago
+851343-1,Drinking Bottle,2015,,Gear,Gear
+851344-1,Tumbler,2015,,Gear,Gear
+851351-1,Ninja Kai Key Chain,2015,,Key Chain,Gear
+851352-1,Titanium Ninja Zane Key Chain,2015,0.0,Key Chain,Gear
+851353-1,Anacondrai Kapau Key Chain,2015,,Key Chain,Gear
+851358-1,Holiday Bauble White Bricks,2015,,Seasonal,Seasonal
+851362-1,Friends Party Set,2015,,Friends,Friends
+851368-1,Laval Key Chain,2015,,Key Chain,Gear
+851369-1,Icebite Key Chain,2015,0.0,Key Chain,Gear
+851393-1,Mermaid Key Chain,2015,0.0,Key Chain,Gear
+851394-1,Gingerbread Man Key Chain,2015,,Key Chain,Gear
+851395-1,Robot Key Chain,2015,0.0,Key Chain,Gear
+851400-1,Upscaled Mug – Red,2015,,Gear,Gear
+8514-1,Power,2000,,RoboRiders,Technic
+851417-1,LEGO Friends Wall Stickers,2015,0.0,Gear,Gear
+851441,"Headgear, Mask, Soft Foam, Bionicle Toa Hordika Vakama",2004,0.0,Gear,Gear
+851463-1,Clone Trooper Key Chain,2007,,Key Chain,Gear
+851464-1,Chewbacca Key Chain,2007,0.0,Key Chain,Gear
+851490-1,Lord Vladek Mask,2005,1.0,Gear,Gear
+851502-1,Ice Brick Tray - Yellow,2007,0.0,Gear,Gear
+8515-1,RoboRider Wheels,2000,4.0,RoboRiders,Technic
+8516-1,The Boss,2000,124.0,RoboRiders,Technic
+851659-1,Boba Fett Keyring,2008,0.0,Key Chain,Gear
+851687-1,Robin Key Chain,2007,0.0,Key Chain,Gear
+8517-1,Humungousaur,2010,14.0,Ben 10,Ben 10
+8518-1,Jet Ray,2010,,Ben 10,Ben 10
+8519-1,Big Chill,2010,20.0,Ben 10,Ben 10
+851938-1,Princess Leia Key Chain,2007,0.0,Key Chain,Gear
+852001-1,Fantasy Era Castle Chess Set,2007,164.0,Game,Gear
+8520-1,Millennium/Millennia,2000,134.0,Throwbot Slizer,Technic
+852095-1,Yellow Brick Key Chain,2007,,Key Chain,Gear
+852-1,Reconnaisance Helicopter,1977,,Expert Builder,Technic
+8521-1,Flare,2000,44.0,Throwbot Slizer,Technic
+852113-1,Millennium Falcon Bag Charm,2007,,Key Chain,Gear
+852114-1,Y-Wing Fighter (Exclusive Bag Charm),2007,,Key Chain,Gear
+852115,Vader's TIE Fighter Key Chain,2007,,Key Chain,Gear
+852132-1,Castle Tic Tac Toe,2007,,Game,Gear
+852146-1,Professor Henry Jones Key Chain,2008,,Key Chain,Gear
+852194-1,Dwarf Key Chain,2008,0.0,Key Chain,Gear
+8522-1,Spark,2000,,Throwbot Slizer,Technic
+852227-1,Pirate Playing Cards,2009,,Gear,Gear
+852231-1,"Coin Bank, Castle with Drawbridge",2008,,Gear,Gear
+852271-1,Battle Pack Knights,2008,,Fantasy Era,Castle
+852272-1,Battle Pack Skeletons,2008,,Fantasy Era,Castle
+852273-1,Pink Brick Key Chain,2008,,Key Chain,Gear
+852293-1,Fantasy Era Castle Giant Chess Set,2008,2455.0,Game,Gear
+8523-1,Blaster / Blaster Slizer,2000,,Throwbot Slizer,Technic
+852331-1,Vintage Minifigure Collection Vol. 1,2008,,Collectible Minifigures,Collectible Minifigures
+852333-1,Keychain Name Programme,2008,,Key Chain,Gear
+852347-1,Shock Trooper Key Chain,2008,0.0,Key Chain,Gear
+852351-1,Obi-Wan Key Chain,2008,,Key Chain,Gear
+852354-1,Asajj Ventress Key Chain,2008,,Key Chain,Gear
+852445-1,Gold Brick Key Chain,2008,0.0,Key Chain,Gear
+852535-1,Vintage Minifigure Collection Vol. 2,2009,22.0,Collectible Minifigures,Collectible Minifigures
+852548-1,CW R7-A7 Key Chain,2009,0.0,Key Chain,Gear
+852549-1,CW Count Dooku Key Chain,2009,,Key Chain,Gear
+852550-1,CW Yoda Key Chain,2009,,Gear,Gear
+852551-1,Magnet Set Darth Maul 2009,2009,24.0,Gear,Gear
+852552-1,Magnet Set Royal Guard 2009,2009,18.0,Gear,Gear
+852553-1,Magnet Set Stormtrooper 2009,2009,18.0,Gear,Gear
+852554-1,Star Wars Magnet Set,2008,21.0,Gear,Gear
+852555-1,Magnet Set CW Yoda 2009,2009,,Gear,Gear
+852690-1,Designers' Tool Set,2009,2.0,Gear,Gear
+852697-1,Vintage Minifigure Collection Vol. 3,2009,,Collectible Minifigures,Collectible Minifigures
+852701-1,Battle Pack Troll Warriors,2009,36.0,Fantasy Era,Castle
+852702-1,Battle Pack Dwarfs,2009,,Fantasy Era,Castle
+852708-1,LEGO Minifigure Cake Mould,2009,0.0,Gear,Gear
+8527-1,LEGO Mindstorms NXT,2006,578.0,NXT,Mindstorms
+852715-1,Star Wars Magnet Set,2009,,Gear,Gear
+852737-1,Star Wars 10th Anniversary Stormtrooper Magnet,2009,,Gear,Gear
+852741-1,Build your own Holiday Countdown Candle,2009,165.0,Christmas,Seasonal
+852744-1,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",2009,66.0,Creator,Seasonal
+852747-1,Battle Pack Pirates,2009,42.0,Pirates II,Pirates
+852750-1,Pirates Tic Tac Toe,2009,,Gear,Gear
+852753-1,Vintage Minifigure Collection Vol. 4,2009,25.0,Collectible Minifigures,Collectible Minifigures
+852769-1,Vintage Minifigure Collection Vol. 5,2010,20.0,Collectible Minifigures,Collectible Minifigures
+852771-1,Minifigure Ice Cube Tray,2010,,Gear,Gear
+852774-1,Shark Warrior Key Chain,2010,0.0,Key Chain,Gear
+852777-1,Magnet Set,2010,21.0,Gear,Gear
+852786-1,Rose,2010,29.0,Seasonal,Seasonal
+8528-1,Converter Cables for Mindstorms NXT,2006,3.0,NXT,Mindstorms
+852815-1, White Spaceman Key Chain,2010,0.0,Key Chain,Gear
+852820-1,Minifig Display Box,2010,,Gear,Gear
+852837-1,C-3PO Key Chain,2010,0.0,Key Chain,Gear
+852838-1,Wicket Key Chain,2010,,Gear,Gear
+852842-1,Biker Scout Key Chain,2010,,Key Chain,Gear
+852843-1,Star Wars Magnet Set,2010,,Gear,Gear
+852844-1,Star Wars Magnet Set,2010,16.0,Gear,Gear
+852845-1,Star Wars Magnet Set,2010,19.0,Gear,Gear
+852848-1,Woody Key Chain,2010,0.0,Key Chain,Gear
+852856-1,LEGO Club Max Key Chain,2010,,Key Chain,Gear
+852858-1,Foldable red shopping bag,2010,,Gear,Gear
+8529-1,Connector Cables for Mindstorms NXT,2006,,NXT,Mindstorms
+852921-1,Battle Pack Lion Knights,2010,,Kingdoms,Castle
+852922-1,Battle Pack Dragon Knights,2010,,Kingdoms,Castle
+852942-1,Prince of Persia Magnet Set,2010,,Gear,Gear
+852948-1,Female Minifigure Magnet Set,2010,20.0,Gear,Gear
+852949-1,Toy Story Magnet Set,2010,15.0,Gear,Gear
+852950-1,Alien Key Chain,2010,,Key Chain,Gear
+852979-1,Albus Dumbledore Key Chain,2010,,Key Chain,Gear
+852980-1,Se verus Snape Key Chain,2010,0.0,Key Chain,Gear
+852981-1,Dobby Key Chain,2010,,Key Chain,Gear
+852985-1,Duck Key Chain,2010,0.0,Key Chain,Gear
+852986-1,Crocodile Key Chain,2010,0.0,Key Chain,Gear
+852987-1,Penguin Key Chain,2010,0.0,Gear,Gear
+852995-1,{Ducks},2010,15.0,Other,Other
+852996-1,Lego Club Max,2010,4.0,Other,Other
+852997-1,LEGO 2011 US Calendar,2010,0.0,Gear,Gear
+8530-1,Masks,2001,,Toa,Bionicle
+853037-1,Star Wars Magnet Set,2010,,Gear,Gear
+853091-1,City Policeman Key Chain,2011,0.0,Key Chain,Gear
+853092-1,City Burglars Magnet Set,2011,0.0,Gear,Gear
+853-1,Auto Chassis,1977,,Expert Builder,Technic
+8531-1,Pohatu,2001,49.0,Toa,Bionicle
+853111-1,Exclusive Weapon Training Set - Limited Edition,2011,28.0,Ninjago,Ninjago
+853118-1,Key Chain Emperor Palpatine,2011,0.0,Key Chain,Gear
+8531-2,Pohatu - With mini CD-ROM,2001,,Toa,Bionicle
+853130-1,Star Wars Magnet Set,2011,0.0,Gear,Gear
+853143-1,LEGO Signature Minifigure Stationery Set,2011,,Gear,Gear
+853146-1,LEGO Signature Minifigure Playing Cards,2011,,Gear,Gear
+853148-1,LEGO Classic Logo Magnet,2011,0.0,Gear,Gear
+853175-1,"Coin Bank, Pharaoh's Quest",2011,,Gear,Gear
+853176-1,Skeleton Mummy Battle Pack,2011,,Pharaoh's Quest,Pharaoh's Quest
+853187-1,Captain Jack Sparrow Key Chain,2011,,Gear,Gear
+853191-1,Pirates of the Caribbean Magnet Set,2011,0.0,Gear,Gear
+853195-1,"Calendar, Brick Calendar - Days and Months in English",2011,120.0,Gear,Gear
+8532-1,Onua,2001,30.0,Toa,Bionicle
+853213-1,Drink Tumbler,2012,,Gear,Gear
+853219-1,Pirates of the Caribbean Battle Pack,2011,30.0,Pirates of the Caribbean,Pirates of the Caribbean
+8532-2,Onua - With mini CD-ROM,2001,33.0,Toa,Bionicle
+853261-1,LEGO Large Tote,2011,,Gear,Gear
+853301-1,Alien Conquest Battle Pack,2011,27.0,Alien Conquest,Space
+853305-1,Copenhagen Key Chain,2011,7.0,Gear,Gear
+8533-1,Gali,2001,,Toa,Bionicle
+853313-1,Copenhagen LEGO Store Magnet [Male],2011,6.0,LEGO Brand Store,LEGO Brand Store
+8533-2,Gali - With mini CD-ROM,2001,,Toa,Bionicle
+853340-1,Minifigure Wedding Favor Set,2011,,LEGO Brand Store,LEGO Brand Store
+853344-1,Holiday Ornament with Red Bricks ,2011,32.0,Christmas,Seasonal
+853345-1,Holiday Ornament with Gold Bricks,2011,42.0,Christmas,Seasonal
+853346-1,Holiday Ornament with Green Bricks,2011,,Christmas,Seasonal
+853352-1,2012 US Calendar,2011,,Gear,Gear
+853353-1,Holiday Scene Magnet,2011,47.0,Gear,Gear
+853358-1,Heroica Storage Mat,2011,,Gear,Gear
+853373-1,LEGO Kingdoms Chess Set,2012,329.0,Gear,Gear
+853378-1,City Firemen Minifigure Pack,2012,,Fire,Town
+853379-1,Purple Brick Key Chain,2015,,Key Chain,Gear
+853380-1,Turquoise Brick Key Chain,2015,1.0,Key Chain,Gear
+853393-1,Friends Picture Frame,2012,51.0,Friends,Friends
+853395-1,Friends Tumbler,2012,1.0,Gear,Gear
+8534-1,Tahu,2001,33.0,Toa,Bionicle
+8534-2,Tahu - With mini CD-ROM,2001,34.0,Toa,Bionicle
+853429-1,Batman Key Chain,2012,0.0,Key Chain,Gear
+853430-1,Superman Key Chain,2012,,Key Chain,Gear
+853433-1,Wonder Woman Key Chain,2012,,Gear,Gear
+853439-1,Upscaled Mug ,2015,,Gear,Gear
+853440-1,LEGO Friends Jewelery Set,2015,,Gear,Gear
+853441-1,Mini-doll Carry Case,2015,0.0,Gear,Gear
+853444-1,LEGO® Friends Mirror,2015,,Gear,Gear
+853447-1,Ninja Sword & Sheath,2015,,Gear,Gear
+853448-1,LEGO® Elves Diary,2015,,Gear,Gear
+853449-1,Yoda™ Key Chain,2015,0.0,Key Chain,Gear
+853450-1,Emperor's Royal Guard™ Key Chain,2015,,Key Chain,Gear
+853451-1,Chewbacca™ Key Chain,2015,,Key Chain,Gear
+853461-1,LEGO Elves Bag Charm,2015,0.0,Key Chain,Gear
+853463-1,Swamp Police Key Chain,2015,,Key Chain,Gear
+853464-1,Swamp Police Drinking Bottle,2015,,Gear,Gear
+853465-1,Upscaled Mug – Blue,2015,,Gear,Gear
+853469-1,Wicket™ Key Chain,2015,0.0,Key Chain,Gear
+853470-1,R2 D2™ Key Chain,2015,0.0,Key Chain,Gear
+853471-1,C 3PO™ Key Chain,2015,0.0,Key Chain,Gear
+853472-1,Luke Skywalker™ Key Chain,2015,,Key Chain,Gear
+853474-1,Commander Gree™ Key Chain,2015,,Key Chain,Gear
+853475-1,Imperial Gunner Key Chain,2015,,Key Chain,Gear
+853476-1,Yoda™ Magnet,2015,,Gear,Gear
+8535-1,Lewa,2001,36.0,Toa,Bionicle
+853515-1,Knights Army-Building Set,2016,26.0,Nexo Knights,Nexo Knights
+853516-1,Monsters Army-Building Set,2016,24.0,Nexo Knights,Nexo Knights
+8535-2,Lewa - With mini CD-ROM,2001,,Toa,Bionicle
+853556-1,Mini-doll Campsite Set,2016,,Friends,Friends
+853605-1,Poe Dameron™ Key Chain,2016,,Key Chain,Gear
+853609-1,Minecraft Skin Pack,2016,,Minecraft,Minecraft
+8536-1,Kopaka,2001,,Toa,Bionicle
+8536-2,Kopaka - With mini CD-ROM,2001,,Toa,Bionicle
+853638-1,BATMAN™ MINIFIGURE COLLECTOR FRAME,2017,,The LEGO Batman Movie,Collectible Minifigures
+853648-1,Elves Roblin Bag Charm,2017,,Elves,Elves
+853651-1,The Batman Movie Accessory Set,2017,30.0,Batman,Super Heroes
+853671-1,Heartlake City Playmat 2017 with Parts,2017,,Friends,Friends
+853677-1,NEXO KNIGHTS Stone Monsters Accessory Set,2017,,Nexo Knights,Nexo Knights
+853687-1,NINJAGO Accessory Set,2017,26.0,Ninjago,Ninjago
+8537-1,Nui-Rama,2001,148.0,Rahi,Bionicle
+8538-1,Muaka and Kane-ra,2001,633.0,Rahi,Bionicle
+8539-1,Manas,2001,,Rahi,Bionicle
+8540-1,Vakama,2001,26.0,Turaga,Bionicle
+854-1,Go-Kart,1978,211.0,Expert Builder,Technic
+8541-1,Matau,2001,25.0,Turaga,Bionicle
+8542-1,Onewa,2001,,Turaga,Bionicle
+8543-1,Nokama,2001,,Turaga,Bionicle
+8544-1,Nuju,2001,29.0,Turaga,Bionicle
+8545-1,Whenua,2001,28.0,Turaga,Bionicle
+8546-1,Power Pack,2001,10.0,Supplemental,Bionicle
+8547-1,Mindstorms NXT 2.0,2009,620.0,NXT,Mindstorms
+8548-1,Nui-Jaga,2001,,Rahi,Bionicle
+8549-1,Tarakava,2001,403.0,Rahi,Bionicle
+8550-1,Gahlok Va,2002,,Bohrok Va,Bionicle
+855-1,Mobile crane,1978,512.0,Expert Builder,Technic
+8551-1,Kohrak Va,2002,,Bohrok Va,Bionicle
+8552-1,Lehvak Va,2002,28.0,Bohrok Va,Bionicle
+8553-1,Pahrak Va,2002,27.0,Bohrok Va,Bionicle
+8554-1,Tahnok Va,2002,,Bohrok Va,Bionicle
+8555-1,Nuhvok Va,2002,,Bohrok Va,Bionicle
+8556-1,Boxor,2002,157.0,Titans,Bionicle
+8557-1,Exo-Toa,2002,,Titans,Bionicle
+8558-1,Cahdok and Gahdok,2002,636.0,Titans,Bionicle
+8559-1,Krana,2002,,Bionicle,Bionicle
+8560-1,Pahrak,2002,41.0,Bohrok,Bionicle
+856-1,Bulldozer,1979,,Expert Builder,Technic
+8561-1,Nuhvok,2002,,Bohrok,Bionicle
+8562-1,Gahlok,2002,,Bohrok,Bionicle
+8563-1,Tahnok,2002,41.0,Bohrok,Bionicle
+8564-1,Lehvak,2002,41.0,Bohrok,Bionicle
+8565-1,Kohrak,2002,,Bohrok,Bionicle
+8566-1,Onua Nuva,2002,,Toa Nuva,Bionicle
+8567-1,Lewa Nuva,2002,37.0,Toa Nuva,Bionicle
+8568-1,Pohatu Nuva,2002,43.0,Toa Nuva,Bionicle
+8569-1,Krana,2002,0.0,Bionicle,Bionicle
+8570-1,Gali Nuva,2002,44.0,Toa Nuva,Bionicle
+857-1,Motorcycle with sidecar,1979,,Expert Builder,Technic
+8571-1,Kopaka Nuva,2002,42.0,Toa Nuva,Bionicle
+8572-1,Tahu Nuva,2002,36.0,Toa Nuva,Bionicle
+8573-1,Nuhvok-Kal,2003,42.0,Bohrok-Kal,Bionicle
+8574-1,Tahnok-Kal,2003,42.0,Bohrok-Kal,Bionicle
+8575-1,Kohrak-Kal,2003,42.0,Bohrok-Kal,Bionicle
+8576-1,Lehvak-Kal,2003,42.0,Bohrok-Kal,Bionicle
+8577-1,Pahrak-Kal,2003,,Bohrok-Kal,Bionicle
+8578-1,Gahlok-Kal,2003,42.0,Bohrok-Kal,Bionicle
+8580-1,Kraata,2003,,Supplemental,Bionicle
+858-1,Auto Engines,1980,,Expert Builder,Technic
+8581-1,Kopeke,2003,25.0,Matoran of Mata Nui,Bionicle
+8582-1,Matoro,2003,25.0,Matoran of Mata Nui,Bionicle
+8583-1,Hahli,2003,,Matoran of Mata Nui,Bionicle
+8584-1,Hewkii,2003,25.0,Matoran of Mata Nui,Bionicle
+8584-2,Hewkii (Kabaya Promotional),2003,25.0,Matoran of Mata Nui,Bionicle
+8585-1,Hafu,2003,,Matoran of Mata Nui,Bionicle
+8585-2,Hafu (Kabaya Promotional),2003,,Matoran of Mata Nui,Bionicle
+8586-1,Macku,2003,25.0,Matoran of Mata Nui,Bionicle
+8586-2,Macku (Kabaya Promotional),2003,,Matoran of Mata Nui,Bionicle
+8587-1,Panrahk,2003,,Rahkshi,Bionicle
+8587-2,Panrahk - With Shadow Kraata (Promotional Set),2003,45.0,Rahkshi,Bionicle
+8587-3,Panrahk - With mini CD-ROM,2003,,Rahkshi,Bionicle
+8588-1,Kurahk,2003,45.0,Rahkshi,Bionicle
+8588-2,Kurahk - With Shadow Kraata (Promotional Set),2003,45.0,Rahkshi,Bionicle
+8588-3,Kurahk - With mini CD-ROM,2003,,Rahkshi,Bionicle
+8589-1,Lerahk,2003,,Rahkshi,Bionicle
+8589-2,Lerahk - With Shadow Kraata (Promotional Set),2003,45.0,Rahkshi,Bionicle
+8589-3,Lerahk - With mini CD-ROM,2003,46.0,Rahkshi,Bionicle
+8590-1,Guurahk,2003,45.0,Rahkshi,Bionicle
+8590-2,Guurahk - With Shadow Kraata (Promotional Set),2003,,Rahkshi,Bionicle
+8590-3,Guurahk - With mini CD-ROM,2003,,Rahkshi,Bionicle
+8591-1,Vorahk,2003,,Rahkshi,Bionicle
+8591-2,Vorahk - With Shadow Kraata,2003,45.0,Rahkshi,Bionicle
+8591-3,Vorahk - With mini CD-ROM,2003,45.0,Rahkshi,Bionicle
+8592-1,Turahk,2003,45.0,Rahkshi,Bionicle
+8592-2,Turahk - With Shadow Kraata,2003,,Rahkshi,Bionicle
+8592-3,Turahk - With mini CD-ROM,2003,46.0,Rahkshi,Bionicle
+8593-1,Makuta,2003,199.0,Titans,Bionicle
+8594-1,Jaller and Gukko,2003,,Titans,Bionicle
+8595-1,Takua and Pewku,2003,,Titans,Bionicle
+8596-1,Takanuva,2003,200.0,Titans,Bionicle
+8597-1,Krana Nuva,2002,0.0,Bionicle,Bionicle
+8601-1,Toa Vakama,2003,48.0,Toa Metru,Bionicle
+8601-2,Toa Vakama - 2004 San Diego Comic-Con Exclusive (Does Not Contain Exclusive Disk),2004,48.0,Toa Metru,Bionicle
+8602-1,Toa Nokama,2004,46.0,Toa Metru,Bionicle
+8603-1,Toa Whenua,2004,,Toa Metru,Bionicle
+8604-1,Toa Onewa,2004,,Toa Metru,Bionicle
+8605-1,Toa Matau,2004,,Toa Metru,Bionicle
+8606-1,Toa Nuju,2004,,Toa Metru,Bionicle
+8607-1,Nuhrii,2004,,Matoran of Metru Nui,Bionicle
+8608-1,Vhisola,2004,,Matoran of Metru Nui,Bionicle
+8609-1,Tehutti,2004,,Matoran of Metru Nui,Bionicle
+8610-1,Ahkmou,2004,27.0,Matoran of Metru Nui,Bionicle
+8611-1,Orkahm,2004,27.0,Matoran of Metru Nui,Bionicle
+8612-1,Ehrye,2004,27.0,Matoran of Metru Nui,Bionicle
+8613-1,Kanoka Disk Launcher Pack,2004,,Supplemental,Bionicle
+8614-1,Vahki Nuurakh,2004,32.0,Vahki,Bionicle
+8614-2,Vahki Nuurakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,33.0,Vahki,Bionicle
+8615-1,Vahki Bordakh,2004,32.0,Vahki,Bionicle
+8615-2,Vahki Bordakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,,Vahki,Bionicle
+8616-1,Vahki Vorzakh,2004,32.0,Vahki,Bionicle
+8616-2,Vahki Vorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,33.0,Vahki,Bionicle
+8617-1,Vahki Zadakh,2004,,Vahki,Bionicle
+8617-2,Vahki Zadakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,33.0,Vahki,Bionicle
+8618-1,Vahki Rorzakh,2004,,Vahki,Bionicle
+8618-2,Vahki Rorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,33.0,Vahki,Bionicle
+8619-1,Vahki Keerakh,2004,32.0,Vahki,Bionicle
+8619-2,Vahki Keerakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,33.0,Vahki,Bionicle
+8620-1,Snow Scooter,1986,101.0,Arctic Technic,Technic
+8621-1,Turaga Dume and Nivawk,2004,,Titans,Bionicle
+8622-1,Nidhiki,2004,,Titans,Bionicle
+8623-1,Krekka,2004,,Titans,Bionicle
+8624-1,Race for the Mask of Life,2006,507.0,Playsets,Bionicle
+8625-1,Umbra,2006,179.0,Titans,Bionicle
+8626-1,Irnakk,2006,,Titans,Bionicle
+8630-1,Mission 3: Gold Hunt,2008,351.0,Agents,Agents
+8631-1,Mission 1: Jetpack Pursuit,2008,87.0,Agents,Agents
+8632-1,Mission 2: Swamp Raid,2008,,Agents,Agents
+8633-1,Mission 4: Speedboat Rescue,2008,,Agents,Agents
+8634-1,Mission 5: Turbocar Chase,2008,496.0,Agents,Agents
+8635-1,Mission 6: Mobile Command Center,2008,,Agents,Agents
+8636-1,Mission 7: Deep Sea Quest,2008,520.0,Agents,Agents
+8637-1,Mission 8: Volcano Base,2008,714.0,Agents,Agents
+8638-1,Spy Jet Escape,2011,332.0,Cars,Cars
+8639-1,Big Bentley Bust Out,2011,743.0,Cars,Cars
+8640-1,Polar Copter,1986,240.0,Arctic Technic,Technic
+8641-1,Flame Glider,2005,53.0,Tiny Turbos,Racers
+8642-1,Monster Crusher,2005,42.0,Tiny Turbos,Racers
+8643-1,Power Cruiser,2005,45.0,Tiny Turbos,Racers
+8644-1,Street Maniac,2005,35.0,Tiny Turbos,Racers
+8645-1,Muscle Slammer Bike,2005,126.0,Power Racers,Racers
+8646-1,Speed Slammer Bike,2005,126.0,Power Racers,Racers
+8647-1,Night Racer,2005,,Power Racers,Racers
+8648-1,Buzz Saw,2005,,Power Racers,Racers
+8649-1,Nitro Menace,2005,621.0,Power Racers,Racers
+8650-1,Furious Slammer Racer,2005,,Power Racers,Racers
+8651-1,Jumping Giant,2005,241.0,Power Racers,Racers
+8652-1,Enzo Ferrari 1:17,2005,477.0,Ferrari,Racers
+8653-1,Enzo Ferrari 1:10,2005,1357.0,Ferrari,Racers
+8654-1,Scuderia Ferrari Truck,2005,,Ferrari,Racers
+8655-1,RX-Sprinter,2005,57.0,Tiny Turbos,Racers
+8656-1,F6 Truck,2005,,Tiny Turbos,Racers
+8657-1,ATR 4,2005,38.0,Tiny Turbos,Racers
+8658-1,Big Bling Wheelie,2005,,Tiny Turbos,Racers
+8660-1,Arctic Rescue Unit,1986,,Arctic Technic,Technic
+8661-1,Carbon Star,2006,43.0,Tiny Turbos,Racers
+8662-1,Blue Renegade,2006,,Tiny Turbos,Racers
+8663-1,Fat Trax,2006,41.0,Tiny Turbos,Racers
+8664-1,Road Hero,2006,54.0,Tiny Turbos,Racers
+8665-1,Highway Enforcer {Box},2006,,Tiny Turbos,Racers
+8666-1,TunerX,2006,60.0,Tiny Turbos,Racers
+8667-1,Action Wheelie,2006,,Power Racers,Racers
+8668-1,LEGO Competition Racers: Racers Fly Wheel Side Rider,2006,,Power Racers,Racers
+8669-1,Fire Spinner 360,2006,112.0,Power Racers,Racers
+8670-1,Jump Master,2006,104.0,Power Racers,Racers
+8671-1,Ferrari 430 Spider 1:17,2006,,Ferrari,Racers
+8672-1,Ferrari Finish Line,2006,,Ferrari,Racers
+8673-1,Ferrari F1 Fuel Stop,2006,,Ferrari,Racers
+8674-1,Ferrari F1 Racer 1:8,2006,1245.0,Ferrari,Racers
+8675-1,Outdoor Challenger,2006,98.0,Radio Control,Racers
+8676-1,Sunset Cruiser,2006,53.0,Radio Control,Racers
+8677-1,Ultimate Build Mater,2011,,Cars,Cars
+8678-1,Ultimate Build Francesco,2011,,Cars,Cars
+8679-1,Tokyo International Circuit,2011,848.0,Cars,Cars
+8680-1,Arctic Rescue Base,1986,,Arctic Technic,Technic
+8681-1,Tuner Garage,2006,654.0,Tiny Turbos,Racers
+8682-1,Nitro Intimidator,2006,723.0,Power Racers,Racers
+8683-0,Minifigure Series 1 [Random Bag],2010,,Series 1 Minifigures,Collectible Minifigures
+8683-1,Tribal Hunter - Complete Set,2010,,Series 1 Minifigures,Collectible Minifigures
+8683-10,Super Wrestler - Complete Set,2010,5.0,Series 1 Minifigures,Collectible Minifigures
+8683-11,Nurse - Complete Set,2010,7.0,Series 1 Minifigures,Collectible Minifigures
+8683-12,Ninja - Complete Set,2010,,Series 1 Minifigures,Collectible Minifigures
+8683-13,Spaceman - Complete Set,2010,8.0,Series 1 Minifigures,Collectible Minifigures
+8683-14,Forestman - Complete Set,2010,8.0,Series 1 Minifigures,Collectible Minifigures
+8683-15,Deep Sea Diver - Complete Set,2010,9.0,Series 1 Minifigures,Collectible Minifigures
+8683-16,Cowboy - Complete Set,2010,7.0,Series 1 Minifigures,Collectible Minifigures
+8683-17,Collectable Minifigures - LEGO Minifigures Series 1 - Complete,2010,16.0,Series 1 Minifigures,Collectible Minifigures
+8683-18,Minifigure Series 1 (Box of 60),2010,,Series 1 Minifigures,Collectible Minifigures
+8683-2,Cheerleader - Complete Set,2010,7.0,Series 1 Minifigures,Collectible Minifigures
+8683-3,Caveman - Complete Set,2010,,Series 1 Minifigures,Collectible Minifigures
+8683-4,Circus Clown - Complete Set,2010,,Series 1 Minifigures,Collectible Minifigures
+8683-5,Zombie - Complete Set,2010,,Series 1 Minifigures,Collectible Minifigures
+8683-6,Skater - Complete Set,2010,8.0,Series 1 Minifigures,Collectible Minifigures
+8683-7,Robot - Complete Set,2010,,Series 1 Minifigures,Collectible Minifigures
+8683-8,Demolition Dummy - Complete Set,2010,6.0,Series 1 Minifigures,Collectible Minifigures
+8683-9,Magician - Complete Set,2010,7.0,Series 1 Minifigures,Collectible Minifigures
+8684-0,Minifigure Series 2 [Random Bag],2010,0.0,Series 2 Minifigures,Collectible Minifigures
+8684-1,Mariachi / Maraca Man - Complete Set,2010,9.0,Series 2 Minifigures,Collectible Minifigures
+8684-10,Weightlifter - Complete Set,2010,,Series 2 Minifigures,Collectible Minifigures
+8684-11,Pop Star - Complete Set,2010,,Series 2 Minifigures,Collectible Minifigures
+8684-12,Skier - Complete Set,2010,,Series 2 Minifigures,Collectible Minifigures
+8684-13,Disco Dude - Complete Set,2010,6.0,Series 2 Minifigures,Collectible Minifigures
+8684-14,Karate Master - Complete Set,2010,,Series 2 Minifigures,Collectible Minifigures
+8684-15,Surfer - Complete Set,2010,,Series 2 Minifigures,Collectible Minifigures
+8684-16,Pharaoh - Complete Set,2010,6.0,Series 2 Minifigures,Collectible Minifigures
+8684-17,Collectable Minifigures - LEGO Minifigures Series 2 - Complete,2010,16.0,Series 2 Minifigures,Collectible Minifigures
+8684-18,Minifigure Series 2 (Box of 60),2010,,Series 2 Minifigures,Collectible Minifigures
+8684-2,Spartan Warrior - Complete Set,2010,,Series 2 Minifigures,Collectible Minifigures
+8684-3,Circus Ringmaster - Complete Set,2010,6.0,Series 2 Minifigures,Collectible Minifigures
+8684-4,Witch - Complete Set,2010,6.0,Series 2 Minifigures,Collectible Minifigures
+8684-5,Vampire - Complete Set,2010,,Series 2 Minifigures,Collectible Minifigures
+8684-6,Traffic Cop - Complete Set,2010,7.0,Series 2 Minifigures,Collectible Minifigures
+8684-7,Explorer - Complete Set,2010,7.0,Series 2 Minifigures,Collectible Minifigures
+8684-8,Lifeguard - Complete Set,2010,,Series 2 Minifigures,Collectible Minifigures
+8684-9,Mime - Complete Set,2010,,Series 2 Minifigures,Collectible Minifigures
+8685-1,Toa Kopaka,2008,53.0,Phantoka,Bionicle
+8686-1,Toa Lewa,2008,51.0,Phantoka,Bionicle
+8687-1,Toa Pohatu,2008,,Phantoka,Bionicle
+8688-1,Toa Gali,2008,,Mistika,Bionicle
+8689-1,Toa Tahu,2008,,Mistika,Bionicle
+8690-1,Toa Onua,2008,,Mistika,Bionicle
+8691-1,Antroz,2008,52.0,Phantoka,Bionicle
+8692-1,Vamprah,2008,48.0,Phantoka,Bionicle
+8693-1,Chirox,2008,48.0,Phantoka,Bionicle
+8694-1,Krika,2008,40.0,Mistika,Bionicle
+8695-1,Gorast,2008,51.0,Mistika,Bionicle
+8696-1,Bitil,2008,54.0,Mistika,Bionicle
+8697-1,Toa Ignika,2008,140.0,Warriors,Bionicle
+8698-1,Vultraz,2008,,Warriors,Bionicle
+8699-1,Takanuva,2008,,Warriors,Bionicle
+8700-1,Expert Builder Power Pack,1982,,Expert Builder,Technic
+870-1,Supplementary Set,1977,22.0,Expert Builder,Technic
+8701-1,King Jayko,2006,130.0,Knights Kingdom II,Castle
+8702-1,Lord Vladek,2006,112.0,Knights Kingdom II,Castle
+8703-1,Sir Kentis,2006,,Knights Kingdom II,Castle
+8704-1,Sir Adric,2006,40.0,Knights Kingdom II,Castle
+8705-1,Dracus,2006,38.0,Knights Kingdom II,Castle
+8706-1,Karzon,2006,44.0,Knights Kingdom II,Castle
+8707-1,Boulder Blaster,2009,,Power Miners,Power Miners
+8708-1,Cave Crusher,2009,,Power Miners,Power Miners
+8709-1,Underground Mining Station,2009,,Power Miners,Power Miners
+8710-1,Supplementary Set,1980,,Expert Builder,Technic
+871-1,Supplementary Set,1977,,Expert Builder,Technic
+8712-1,Action Figures,1988,14.0,Supplemental,Technic
+8714-1,The LEGO TECHNIC Team / Team,1993,,Supplemental,Technic
+8715-1,Ultimate Creatures Accessory Set,2005,,Supplemental,Bionicle
+8719-1,Zamor Spheres,2006,,Supplemental,Bionicle
+8720-1,Power Pack,1991,,Supplemental,Technic
+872-1,Supplementary Set,1978,77.0,Expert Builder,Technic
+8721-1,Velika,2006,21.0,Matoran of Voya Nui,Bionicle
+8722-1,Kazi,2006,,Matoran of Voya Nui,Bionicle
+8723-1,Piruk,2006,27.0,Matoran of Voya Nui,Bionicle
+8724-1,Garan,2006,,Matoran of Voya Nui,Bionicle
+8725-1,Balta,2006,22.0,Matoran of Voya Nui,Bionicle
+8726-1,Dalu,2006,,Matoran of Voya Nui,Bionicle
+8727-1,Inika Toa Jaller,2006,46.0,Toa Inika,Bionicle
+8728-1,Inika Toa Hahli,2006,46.0,Toa Inika,Bionicle
+8729-1,Inika Toa Nuparu,2006,55.0,Toa Inika,Bionicle
+8730-1,Inika Toa Hewkii,2006,62.0,Toa Inika,Bionicle
+8731-1,Inika Toa Kongu,2006,46.0,Toa Inika,Bionicle
+8732-1,Inika Toa Matoro,2006,47.0,Toa Inika,Bionicle
+8733-1,Axonn,2006,,Titans,Bionicle
+8734-1,Brutaka,2006,191.0,Titans,Bionicle
+8735-1,Power Pack Motor Set,1998,60.0,Supplemental,Technic
+8736-1,Toa Hordika Vakama,2005,48.0,Toa Hordika,Bionicle
+8737-1,Toa Hordika Nokama,2005,,Toa Hordika,Bionicle
+8738-1,Toa Hordika Whenua,2005,48.0,Toa Hordika,Bionicle
+8739-1,Toa Hordika Onewa,2005,48.0,Toa Hordika,Bionicle
+8740-1,Toa Hordika Matau,2005,,Toa Hordika,Bionicle
+874-1,Supplementary Set,1979,,Expert Builder,Technic
+8741-1,Toa Hordika Nuju,2005,,Toa Hordika,Bionicle
+8742-1,Visorak Vohtarak,2005,,Visorak,Bionicle
+8743-1,Visorak Boggarak,2005,48.0,Visorak,Bionicle
+8744-1,Visorak Oohnorak,2005,48.0,Visorak,Bionicle
+8745-1,Visorak Roporak,2005,,Visorak,Bionicle
+8746-1,Visorak Keelerak,2005,48.0,Visorak,Bionicle
+8747-1,Visorak Suukorak,2005,48.0,Visorak,Bionicle
+8748-1,Rhotuka Spinners,2005,5.0,Supplemental,Bionicle
+875-1,Supplementary Set,1979,,Expert Builder,Technic
+8755-1,Keetongu,2005,,Titans,Bionicle
+8756-1,Sidorak,2005,211.0,Titans,Bionicle
+8757-1,Visorak Battle Ram,2005,190.0,Playsets,Bionicle
+8758-1,Tower of Toa,2005,407.0,Playsets,Bionicle
+8759-1,Battle of Metru Nui,2005,871.0,Playsets,Bionicle
+876-1,Supplementary Set,1979,,Expert Builder,Technic
+8761-1,Roodaka,2005,233.0,Titans,Bionicle
+8762-1,Toa Iruini,2005,,Toa Hagah,Bionicle
+8763-1,Toa Norik,2005,,Toa Hagah,Bionicle
+8764-1,Vezon & Fenrakk,2006,281.0,Titans,Bionicle
+8769-1,Visorak's Gate,2005,330.0,Playsets,Bionicle
+8770-1,Danju (European version without Cards),2004,42.0,Knights Kingdom II,Castle
+877-1,Supplementary Set,1979,,Expert Builder,Technic
+8771-1,Jayko (European version without Cards),2004,45.0,Knights Kingdom II,Castle
+8772-1,Rascus (European version without Cards),2004,,Knights Kingdom II,Castle
+8773-1,Santis (European version without Cards),2004,,Knights Kingdom II,Castle
+8774-1,Vladek (European version without Cards),2004,,Knights Kingdom II,Castle
+8777-1,Vladek Encounter,2004,,Knights Kingdom II,Castle
+8778-1,Border Ambush,2004,177.0,Knights Kingdom II,Castle
+8779-1,The Grand Tournament,2004,321.0,Knights Kingdom II,Castle
+8780-1,Citadel of Orlan,2004,,Knights Kingdom II,Castle
+878-1,Supplementary Set,1979,,Expert Builder,Technic
+8781-1,Castle of Morcia,2004,,Knights Kingdom II,Castle
+8782-1,Danju (USA version with 3 Cards),2004,45.0,Knights Kingdom II,Castle
+8782-2,"Danju (USA version with 6 Cards, Target Promo)",2004,,Knights Kingdom II,Castle
+8783-1,Jayko (USA version with 3 Cards),2004,,Knights Kingdom II,Castle
+8783-2,"Jayko (USA version with 6 Cards, Target Promo)",2004,,Knights Kingdom II,Castle
+8784-1,Rascus (USA version with 3 Cards),2004,,Knights Kingdom II,Castle
+8784-2,"Rascus (USA version with 6 Cards, Target Promo)",2004,52.0,Knights Kingdom II,Castle
+8785-1,Santis (USA version with 3 Cards),2004,,Knights Kingdom II,Castle
+8785-2,"Santis (USA version with 6 Cards, Target Promo)",2004,52.0,Knights Kingdom II,Castle
+8785452-1,MUJI Transparent Set,2010,0.0,Other,Other
+8785476-1,MUJI Sea Set,2010,91.0,Other,Other
+8785483-1,MUJI Circus Set,2010,,Other,Other
+8785490-1,MUJI Animals Set,2010,,Other,Other
+8785506-1,MUJI Colour Paper Pad and Perforation Grid,2010,,Other,Other
+8786-1,Vladek (USA version with 3 Cards),2004,51.0,Knights Kingdom II,Castle
+8786-2,"Vladek (USA version with 6 Cards, Target Promo)",2004,54.0,Knights Kingdom II,Castle
+8790-1,"King Mathias (Series 1) Limited Edition with Map and Cape, European",2004,41.0,Knights Kingdom II,Castle
+879-1,Supplementary Set,1979,87.0,Expert Builder,Technic
+8791-1,Sir Danju,2005,42.0,Knights Kingdom II,Castle
+8792-1,Sir Jayko,2005,,Knights Kingdom II,Castle
+8793-1,Sir Rascus,2005,44.0,Knights Kingdom II,Castle
+8794-1,Sir Santis,2005,44.0,Knights Kingdom II,Castle
+8795-1,Lord Vladek,2005,,Knights Kingdom II,Castle
+8796-1,King Mathias (Series 2),2005,43.0,Knights Kingdom II,Castle
+8799-1,Knights' Castle Wall,2004,178.0,Knights Kingdom II,Castle
+88000-1,Power Functions AAA Battery Box,2011,,Power Functions,Power Functions
+880001-1,Competition Racers with Stopwatch,1998,2.0,Competition,Technic
+880002-1,World Cup German Starter Set,1998,7.0,Soccer,Sports
+880002-2,World Cup Dutch Starter Set,1998,7.0,Soccer,Sports
+880002-3,World Cup UK Starter Set,1998,7.0,Soccer,Sports
+8800-1,Vladek's Siege Engine,2004,,Knights Kingdom II,Castle
+880010-1,Exclusive Roboriders Pack,2001,,RoboRiders,Technic
+880011-1,Exclusive Roboriders Pack,2001,,RoboRiders,Technic
+880012-1,Exclusive Roboriders Pack,2001,,RoboRiders,Technic
+88002-1,Power Functions Train Motor,2011,7.0,Power Functions,Power Functions
+88003-1,Power Functions L-Motor,2013,1.0,Power Functions,Power Functions
+88004-1,Power Functions Servo Motor,2013,1.0,Power Functions,Power Functions
+880-1,Supplementary Set,1979,,Expert Builder,Technic
+8801-1,Knights' Attack Barge,2005,,Knights Kingdom II,Castle
+8802-1,Dark Fortress Landing,2005,,Knights Kingdom II,Castle
+8803-0,Minifigure Series 3 [Random Bag],2011,0.0,Series 3 Minifigures,Collectible Minifigures
+8803-1,Fisherman - Complete Set,2011,9.0,Series 3 Minifigures,Collectible Minifigures
+8803-10,Tennis Player - Complete Set,2011,6.0,Series 3 Minifigures,Collectible Minifigures
+8803-11,Race Car Driver - Complete Set,2011,7.0,Series 3 Minifigures,Collectible Minifigures
+8803-12,Gorilla Suit Guy - Complete Set,2011,6.0,Series 3 Minifigures,Collectible Minifigures
+8803-13,Space Alien - Complete Set,2011,,Series 3 Minifigures,Collectible Minifigures
+8803-14,Hula Dancer - Complete Set,2011,8.0,Series 3 Minifigures,Collectible Minifigures
+8803-15,Rapper - Complete Set,2011,7.0,Series 3 Minifigures,Collectible Minifigures
+8803-16,Baseball Player - Complete Set,2011,,Series 3 Minifigures,Collectible Minifigures
+8803-17,Collectable Minifigures - LEGO Minifigures Series 3 - Complete,2011,,Series 3 Minifigures,Collectible Minifigures
+8803-18,Minifigure Series 3 (Box of 60),2011,60.0,Series 3 Minifigures,Collectible Minifigures
+8803-2,Pilot - Complete Set,2011,7.0,Series 3 Minifigures,Collectible Minifigures
+8803-3,Tribal Chief - Complete Set,2011,6.0,Series 3 Minifigures,Collectible Minifigures
+8803-4,Samurai Warrior - Complete Set,2011,7.0,Series 3 Minifigures,Collectible Minifigures
+8803-5,Snowboarder - Complete Set,2011,7.0,Series 3 Minifigures,Collectible Minifigures
+8803-6,Space Villain - Complete Set,2011,,Series 3 Minifigures,Collectible Minifigures
+8803-7,Sumo Wrestler - Complete Set,2011,6.0,Series 3 Minifigures,Collectible Minifigures
+8803-8,Mummy - Complete Set,2011,5.0,Series 3 Minifigures,Collectible Minifigures
+8803-9,Elf - Complete Set,2011,8.0,Series 3 Minifigures,Collectible Minifigures
+8804-0,Minifigure Series 4 [Random Bag],2011,0.0,Series 4 Minifigures,Collectible Minifigures
+8804-1,Lawn Gnome - Complete Set,2011,,Series 4 Minifigures,Collectible Minifigures
+8804-10,Sailor - Complete Set,2011,,Series 4 Minifigures,Collectible Minifigures
+8804-11,Soccer Player - Complete Set,2011,,Series 4 Minifigures,Collectible Minifigures
+8804-12,Werewolf - Complete Set,2011,6.0,Series 4 Minifigures,Collectible Minifigures
+8804-13,Hazmat Guy - Complete Set,2011,6.0,Series 4 Minifigures,Collectible Minifigures
+8804-14,Artist - Complete Set,2011,7.0,Series 4 Minifigures,Collectible Minifigures
+8804-15,Ice Skater - Complete Set,2011,,Series 4 Minifigures,Collectible Minifigures
+8804-16,Crazy Scientist - Complete Set,2011,6.0,Series 4 Minifigures,Collectible Minifigures
+8804-17,Collectable Minifigures - LEGO Minifigures Series 4 - Complete,2011,16.0,Series 4 Minifigures,Collectible Minifigures
+8804-18,Minifigure Series 4 (Box of 60),2011,60.0,Series 4 Minifigures,Collectible Minifigures
+8804-2,Kimono Girl - Complete Set,2011,6.0,Series 4 Minifigures,Collectible Minifigures
+8804-3,Musketeer - Complete Set,2011,,Series 4 Minifigures,Collectible Minifigures
+8804-4,Punk Rocker - Complete Set,2011,6.0,Series 4 Minifigures,Collectible Minifigures
+8804-5,Surfer Girl - Complete Set,2011,6.0,Series 4 Minifigures,Collectible Minifigures
+8804-6,Viking - Complete Set,2011,10.0,Series 4 Minifigures,Collectible Minifigures
+8804-7,The Monster - Complete Set,2011,,Series 4 Minifigures,Collectible Minifigures
+8804-8,Hockey Player - Complete Set,2011,11.0,Series 4 Minifigures,Collectible Minifigures
+8804-9,Street Skater - Complete Set,2011,,Series 4 Minifigures,Collectible Minifigures
+8805-0,Minifigure Series 5 [Random Bag],2011,0.0,Series 5 Minifigures,Collectible Minifigures
+8805-1,Graduate - Complete Set,2011,7.0,Series 5 Minifigures,Collectible Minifigures
+8805-10,Fitness Instructor - Complete Set,2011,6.0,Series 5 Minifigures,Collectible Minifigures
+8805-11,Detective - Complete Set,2011,,Series 5 Minifigures,Collectible Minifigures
+8805-12,Evil Dwarf - Complete Set,2011,10.0,Series 5 Minifigures,Collectible Minifigures
+8805-13,Boxer - Complete Set,2011,,Series 5 Minifigures,Collectible Minifigures
+8805-14,Egyptian Queen - Complete Set,2011,,Series 5 Minifigures,Collectible Minifigures
+8805-15,Gangster - Complete Set,2011,,Series 5 Minifigures,Collectible Minifigures
+8805-16,Snowboarder Guy - Complete Set,2011,6.0,Series 5 Minifigures,Collectible Minifigures
+8805-17,Collectable Minifigures - LEGO Minifigures Series 5 - Complete,2011,16.0,Series 5 Minifigures,Collectible Minifigures
+8805-18,Minifigure Series 5 (Box of 60),2011,60.0,Series 5 Minifigures,Collectible Minifigures
+8805-2,Gladiator - Complete Set,2011,7.0,Series 5 Minifigures,Collectible Minifigures
+8805-3,Royal Guard - Complete Set,2011,6.0,Series 5 Minifigures,Collectible Minifigures
+8805-4,Ice Fisherman - Complete Set,2011,8.0,Series 5 Minifigures,Collectible Minifigures
+8805-5,Cave Woman - Complete Set,2011,,Series 5 Minifigures,Collectible Minifigures
+8805-6,Lizard Man - Complete Set,2011,,Series 5 Minifigures,Collectible Minifigures
+8805-7,Zookeeper - Complete Set,2011,,Series 5 Minifigures,Collectible Minifigures
+8805-8,Lumberjack - Complete Set,2011,6.0,Series 5 Minifigures,Collectible Minifigures
+8805-9,Small Clown - Complete Set,2011,,Series 5 Minifigures,Collectible Minifigures
+8808-1,F1 Racer,1994,93.0,Race,Technic
+8809-1,"King Mathias (Series 1) Limited Edition with Map and Cape, US",2004,,Knights Kingdom II,Castle
+8810-1,Cafe Racer,1991,80.0,Riding Cycle,Technic
+8811-1,Toa Lhikan & Kikanalo,2004,217.0,Titans,Bionicle
+8812-1,Aero Hawk II,1994,148.0,Airport,Technic
+8813-1,Battle at the Pass,2006,377.0,Knights Kingdom II,Castle
+8815-1,Speedway Bandit,1991,,Race,Technic
+8816-1,Off-Road Rambler,1994,,Off-Road,Technic
+8818-1,Baja Blaster,1993,,Off-Road,Technic
+8820-1,Mountain Rambler,1991,139.0,Off-Road,Technic
+8821-1,Rogue Knight Battleship,2006,153.0,Knights Kingdom II,Castle
+8822-1,Gargoyle Bridge,2006,234.0,Knights Kingdom II,Castle
+8823-1,Mistlands Tower,2006,,Knights Kingdom II,Castle
+8824-1,Hovercraft,1994,192.0,Harbor,Technic
+8825-1,Night Chopper,1991,113.0,Airport,Technic
+8826-1,ATX Sport Cycle,1993,,Riding Cycle,Technic
+8827-0,Minifigure Series 6 [Random Bag],2012,0.0,Series 6 Minifigures,Collectible Minifigures
+8827-1,Classic Alien - Complete Set,2012,6.0,Series 6 Minifigures,Collectible Minifigures
+8827-10,Roman Soldier - Complete Set,2012,,Series 6 Minifigures,Collectible Minifigures
+8827-11,Surgeon - Complete Set,2012,7.0,Series 6 Minifigures,Collectible Minifigures
+8827-12,Skater Girl - Complete Set,2012,,Series 6 Minifigures,Collectible Minifigures
+8827-13,Intergalactic Girl - Complete Set,2012,,Series 6 Minifigures,Collectible Minifigures
+8827-14,Butcher - Complete Set,2012,,Series 6 Minifigures,Collectible Minifigures
+8827-15,Mechanic - Complete Set,2012,7.0,Series 6 Minifigures,Collectible Minifigures
+8827-16,Genie - Complete Set,2012,,Series 6 Minifigures,Collectible Minifigures
+8827-17,Collectable Minifigures - LEGO Minifigures Series 6 - Complete,2012,,Series 6 Minifigures,Collectible Minifigures
+8827-18,Minifigure Series 6 (Box of 60),2012,60.0,Series 6 Minifigures,Collectible Minifigures
+8827-2,Highland Battler - Complete Set,2012,7.0,Series 6 Minifigures,Collectible Minifigures
+8827-3,Sleepyhead - Complete Set,2012,6.0,Series 6 Minifigures,Collectible Minifigures
+8827-4,Lady Liberty - Complete Set,2012,,Series 6 Minifigures,Collectible Minifigures
+8827-5,Bandit - Complete Set,2012,8.0,Series 6 Minifigures,Collectible Minifigures
+8827-6,Flamenco Dancer - Complete Set,2012,,Series 6 Minifigures,Collectible Minifigures
+8827-7,Clockwork Robot - Complete Set,2012,6.0,Series 6 Minifigures,Collectible Minifigures
+8827-8,Minotaur - Complete Set,2012,8.0,Series 6 Minifigures,Collectible Minifigures
+8827-9,Leprechaun - Complete Set,2012,9.0,Series 6 Minifigures,Collectible Minifigures
+8828-1,Front End Loader,1993,,Construction,Technic
+8829-1,Dune Blaster,1994,,Off-Road,Technic
+8830-1,Rally 6-wheeler,1990,169.0,Race,Technic
+8831-0,Minifigure Series 7 [Random Bag],2012,0.0,Series 7 Minifigures,Collectible Minifigures
+8831-1,Swimming Champion - Complete Set,2012,,Series 7 Minifigures,Collectible Minifigures
+8831-10,Jungle Boy - Complete Set,2012,,Series 7 Minifigures,Collectible Minifigures
+8831-11,Hippie - Complete Set,2012,,Series 7 Minifigures,Collectible Minifigures
+8831-12,Computer Programmer - Complete Set,2012,7.0,Series 7 Minifigures,Collectible Minifigures
+8831-13,Viking Woman - Complete Set,2012,,Series 7 Minifigures,Collectible Minifigures
+8831-14,Evil Knight - Complete Set,2012,,Series 7 Minifigures,Collectible Minifigures
+8831-15,Rocker Girl - Complete Set,2012,6.0,Series 7 Minifigures,Collectible Minifigures
+8831-16,Grandma Visitor - Complete Set,2012,7.0,Series 7 Minifigures,Collectible Minifigures
+8831-17,LEGO Minifigures Series 7 - Complete,2012,,Series 7 Minifigures,Collectible Minifigures
+8831-18,Minifigure Series 7 (Box of 60),2012,,Series 7 Minifigures,Collectible Minifigures
+8831-2,Aztec Warrior - Complete Set,2012,,Series 7 Minifigures,Collectible Minifigures
+8831-3,Bunny Suit Guy - Complete Set,2012,7.0,Series 7 Minifigures,Collectible Minifigures
+8831-4,Bride - Complete Set,2012,11.0,Series 7 Minifigures,Collectible Minifigures
+8831-5,Ocean King - Complete Set,2012,,Series 7 Minifigures,Collectible Minifigures
+8831-6,Bagpiper - Complete Set,2012,,Series 7 Minifigures,Collectible Minifigures
+8831-7,Daredevil - Complete Set,2012,8.0,Series 7 Minifigures,Collectible Minifigures
+8831-8,Galaxy Patrol - Complete Set,2012,7.0,Series 7 Minifigures,Collectible Minifigures
+8831-9,Tennis Ace - Complete Set,2012,6.0,Series 7 Minifigures,Collectible Minifigures
+8832-1,Roadster,1988,86.0,Race,Technic
+8833-0,Minifigure Series 8 [Random Bag],2012,0.0,Series 8 Minifigures,Collectible Minifigures
+8833-1,Evil Robot - Complete Set,2012,,Series 8 Minifigures,Collectible Minifigures
+8833-10,Santa - Complete Set,2012,7.0,Series 8 Minifigures,Collectible Minifigures
+8833-11,Vampire Bat - Complete Set,2012,5.0,Series 8 Minifigures,Collectible Minifigures
+8833-12,DJ - Complete Set,2012,,Series 8 Minifigures,Collectible Minifigures
+8833-13,Red Cheerleader - Complete Set,2012,,Series 8 Minifigures,Collectible Minifigures
+8833-14,Actor - Complete Set,2012,7.0,Series 8 Minifigures,Collectible Minifigures
+8833-15,Pirate Captain - Complete Set,2012,7.0,Series 8 Minifigures,Collectible Minifigures
+8833-16,Alien Villainess - Complete Set,2012,10.0,Series 8 Minifigures,Collectible Minifigures
+8833-17,LEGO Minifigures Series 8 - Complete,2012,,Series 8 Minifigures,Collectible Minifigures
+8833-18,Minifigure Series 8 (Box of 60),2012,,Series 8 Minifigures,Collectible Minifigures
+8833-2,Conquistador - Complete Set,2012,8.0,Series 8 Minifigures,Collectible Minifigures
+8833-3,Lederhosen Guy - Complete Set,2012,,Series 8 Minifigures,Collectible Minifigures
+8833-4,Cowgirl - Complete Set,2012,6.0,Series 8 Minifigures,Collectible Minifigures
+8833-5,Football Player - Complete Set,2012,8.0,Series 8 Minifigures,Collectible Minifigures
+8833-6,Diver - Complete Set,2012,8.0,Series 8 Minifigures,Collectible Minifigures
+8833-7,Downhill Skier - Complete Set,2012,,Series 8 Minifigures,Collectible Minifigures
+8833-8,Businessman - Complete Set,2012,7.0,Series 8 Minifigures,Collectible Minifigures
+8833-9,Fairy - Complete Set,2012,,Series 8 Minifigures,Collectible Minifigures
+8835-1,Forklift,1989,,Construction,Technic
+8836-1,Sky Ranger,1993,273.0,Airport,Technic
+8837-1,Pneumatic Excavator,1992,257.0,Construction,Technic
+8838-1,Shock Cycle,1991,,Riding Cycle,Technic
+8839-1,Supply Ship,1992,531.0,Harbor,Technic
+8840-1,Rally Shock n' Roll Racer,1991,229.0,Race,Technic
+8841-1,Desert Racer,1983,180.0,Off-Road,Technic
+8842-1,Go-Cart,1986,,Race,Technic
+8843-1,Fork Lift Truck,1984,,Construction,Technic
+8844-1,Helicopter,1981,316.0,Expert Builder,Technic
+8845-1,Dune Buggy,1981,174.0,Expert Builder,Technic
+8846-1,Tow Truck,1982,379.0,Expert Builder,Technic
+8847-1,Dragster,1983,,Expert Builder,Technic
+8848-1,Power Truck,1981,,Expert Builder,Technic
+8849-1,Tractor,1986,,Farm,Technic
+8850-1,Rally Support Truck,1990,,Race,Technic
+885-1,Space Scooter,1979,20.0,Classic Space,Space
+8851-1,Excavator,1984,,Construction,Technic
+8852-1,Robot,1987,,Robot,Technic
+8853-1,Excavator / Digger,1988,,Construction,Technic
+8854-1,Power Crane,1989,516.0,Construction,Technic
+8855-1,Prop Plane,1988,572.0,Airport,Technic
+8856-1,Whirlwind Rescue,1991,,Airport,Technic
+8857-1,Street Chopper / Trike,1993,377.0,Riding Cycle,Technic
+8857-2,LEGO Motorcycle,1980,,Expert Builder,Technic
+8858-1,Rebel Wrecker,1994,452.0,Off-Road,Technic
+8858-2,Auto Engines,1980,,Expert Builder,Technic
+8859-1,Tractor,1981,614.0,Expert Builder,Technic
+8860-1,Car Chassis,1980,676.0,Expert Builder,Technic
+886-1,Space Buggy,1979,,Classic Space,Space
+8862-1,Backhoe Grader,1989,679.0,Construction,Technic
+8863-1,Blizzard's Peak,2010,502.0,World Racers,Racers
+8864-1,Desert of Destruction,2010,,World Racers,Racers
+8865-1,Test Car,1988,,Traffic,Technic
+8866-1,Train Motor (RC),2009,,RC Train,Train
+8867-1,Flexible Train Track,2009,,RC Train,Train
+8868-1,Airtech Claw Rig,1992,979.0,Construction,Technic
+8869-1,Power Functions Control Switch,2009,,Power Functions,Power Functions
+8870-1,Power Functions Light,2009,1.0,Power Functions,Power Functions
+8871-1,Power Functions Extension Wire 50cm,2009,,Power Functions,Power Functions
+8872-1,Forklift Transporter,1993,763.0,Construction,Technic
+8873-1,Fireball Catapult,2005,45.0,Knights Kingdom II,Castle
+8874-1,Battle Wagon,2005,,Knights Kingdom II,Castle
+8875-1,King's Siege Tower,2005,131.0,Knights Kingdom II,Castle
+8876-1,Scorpion Prison Cave,2005,281.0,Knights Kingdom II,Castle
+8877-1,Vladek's Dark Fortress,2005,989.0,Knights Kingdom II,Castle
+8878-1,Rechargeable Battery Box,2009,,Power Functions,Power Functions
+8879-1,IR Speed Remote Control,2009,1.0,Power Functions,Power Functions
+8880-1,Super Car,1994,,Traffic,Technic
+8881-1,Power Functions Battery Box,2008,1.0,Power Functions,Power Functions
+8882-1,Power Functions XL-Motor,2008,1.0,Power Functions,Power Functions
+8883-1,Power Functions M-Motor,2008,1.0,Power Functions,Power Functions
+8884-1,Power Functions IR Receiver,2008,,Power Functions,Power Functions
+8885-1,Power Functions IR Remote Control,2008,1.0,Power Functions,Power Functions
+8886-1,Power Functions Extension Wire,2008,,Power Functions,Power Functions
+8887-1,Power Functions Transformer 10VDC,2009,1.0,Power Functions,Power Functions
+8888-1,Idea Book 8888,1980,,Technic,Books
+8889-1,Idea Book 8889,1984,1.0,Technic,Books
+8890-1,Idea Book 8890,1988,1.0,Technic,Books
+889-1,Radar Truck,1979,29.0,Classic Space,Space
+8891-1,"Idea Book 8891, Technic",1991,1.0,Technic,Books
+8892-1,Piraka Outpost,2006,,Playsets,Bionicle
+8893-1,Lava Chamber Gate,2006,375.0,Playsets,Bionicle
+8894-1,Piraka Stronghold,2006,649.0,Playsets,Bionicle
+8896-1,Snake Canyon,2010,56.0,World Racers,Racers
+8897-1,Jagged Jaws Reef,2010,190.0,World Racers,Racers
+8898-1,Wreckage Road,2010,,World Racers,Racers
+8899-1,Gator Swamp,2010,,World Racers,Racers
+8900-1,Reidak,2006,41.0,Piraka,Bionicle
+890-1,Windup Motor,1981,10.0,Supplemental,Universal Building Set
+8901-1,Hakann,2006,42.0,Piraka,Bionicle
+890-2,"Lockable Storage Box, Empty",1967,,Supplemental,Classic
+8902-1,Vezok,2006,41.0,Piraka,Bionicle
+8903-1,Zaktan,2006,42.0,Piraka,Bionicle
+8904-1,Avak,2006,,Piraka,Bionicle
+8905-1,Thok,2006,,Piraka,Bionicle
+8907-1,Rock Hacker,2009,29.0,Power Miners,Power Miners
+8908-1,Monster Launcher,2009,15.0,Power Miners,Power Miners
+8909-0,Team GB Minifigures [Random Bag],2012,0.0,Team GB,Collectible Minifigures
+8909-1,Brawny Boxer - Team GB,2012,,Team GB,Collectible Minifigures
+8909-17,Team GB Minifigures - Complete Set,2012,9.0,Team GB,Collectible Minifigures
+8909-18,Team GB Minifigures - Sealed Box,2012,,Team GB,Collectible Minifigures
+8909-2,Stealth Swimmer - Team GB Complete Set with Stand and Accessories,2012,6.0,Team GB,Collectible Minifigures
+8909-3,Relay Runner - Team GB Complete Set with Stand and Accessories,2012,7.0,Team GB,Collectible Minifigures
+8909-4,Judo Fighter - Team GB Complete Set with Stand and Accessories,2012,6.0,Team GB,Collectible Minifigures
+8909-5,Tactical Tennis Player - Team GB Complete Set with Stand and Accessories,2012,,Team GB,Collectible Minifigures
+8909-6,Flexible Gymnast - Team GB Complete Set with Stand and Accessories,2012,,Team GB,Collectible Minifigures
+8909-7,Wondrous Weightlifter - Team GB Complete Set with Stand and Accessories,2012,,Team GB,Collectible Minifigures
+8909-8,Horseback Rider - Team GB Complete Set with Stand and Accessories,2012,,Team GB,Collectible Minifigures
+8909-9,Agile Archer - Team GB Complete Set with Stand and Accessories,2012,7.0,Team GB,Collectible Minifigures
+8910-1,Toa Mahri Kongu,2007,,Toa Mahri,Bionicle
+891-1,Two-Man Scooter,1979,39.0,Classic Space,Space
+8911-1,Toa Mahri Jaller,2007,67.0,Toa Mahri,Bionicle
+8912-1,Toa Mahri Hewkii,2007,,Toa Mahri,Bionicle
+8913-1,Toa Mahri Nuparu,2007,58.0,Toa Mahri,Bionicle
+8914-1,Toa Mahri Hahli,2007,,Toa Mahri,Bionicle
+891501-1,Ninjago Kai,2015,,Ninjago,Ninjago
+891503-1,Cole polybag,2015,11.0,Ninjago,Ninjago
+891504-1,Weapon Rack,2015,25.0,Ninjago,Ninjago
+891505-1,Jay,2015,,Ninjago,Ninjago
+891507-1,Zane foil pack,2015,9.0,Ninjago,Ninjago
+8915-1,Toa Mahri Matoro,2007,62.0,Toa Mahri,Bionicle
+8916-1,Takadox,2007,62.0,Barraki,Bionicle
+891610-1,Clouse foil pack,2016,,Ninjago,Ninjago
+891611-1,Cole foil pack,2016,16.0,Ninjago,Ninjago
+891613-1,Kai’s dragon,2016,21.0,Ninjago,Ninjago
+8917-1,Kalmah,2007,53.0,Barraki,Bionicle
+8918-1,Carapar,2007,50.0,Barraki,Bionicle
+8919-1,Mantax,2007,,Barraki,Bionicle
+8920-1,Ehlek,2007,54.0,Barraki,Bionicle
+8921-1,Pridak,2007,47.0,Barraki,Bionicle
+8922-1,Gadunka,2007,,Warriors,Bionicle
+8923-1,Hydraxon,2007,165.0,Warriors,Bionicle
+8924-1,Maxilos and Spinax,2007,,Warriors,Bionicle
+8925-1,Barraki Deepsea Patrol,2007,200.0,Playsets,Bionicle
+8926-1,Toa Undersea Attack,2007,,Playsets,Bionicle
+8927-1,Toa Terrain Crawler,2007,603.0,Playsets,Bionicle
+8929-1,Defilak,2007,37.0,Matoran of Mahri Nui,Bionicle
+8930-1,Dekar,2007,37.0,Matoran of Mahri Nui,Bionicle
+8931-1,Thulox,2007,,Matoran of Mahri Nui,Bionicle
+8932-1,Morak,2007,,Matoran of Mahri Nui,Bionicle
+8934-1,Squid Ammo,2007,7.0,Supplemental,Bionicle
+8935-1,Nocturn,2007,114.0,Warriors,Bionicle
+8939-1,Lesovikk,2007,,Warriors,Bionicle
+8940-1,Karzahni,2007,375.0,Warriors,Bionicle
+894-1,Mobile Ground Tracking Station,1979,,Classic Space,Space
+8941-1,Rockoh T3,2008,,Battle Vehicles,Bionicle
+8942-1,Jetrax T6,2008,,Battle Vehicles,Bionicle
+8942-2,Jetrax T6 Limited Edition,2008,420.0,Battle Vehicles,Bionicle
+8943-1,Axalara T9,2008,694.0,Battle Vehicles,Bionicle
+8944-1,Tanma,2008,14.0,Matoran of Light,Bionicle
+8945-1,Solek,2008,14.0,Matoran of Light,Bionicle
+8946-1,Photok,2008,14.0,Matoran of Light,Bionicle
+8947-1,Radiak,2008,16.0,Matoran of Light,Bionicle
+8948-1,Gavla,2008,14.0,Matoran of Light,Bionicle
+8949-1,Kirop,2008,14.0,Matoran of Light,Bionicle
+895-1,Windup Motor,1986,10.0,Supplemental,Universal Building Set
+8952-1,Mutran & Vican,2008,,Warriors,Bionicle
+8953-1,Makuta Icarax,2008,159.0,Warriors,Bionicle
+8954-1,Mazeka,2008,301.0,Warriors,Bionicle
+8956-1,Stone Chopper,2009,,Power Miners,Power Miners
+8957-1,Mine Mech,2009,,Power Miners,Power Miners
+8958-1,Granite Grinder,2009,,Power Miners,Power Miners
+8959-1,Claw Digger,2009,199.0,Power Miners,Power Miners
+8960-1,Thunder Driller,2009,237.0,Power Miners,Power Miners
+8961-1,Crystal Sweeper,2009,479.0,Power Miners,Power Miners
+8962-1,Crystal King,2009,169.0,Power Miners,Power Miners
+8963-1,Rock Wrecker,2009,,Power Miners,Power Miners
+8964-1,Titanium Command Rig,2009,,Power Miners,Power Miners
+8967-1,Gold Tooth's Getaway,2009,,Agents,Agents
+8968-1,River Heist,2009,,Agents,Agents
+8969-1,4-Wheeling Pursuit,2009,,Agents,Agents
+8970-1,Robo Attack,2009,412.0,Agents,Agents
+897-1,Mobile Rocket Launcher,1979,77.0,Classic Space,Space
+8971-1,Aerial Defense Unit,2009,698.0,Agents,Agents
+8972-1,Atakus,2009,,Agori,Bionicle
+8973-1,Raanu,2009,14.0,Agori,Bionicle
+8974-1,Tarduk,2009,17.0,Agori,Bionicle
+8975-1,Berix,2009,15.0,Agori,Bionicle
+8976-1,Metus,2009,14.0,Agori,Bionicle
+8977-1,Zesk,2009,,Agori,Bionicle
+8978-1,Skrall,2009,50.0,Glatorian,Bionicle
+8979-1,Malum,2009,,Glatorian,Bionicle
+8980-1,Gresh,2009,55.0,Glatorian,Bionicle
+8981-1,Tarix,2009,57.0,Glatorian,Bionicle
+8982-1,Strakk,2009,46.0,Glatorian,Bionicle
+8983-1,Vorox,2009,,Glatorian,Bionicle
+8984-1,Stronius,2009,,Glatorian Legends,Bionicle
+8985-1,Ackar,2009,55.0,Glatorian Legends,Bionicle
+8986-1,Vastus,2009,,Glatorian Legends,Bionicle
+8987-1,Kiina,2009,,Glatorian Legends,Bionicle
+8988-1,Gelu,2009,52.0,Glatorian Legends,Bionicle
+8989-1,Mata Nui,2009,,Glatorian Legends,Bionicle
+8990-1,Fero and Skirmix,2009,,Warriors,Bionicle
+8991-1,Tuma,2009,,Warriors,Bionicle
+8992-1,Cendox V1,2009,151.0,Battle Vehicles,Bionicle
+8993-1,Kaxium V3,2009,251.0,Battle Vehicles,Bionicle
+8994-1,Baranus V7,2009,263.0,Battle Vehicles,Bionicle
+8995-1,Thornatus V9,2009,,Battle Vehicles,Bionicle
+8996-1,Skopio XV-1,2009,848.0,Battle Vehicles,Bionicle
+8998-1,Toa Mata Nui,2009,,Warriors,Bionicle
+900-1,Universal Motor Set,1973,24.0,Supplemental,Universal Building Set
+9001-2,Medium Blue Storage Bin (16.5in x 12in x 6in),2007,1.0,Supplemental,Educational and Dacta
+900-2,4 Small Wheels with Accessories,1969,,Supplemental,Classic
+901-1,4.5V Motor Set,1976,31.0,Supplemental,Universal Building Set
+901-2,2 Large Wheels with Accessories,1969,,Supplemental,Classic
+901503-1,Krait Polybag,2015,,Ninjago,Ninjago
+90-2,Educational Box - Empty,1965,,Classic,Educational and Dacta
+9020-1,LEGO Soft Starter Set,1998,84.0,Soft Bricks,Educational and Dacta
+902-1,5 Turntables,1969,5.0,Supplemental,Classic
+9021-1,Medium set of Soft Bricks,1999,52.0,Soft Bricks,Educational and Dacta
+9022-1,Extra Soft Bricks,1999,32.0,Soft Bricks,Educational and Dacta
+9023-1,Soft Brick Activity Set,2000,,Soft Bricks,Educational and Dacta
+9027-1,Duplo Bulk Set,2007,,Duplo,Duplo
+903-1,Train Wheels and Couplers,1969,10.0,Supplemental,Classic
+906-1,12 doors and 5 hinges,1969,17.0,Supplemental,Classic
+9089-1,Tubes Experiment Set,2004,150.0,Educational and Dacta,Educational and Dacta
+9090-1,XL Duplo Bulk Set,1993,,Educational and Dacta,Educational and Dacta
+9091-1,Playhouse Set,2010,125.0,Duplo,Duplo
+9092-1,Crazy Demon,2012,,Racers,Racers
+9093-1,Bone Cruncher,2012,,Racers,Racers
+9094-1,Star Striker,2012,88.0,Racers,Racers
+9095-1,Nitro Predator,2012,86.0,Racers,Racers
+9-1,Universal Building Set,1978,,Basic Set,Universal Building Set
+910-1,Universal Building Set,1976,,Basic Set,Universal Building Set
+911-1,Universal Building Set,1976,,Basic Set,Universal Building Set
+911506-1,Null Set-Use SW911506-1,2015,1.0,Other,Other
+911609-1,Naboo Starfighter,2016,34.0,Star Wars Episode 1,Star Wars
+911611-1,AAT,2016,37.0,Star Wars,Star Wars
+911613-1,TIE Bomber,2016,,Star Wars Episode 1,Star Wars
+911614-1,Yoda's Hut,2016,,Star Wars,Star Wars
+911615-1,AT-AT,2016,,Star Wars,Star Wars
+911618-1,Flash Speeder,2017,43.0,Star Wars,Star Wars
+912-1,Universal Building Set,1976,471.0,Basic Set,Universal Building Set
+914-1,"Windows, Red",1969,,Supplemental,Classic
+914-2,"Windows, White",1969,10.0,Supplemental,Classic
+915-1,6 bricks with 16 and 20 studs and 3 Angle Bricks White/Red,1969,9.0,Supplemental,Classic
+915-2,6 bricks with 16 and 20 studs and 3 Angle Bricks Blue/Yellow,1969,9.0,Supplemental,Classic
+918-1,Space Transport,1979,,Classic Space,Space
+918-2,21 8-Stud Bricks,1969,,Supplemental,Classic
+918-black-2,21 Black 2x4 Bricks,1969,21.0,Supplemental,Classic
+918-blue-2,21 Blue 2x4 Bricks,1969,,Supplemental,Classic
+918-red-2,21 Red 2x4 Bricks,1969,21.0,Supplemental,Classic
+918-tclear-2,21 Trans-Clear 2x4 Bricks,1969,,Supplemental,Classic
+918-white-2,21 White 2x4 Bricks,1969,21.0,Supplemental,Classic
+918-yellow-2,21 Yellow 2x4 Bricks,1969,,Supplemental,Classic
+919-1,"31 bricks with 2, 4 and 6 studs",1969,,Supplemental,Classic
+9-2,Trees & Flowers,1981,18.0,Classic Town,Service Packs
+920-2,Alpha-1 Rocket Base,1979,,Classic Space,Space
+9209-1,Community Services Set,2012,130.0,Educational and Dacta,Educational and Dacta
+9213-1,Dinosaurs Set,2007,,Duplo,Duplo
+9217-1,Farm Set,2010,150.0,Duplo,Duplo
+9218-1,Wild Animals Set,2012,96.0,Educational and Dacta,Educational and Dacta
+922-1,"28 Bricks with 1, 2, 4, 6 and 8 Studs [Red/White]",1969,28.0,Supplemental,Classic
+922-2,"28 Bricks with 1, 2, 4, 6 and 8 Studs [Blue/Yellow]",1969,28.0,Supplemental,Classic
+9222-1,Duplo World People,2007,,Duplo,Duplo
+922-3,"28 Bricks with 1, 2, 4, 6 and 8 Studs [Black/Trans-Clear]",1969,28.0,Supplemental,Classic
+9224-1,Duplo Community People,2006,19.0,Duplo,Duplo
+9227-1,Farm,2007,,Duplo,Duplo
+9230-1,Duplo Town Set,2004,,Basic Set,Duplo
+923-1,"50 bricks, curved and round",1969,150.0,Supplemental,Classic
+924-1,Space Cruiser,1979,,Classic Space,Space
+9241-1,Wheels Set,2007,360.0,Supplemental,Educational and Dacta
+9243-1,Doors Windows and Roof Tiles,2002,,Supplemental,Educational and Dacta
+9247-1,Community Workers,2005,133.0,Town,Educational and Dacta
+9247-2,Community Workers,2006,,Town,Educational and Dacta
+9248-1,Bonus Lego Basic Town,1998,2.0,Universal Building Set,Educational and Dacta
+9249-1,LEGO Basic Airport,1988,0.0,Universal Building Set,Educational and Dacta
+9251-1,Lego Basic Just Bricks,2000,576.0,Educational and Dacta,Educational and Dacta
+9255-1,Basic Set,1992,185.0,Universal Building Set,Educational and Dacta
+9256-1,"Faces, Fences, Wheels and Windows",2000,110.0,Supplemental,Educational and Dacta
+926-1,Command Centre (Center),1979,,Classic Space,Space
+9279-2,Small Lego System Baseplates,2008,9.0,Supplemental,Educational and Dacta
+9280-1,Giant Lego Dacta Basic Set,1997,1417.0,Universal Building Set,Educational and Dacta
+928-1,Galaxy Explorer,1979,342.0,Classic Space,Space
+9286-1,Large Building Plates,1998,4.0,Supplemental,Educational and Dacta
+9287-1,Bonus Lego Basic Town,1996,,Universal Building Set,Educational and Dacta
+9293-1,Community Workers,1996,80.0,Town,Educational and Dacta
+9-3,Magnetic Train Couplers,1977,,Train,Service Packs
+930-1,Red Bricks,1973,45.0,Supplemental,Universal Building Set
+9301-1,Road Signs,1999,,Town,Educational and Dacta
+9302-1,Creator Community Builders,2004,1690.0,Creator,Educational and Dacta
+9303-1,Creator Community Builders,2004,1190.0,Creator,Educational and Dacta
+9305-1,Jack Stone Transportation,2003,,4 Juniors,Educational and Dacta
+9306-1,Creator Bulk,2003,610.0,Creator,Creator
+9310-1,Dinosaurs Set,2001,4.0,Dinosaurs,Educational and Dacta
+931-1,White Bricks,1973,,Supplemental,Universal Building Set
+9311-1,City Buildings Set,2010,,Town,Educational and Dacta
+9314-1,Rescue Service Set,2010,,Town,Educational and Dacta
+9320-1,Voyage into Space,2003,,Space,Educational and Dacta
+932-1,Blue and Yellow Bricks,1973,45.0,Supplemental,Universal Building Set
+9322-1,Town Developers Set,2007,1835.0,Town,Educational and Dacta
+9324-1,Micro Building Set,2007,,Town,Educational and Dacta
+933-1,Doors and Windows,1973,38.0,Supplemental,Universal Building Set
+9331-1,BuildToExpress Set,2009,207.0,Educational and Dacta,Educational and Dacta
+9333-1,Vehicles,2010,,Town,Educational and Dacta
+9334-1,Animals,2010,1082.0,Educational and Dacta,Educational and Dacta
+9335-1,Space & Airport Set,2010,1182.0,Town,Educational and Dacta
+9337-1,Harbor Set,2011,906.0,Town,Educational and Dacta
+9338-1,LEGO SERIOUS Play mini-kit,2011,57.0,Educational and Dacta,Educational and Dacta
+934-1,"Roof Bricks, 45 Degrees",1973,,Supplemental,Universal Building Set
+9348-1,Community Minifigures,2011,264.0,Town,Educational and Dacta
+9349-1,Fairytale and Historic Minifigures,2011,,Educational and Dacta,Educational and Dacta
+935-1,"Roof Bricks, 33 Degrees",1973,43.0,Supplemental,Universal Building Set
+9353-1,Dacta Theme Set,1991,900.0,Town,Educational and Dacta
+9354-1,Town Street Theme,1991,,Town,Educational and Dacta
+9355-1,Dacta Space Theme Set,1990,,Space,Educational and Dacta
+9356-1,Town Environment,1986,639.0,Town,Educational and Dacta
+9360-1,{Roadplates and Scenery},1986,85.0,Town,Educational and Dacta
+936-1,Wheels and Tires,1973,,Supplemental,Universal Building Set
+9361-1,People,1991,174.0,Town,Educational and Dacta
+9362-1,Road Plates,1991,,Town,Educational and Dacta
+9364-1,Hospital,1993,584.0,Town,Educational and Dacta
+9365-1,Lego Dacta Community Vehicles,1993,739.0,Town,Educational and Dacta
+9369-1,Lego Dacta Community Vehicles,1998,6.0,Town,Educational and Dacta
+9370-1,Lego System Road Plates,1998,10.0,Town,Educational and Dacta
+937-1,Doors and Fences,1973,34.0,Supplemental,Universal Building Set
+9371-1,Town Vehicles,1999,,Town,Educational and Dacta
+9373-1,Lego System Road Plates,2003,5.0,Town,Educational and Dacta
+9376-1,Lego Dacta Castle Set,1997,,Castle,Educational and Dacta
+9377-1,Lego Dacta Adventurers Set,1998,3.0,Adventurers,Educational and Dacta
+9380-1,Lego Technic Racers,1998,,Technic,Educational and Dacta
+938-1,"Plates, Hinges and Turntables",1973,,Supplemental,Universal Building Set
+9384-1,Bricks,2010,,Supplemental,Educational and Dacta
+9385-1,Sceneries Set,2010,1229.0,Creator,Creator
+9386-1,Doors Windows & Roof Tiles,2010,,Supplemental,Educational and Dacta
+9387-1,Wheels Set,2011,286.0,Educational and Dacta,Educational and Dacta
+9388-1,Small building plates,2012,22.0,Educational and Dacta,Educational and Dacta
+9389-1,Community Starter Set,2012,,Educational and Dacta,Educational and Dacta
+9390-1,Mini Tow Truck,2012,138.0,Technic,Technic
+939-1,"Flags, Trees and Road Signs",1972,19.0,Supplemental,Universal Building Set
+9391-1,Mini Crane,2012,218.0,Model,Technic
+9392-1,Quad Bike,2012,,Model,Technic
+9393-1,Tractor,2012,353.0,Model,Technic
+9394-1,Jet Plane,2012,,Model,Technic
+9395-1,Pick-Up Tow Truck,2012,,Model,Technic
+9396-1,Helicopter,2012,,Model,Technic
+9397-1,Logging Truck,2012,1311.0,Technic,Technic
+9398-1,4 x 4 Crawler,2012,,Off-Road,Technic
+940-1,"Flags, Signs and Trees",1973,18.0,Supplemental,Universal Building Set
+941-1,Black and Clear Bricks,1974,,Supplemental,Universal Building Set
+9440-1,Venomari Shrine,2012,86.0,Ninjago,Ninjago
+9441-1,Kai’s Blade Cycle,2012,187.0,Ninjago,Ninjago
+9442-1,Jay's Storm Fighter,2012,,Ninjago,Ninjago
+9443-1,Rattlecopter,2012,,Ninjago,Ninjago
+9444-1,Cole’s Tread Assault,2012,,Ninjago,Ninjago
+9445-1,Fangpyre Truck Ambush,2012,451.0,Ninjago,Ninjago
+9446-1,Destiny's Bounty,2012,683.0,Ninjago,Ninjago
+9447-1,Lasha's Bite Cycle,2012,248.0,Ninjago,Ninjago
+9448-1,Samurai Mech,2012,451.0,Ninjago,Ninjago
+9449-1,Ultra Sonic Raider,2012,620.0,Ninjago,Ninjago
+9450-1,Epic Dragon Battle,2012,,Ninjago,Ninjago
+9452-1,Giant Lego Topic Set,1991,2195.0,Universal Building Set,Educational and Dacta
+9453-1,Universal School Set,1997,,Universal Building Set,Educational and Dacta
+9454-1,Function Set,1992,350.0,Universal Building Set,Educational and Dacta
+9455-1,Fangpyre Mech,2012,246.0,Ninjago,Ninjago
+9456-1,Spinner Battle Arena,2012,,Ninjago,Ninjago
+9457-1,Crane Wrecking Ball,2012,414.0,Ninjago,Ninjago
+9461-1,The Swamp Creature,2012,,Monster Fighters,Monster Fighters
+9462-1,The Mummy,2012,,Monster Fighters,Monster Fighters
+9463-1,The Werewolf,2012,243.0,Monster Fighters,Monster Fighters
+9464-1,The Vampire Hearse,2012,,Monster Fighters,Monster Fighters
+9465-1,The Zombies,2012,447.0,Monster Fighters,Monster Fighters
+9466-1,The Crazy Scientist & His Monster,2012,429.0,Monster Fighters,Monster Fighters
+9467-1,The Ghost Train,2012,,Monster Fighters,Monster Fighters
+9468-1,The Vampyre Castle,2012,942.0,Monster Fighters,Monster Fighters
+9469-1,Gandalf Arrives,2012,83.0,The Fellowship of the Ring,The Hobbit and Lord of the Rings
+9470-1,Shelob Attacks,2012,227.0,The Return of the King,The Hobbit and Lord of the Rings
+9471-1,Uruk-hai Army,2012,257.0,The Two Towers,The Hobbit and Lord of the Rings
+9472-1,Attack on Weathertop,2012,429.0,The Fellowship of the Ring,The Hobbit and Lord of the Rings
+9473-1,The Mines of Moria,2012,780.0,The Fellowship of the Ring,The Hobbit and Lord of the Rings
+9474-1,The Battle of Helm’s Deep,2012,1365.0,The Two Towers,The Hobbit and Lord of the Rings
+9476-1,The Orc Forge,2012,362.0,The Two Towers,The Hobbit and Lord of the Rings
+9478-1,Fransesco Bernoulli,2012,49.0,Cars,Cars
+9479-1,Ivan Mater,2012,,Cars,Cars
+9480-1,Finn McMissile,2012,52.0,Cars,Cars
+948-1,Go-Kart,1978,,Expert Builder,Technic
+9481-1,Jeff Gorvette,2012,54.0,Cars,Cars
+9483-1,Agent Mater’s Escape,2012,,Cars,Cars
+9484-1,Red’s Water Rescue,2012,,Cars,Cars
+9485-1,Ultimate Race Set,2012,279.0,Cars,Cars
+9486-1,Oil Rig Escape,2012,421.0,Cars,Cars
+9488-1,Elite Clone Trooper & Commando Droid Battle Pack,2012,,Star Wars Clone Wars,Star Wars
+9489-1,Endor Rebel Trooper & Imperial Trooper Battle Pack,2012,,Star Wars Episode 4/5/6,Star Wars
+9490-1,Droid Escape,2012,136.0,Star Wars Episode 4/5/6,Star Wars
+9491-1,Geonosian Cannon,2012,133.0,Star Wars Clone Wars,Star Wars
+9492-1,TIE Fighter,2012,413.0,Star Wars Episode 4/5/6,Star Wars
+9493-1,X-wing Starfighter,2012,559.0,Star Wars Episode 4/5/6,Star Wars
+9494-1,Anakin's Jedi Interceptor,2012,,Star Wars Episode 3,Star Wars
+9495-1,Gold Leader's Y-wing Starfighter,2012,,Star Wars Episode 4/5/6,Star Wars
+9496-1,Desert Skiff,2012,220.0,Star Wars Episode 4/5/6,Star Wars
+9497-1,Republic Striker Starfighter,2012,378.0,Star Wars,Star Wars
+9498-1,Saesee Tiin's Jedi Starfighter,2012,,Star Wars Clone Wars,Star Wars
+9499-1,Gungan Sub,2012,464.0,Star Wars Episode 1,Star Wars
+9500-1,Sith Fury-class Interceptor,2012,,Star Wars Other,Star Wars
+950-1,Fork Lift,1979,,Expert Builder,Technic
+9509-1,"Advent Calendar 2012, Star Wars",2012,25.0,Star Wars,Seasonal
+9509-10,"Advent Calendar 2012, Star Wars (Day 9) - Imperial Officer",2012,,Star Wars,Seasonal
+9509-11,"Advent Calendar 2012, Star Wars (Day 10) - AT-AT Walker",2012,13.0,Star Wars,Seasonal
+9509-12,"Advent Calendar 2012, Star Wars (Day 11) - Hoth Blaster Station",2012,,Star Wars,Seasonal
+9509-13,"Advent Calendar 2012, Star Wars (Day 12) - Hoth Rebel Trooper",2012,6.0,Star Wars,Seasonal
+9509-14,"Advent Calendar 2012, Star Wars (Day 13) - Gonk Droid (GNK Power Droid)",2012,14.0,Star Wars,Seasonal
+9509-15,"Advent Calendar 2012, Star Wars (Day 14) - General Grievous Weapon Depot",2012,,Star Wars,Seasonal
+9509-16,"Advent Calendar 2012, Star Wars (Day 15) - Snowtrooper",2012,4.0,Star Wars,Seasonal
+9509-17,"Advent Calendar 2012, Star Wars (Day 16) - Naboo Royal Shuttle",2012,18.0,Star Wars,Seasonal
+9509-18,"Advent Calendar 2012, Star Wars (Day 17) - Flash Speeder",2012,14.0,Star Wars,Seasonal
+9509-19,"Advent Calendar 2012, Star Wars (Day 18) - Rebel Scout Trooper",2012,5.0,Star Wars,Seasonal
+9509-2,"Advent Calendar 2012, Star Wars (Day 1) - Gungan Sub",2012,13.0,Star Wars,Seasonal
+9509-20,"Advent Calendar 2012, Star Wars (Day 19) - Trade Federation AAT",2012,15.0,Star Wars,Seasonal
+9509-21,"Advent Calendar 2012, Star Wars (Day 20) - General Grievous Starfighter",2012,14.0,Star Wars,Seasonal
+9509-22,"Advent Calendar 2012, Star Wars (Day 21) - Super Battle Droid",2012,,Star Wars,Seasonal
+9509-23,"Advent Calendar 2012, Star Wars (Day 22) - Sith Infiltrator",2012,15.0,Star Wars,Seasonal
+9509-24,"Advent Calendar 2012, Star Wars (Day 23) - Snowman R2-D2",2012,8.0,Star Wars,Seasonal
+9509-25,"Advent Calendar 2012, Star Wars (Day 24) - Santa Darth Maul",2012,7.0,Star Wars,Seasonal
+9509-3,"Advent Calendar 2012, Star Wars (Day 2) - Gungan Soldier",2012,3.0,Star Wars,Seasonal
+9509-4,"Advent Calendar 2012, Star Wars (Day 3) - Gungan Battle Depot",2012,8.0,Star Wars,Seasonal
+9509-5,"Advent Calendar 2012, Star Wars (Day 4) - Star Destroyer",2012,,Star Wars,Seasonal
+9509-6,"Advent Calendar 2012, Star Wars (Day 5) - Trade Federation MTT",2012,9.0,Star Wars,Seasonal
+9509-7,"Advent Calendar 2012, Star Wars (Day 6) - Battle Droid Security",2012,5.0,Star Wars,Seasonal
+9509-8,"Advent Calendar 2012, Star Wars (Day 7) - Naboo Starfighter",2012,16.0,Star Wars,Seasonal
+9509-9,"Advent Calendar 2012, Star Wars (Day 8) - Vulture Droid",2012,9.0,Star Wars,Seasonal
+951-1,Bulldozer,1979,,Expert Builder,Technic
+951178-1,Basic Bricks,1987,18.0,Universal Building Set,Educational and Dacta
+951-2,Lego TC logo Starter Pack,1988,,Technic,Educational and Dacta
+9515-1,Malevolence,2012,1098.0,Star Wars Clone Wars,Star Wars
+9516-1,Jabba’s Palace,2012,,Star Wars Episode 4/5/6,Star Wars
+952-1,Tractor,1978,,Expert Builder,Technic
+9525-1,Pre Vizsla's Mandalorian Fighter,2012,,Star Wars Clone Wars,Star Wars
+9526-1,Palpatine’s Arrest,2012,646.0,Star Wars Episode 3,Star Wars
+9530-1,Letters Set,2008,,Educational and Dacta,Educational and Dacta
+9531-1,Numbers and Mosaics Set,2008,352.0,Educational and Dacta,Educational and Dacta
+954-1,Sky Copter,1978,364.0,Expert Builder,Technic
+9544-1,Math Machines Set,2006,,Educational and Dacta,Educational and Dacta
+955-1,Mobile Crane,1979,512.0,Expert Builder,Technic
+9551-1,Kendo Cole,2012,,Ninjago,Ninjago
+9552-1,Lloyd Garmadon,2012,26.0,Ninjago,Ninjago
+9553-1,Jay ZX,2012,,Ninjago,Ninjago
+9554-1,Zane ZX,2012,,Ninjago,Ninjago
+9555-1,Mezmo,2012,,Ninjago,Ninjago
+9556-1,Bytar,2012,25.0,Ninjago,Ninjago
+9557-1,Lizaru,2012,25.0,Ninjago,Ninjago
+9558-1,Training Set,2012,218.0,Ninjago,Ninjago
+956-1,Auto Chassis,1978,,Expert Builder,Technic
+9561-1,Kai ZX,2012,,Ninjago,Ninjago
+9562-1,Lasha,2012,21.0,Ninjago,Ninjago
+9563-1,Kendo Zane,2012,,Ninjago,Ninjago
+9564-1,Snappa,2012,,Ninjago,Ninjago
+9566-1,Samurai X,2012,,Ninjago,Ninjago
+9567-1,Fang-Suei,2012,21.0,Ninjago,Ninjago
+9569-1,Spitta,2012,20.0,Ninjago,Ninjago
+9570-1,NRG Jay,2012,,Ninjago,Ninjago
+9571-1,Fangdam,2012,19.0,Ninjago,Ninjago
+9572-1,NRG Cole,2012,15.0,Ninjago,Ninjago
+9573-1,Slithraa,2012,,Ninjago,Ninjago
+9574-1,Lloyd ZX,2012,18.0,Ninjago,Ninjago
+9579-1,Starter Set,2012,,Ninjago,Ninjago
+9580-1,WeDo Robotics Construction Set,2009,157.0,Educational and Dacta,Educational and Dacta
+9581-1,WeDo Robotics USB Hub,2009,1.0,WeDo,Educational and Dacta
+9583-1,WeDo Robotics Motion Sensor,2009,1.0,WeDo,Educational and Dacta
+9584-1,WeDo Robotics Tilt Sensor,2009,,WeDo,Educational and Dacta
+9585-1,LEGO® Education WeDo Resource Set,2009,326.0,WeDo,Educational and Dacta
+9590-1,NRG Zane,2012,,Ninjago,Ninjago
+9591-1,Weapon Pack,2012,,Ninjago,Ninjago
+9594-1,Green City,2011,1356.0,Mindstorms,Educational and Dacta
+960-1,Power Pack,1978,,Expert Builder,Technic
+9604-1,LEGO TECHNIC and Pneumatic elements,1992,,Technic,Technic
+9605-1,4.5V Technic Resource Set,1990,1534.0,Supplemental,Educational and Dacta
+9607-1,Technology Activity Set,1994,318.0,Technic,Educational and Dacta
+9608-1,Teacher's Guide for Technology Group Activity Set,1994,,Technic,Educational and Dacta
+9609-1,Technology Resource Set,1995,,Technic,Technic
+9610-1,Gear Set,1993,76.0,Technic,Technic
+961-1,Expert Builder/Gear Parts,1978,78.0,Expert Builder,Technic
+9612-1,Lever Set,1993,63.0,Technic,Technic
+9614-1,Pulley Set,1995,,Technic,Technic
+9615-1,Motor Add-On for Simple Mechanisms,1997,3.0,Technic,Technic
+9616-1,Wheels and Axles Mini Set,1995,82.0,Technic,Educational and Dacta
+9617-1,Pneumatics I: Introduction to Air Power Set,1997,,Technic,Technic
+9618-1,Structures Set,1997,,Technic,Educational and Dacta
+9628-1,Mechanisms Power Add-On Set,2008,3.0,Supplemental,Educational and Dacta
+9630-1,Simple Mechanisms Set,1997,218.0,Technic,Technic
+9631-1,Simple and Motorized Machines Activity Pack,1997,,Technic,Educational and Dacta
+9632-1,Science & Technology Base Set,2006,352.0,Technic,Educational and Dacta
+9633-1,Advanced Air Power Set,1999,,Technic,Technic
+9636-1,Solar Add-on,2000,3.0,Technic,Technic
+9637-1,Speed Computer Add-on,2000,2.0,Technic,Technic
+9640-1,Gears Classroom Pack,1994,0.0,Technic,Educational and Dacta
+964-1,"10 building plates 2 x 8, 4 x 8, 6 x 8",1969,10.0,Supplemental,Classic
+9641-1,Mechanisms Pneumatics Add-On Set,2008,31.0,Supplemental,Educational and Dacta
+9642-1,Levers Classroom Pack,1994,,Technic,Educational and Dacta
+9644-1,Pulley Classroom Pack,1994,0.0,Technic,Educational and Dacta
+9645-1,Motorized Simple Machines Set,1997,2.0,Technic,Educational and Dacta
+9646-1,Wheel and Axle Classroom Pack,1994,,Technic,Educational and Dacta
+9648-1,Education Resource Set [NXT Supplemental Set],2006,674.0,Technic,Technic
+9649-1,Technology Resource Set,2003,1154.0,Technic,Technic
+9650-1,Scenery Resource Set,2002,717.0,Mindstorms,Educational and Dacta
+9656-1,Early Simple Machines Set,2008,99.0,Duplo,Duplo
+9657-1,FIRST LEGO League Challenge 2012 - Senior Solutions,2012,1612.0,FIRST LEGO League,FIRST LEGO League
+9660-2,Motorized Mechanisms Set,2008,2.0,Technic,Educational and Dacta
+9664-1,FIRST LEGO League Challenge 2013 - Nature's Fury,2013,,FIRST LEGO League,FIRST LEGO League
+9665-1,Mechanical Engineering Set,2001,,Technic,Technic
+9667-1,Solar Panel,2010,1.0,Supplemental,Educational and Dacta
+9668-1,Energy Display,2010,1.0,Supplemental,Educational and Dacta
+9669-1,Electric Battery Box 9V 150 mAh (Rechargeable),2010,,Supplemental,Educational and Dacta
+9670-1,E-Motor with Gear Reduction Ratio 9.5 : 1,2010,,Supplemental,Educational and Dacta
+9674-1,Naboo Starfighter & Naboo,2012,,Star Wars Episode 1,Star Wars
+9675-1,Sebulba's Podracer & Tatooine,2012,80.0,Star Wars Episode 1,Star Wars
+9676-1,TIE Interceptor & Death Star,2012,65.0,Star Wars Episode 4/5/6,Star Wars
+9677-1,X-wing Starfighter & Yavin 4,2012,77.0,Planet Series 2,Star Wars
+9678-1,Twin-pod Cloud Car & Bespin,2012,78.0,Planet Series 2,Star Wars
+9679-1,AT-ST & Endor,2012,,Planet Series 2,Star Wars
+9681-1,eLAB Renewable Energy Set,1999,,eLAB,Educational and Dacta
+9684-1,Renewable Energy Set II,2003,732.0,Technic,Technic
+9685-1,Green Car Set,2003,,Technic,Technic
+9686-1,Simple and Motorized Mechanisms Base Set,2009,400.0,Educational and Dacta,Educational and Dacta
+9688-1,Renewable Energy Add-On Set,2010,,Supplemental,Educational and Dacta
+9689-1,Simple Machines Set,2009,194.0,WeDo,Educational and Dacta
+9693-1,"Rechargeable Battery for Lego Mindstorms NXT, DC plug",2010,,NXT,Mindstorms
+9694-1,NXT Color Sensor,2010,,NXT,Mindstorms
+9695-1,Mindstorms Education Resource Set,2010,816.0,NXT,Mindstorms
+9696-1,FIRST LEGO League Challenge 2010 - Body Forward v46,2010,,FIRST LEGO League,FIRST LEGO League
+9697-1,FIRST LEGO League Challenge 2011 - Food Factor,2011,,FIRST LEGO League,FIRST LEGO League
+9698-1,FIRST LEGO League Challenge 2009 - Smart Move,2009,1310.0,FIRST LEGO League,FIRST LEGO League
+9699-1,FIRST LEGO League Challenge 2008 - Climate Connections,2008,,FIRST LEGO League,FIRST LEGO League
+970004-1,Yellow Band (Pack of 25),2002,25.0,Service Packs,Educational and Dacta
+970005-1,9-Volt 1 x 2 Lamp Brick (Pack of 2),2002,,Service Packs,Educational and Dacta
+970008-1,1 x 2 Red Bricks (Pack of 50),2002,50.0,Service Packs,Educational and Dacta
+970009-1,1 x 2 Blue Plates (Pack of 100),2002,100.0,Service Packs,Educational and Dacta
+9700-1,Technic Control Center,1987,472.0,Technic,Educational and Dacta
+970010-1,Hubs Gray (Pack of 50),2002,50.0,Technic,Educational and Dacta
+970017-1,14-Tooth Beveled Gears (Pack of 100),2002,,Technic,Educational and Dacta
+970018-1,Gray Pulley Wheel (Pack of 50),2008,,Technic,Educational and Dacta
+970021-1,Red Rover Tires and Hubs (4 tires 4 hubs),2002,8.0,Service Packs,Educational and Dacta
+970028-1,Shock Absorber (Pack of 10),2002,,Technic,Educational and Dacta
+970030-1,Lift Arm (Pack of 50),2002,,Technic,Educational and Dacta
+970036-1,2 x 2 Angle Plate (Pack of 25),2002,25.0,Service Packs,Educational and Dacta
+970039-1,Lever Arm (Pack of 50),2002,50.0,Technic,Educational and Dacta
+970040-1,Caterpillar Hub and Tread (Set of 2 treads 4 Hubs),2002,,Service Packs,Educational and Dacta
+970041-1,128 MM Connecting Leads (Pack of 3),2002,,Technic,Educational and Dacta
+970042-1,Piston Rod (Pack of 75),2002,,Technic,Educational and Dacta
+970043-1,Small Half Beam (Pack of 100),2002,100.0,Technic,Educational and Dacta
+970047-1,Large Tire and Hub (2 tires 2 hubs),2002,4.0,Service Packs,Educational and Dacta
+970098-1,Special Elements for Control Lab Set,2001,,Technic,Technic
+970-1,Lighting Bricks,1978,,Supplemental,Universal Building Set
+9701-1,Control Lab Building Set,1995,565.0,Technic,Technic
+970110-1,Pneumatic T-Pieces (Pack of 25),2002,25.0,Technic,Educational and Dacta
+970111-1,Large Lawn Tire & Hub (4 tires 4 hubs),2002,8.0,Service Packs,Educational and Dacta
+970112-1,Small Lawn Tire & Hub (4 tires 4 hubs),2002,8.0,Service Packs,Educational and Dacta
+970113-1,Tire Pack (Set of 8),2002,8.0,Service Packs,Educational and Dacta
+970115-1,1280 mm Connecting Leads (Pack of 3),2002,3.0,Technic,Educational and Dacta
+970116-1,12 Tooth Double Bevel Gears (Pack of 25),2002,,Technic,Educational and Dacta
+970117-1,Pneumatic Hand Pump (Pack of 2),2002,,Technic,Educational and Dacta
+970118-1,Pneumatic Cylinder (Set of 2 small),2002,2.0,Technic,Educational and Dacta
+970119-1,Pneumatic Tubing Service Pack,2002,2.0,Technic,Educational and Dacta
+970120-1,Black Bands (Pack of 50),2002,25.0,Service Packs,Educational and Dacta
+970121-1,Red Bands (Pack of 25),2002,,Service Packs,Educational and Dacta
+970122-1,Small White Bands (Pack of 24),2002,24.0,Service Packs,Educational and Dacta
+970-2,47 1/3 elements (plates),1969,,Supplemental,Classic
+9702-1,Control System Building Set,1993,222.0,Technic,Technic
+970600-1,1 x 2 Plate with Slides (Pack of 100),2002,100.0,Service Packs,Educational and Dacta
+970601-1,Small Pulleys (Pack of 100),2002,,Technic,Educational and Dacta
+970602-1,Bushings (Pack of 100),2002,,Technic,Educational and Dacta
+970603-1,Connector Pegs (Pack of 100),2002,100.0,Technic,Educational and Dacta
+970604-1,Friction Connector Pegs (Pack of 100),2002,,Technic,Educational and Dacta
+970605-1,Long Black Connector Pegs (Pack of 100),2002,100.0,Technic,Educational and Dacta
+970606-1,Connector Pegs with Axles (Pack of 100),2002,100.0,Technic,Educational and Dacta
+970607-1,Connector Pegs with Knobs (Pack of 100),2002,100.0,Technic,Educational and Dacta
+970608-1,Connector Pegs (Pack of 100),2002,,Technic,Educational and Dacta
+970609-1,2-Stud Axles with Grooves (Pack of 100),2002,100.0,Technic,Educational and Dacta
+970610-1,3-Stud Axles (Pack of 100),2002,100.0,Technic,Educational and Dacta
+970611-1,Cross Axles with Knobs (Pack of 100),2002,100.0,Technic,Educational and Dacta
+970612-1,4-Stud Axles (Pack of 50),2002,50.0,Technic,Educational and Dacta
+970613-1,5-Stud Axles (Pack of 50),2002,50.0,Technic,Educational and Dacta
+970614-1,6-Stud Axles (Pack of 50),2002,50.0,Technic,Educational and Dacta
+970615-1,8-Stud Axles (Pack of 50),2002,50.0,Technic,Educational and Dacta
+970616-1,10-Stud Axles (Pack of 50),2002,50.0,Technic,Educational and Dacta
+970617-1,12-Stud Axles (Pack of 50),2002,50.0,Technic,Educational and Dacta
+970618-1,Axle Extenders (Pack of 50) {Axle Joiners},2002,,Technic,Educational and Dacta
+970619-1,Catches {Technic Pole Reverser Handles},2002,,Technic,Educational and Dacta
+970620-1,8 Tooth Gears (Pack of 100) 'Spur' Gears,2002,100.0,Technic,Educational and Dacta
+970621-1,12 Tooth Bevel Gears (Pack of 50),2002,,Technic,Educational and Dacta
+970622-1,16 Tooth Gears (Pack of 50),2002,50.0,Technic,Educational and Dacta
+970623-1,20 Tooth Double Bevel Gears (Pack of 25),2002,25.0,Technic,Educational and Dacta
+970624-1,24-Tooth Crown Gears,2003,50.0,Technic,Educational and Dacta
+970625-1,24 Tooth Gears (Pack of 50),2002,50.0,Technic,Educational and Dacta
+970626-1,Technic Clutches,2003,10.0,Technic,Educational and Dacta
+970627-1,40 Tooth Gears (Pack of 25),2002,25.0,Technic,Educational and Dacta
+970628-1,Cross Blocks (Pack of 50),2002,50.0,Technic,Educational and Dacta
+970629-1,Catches with Cross Holes (Pack of 50),2002,,Technic,Educational and Dacta
+970630-1,Pulleys (For micromotor pack of 10),2002,,Technic,Educational and Dacta
+970631-1,Bricks with Cross (axle) Holes (Pack of 50),2002,,Technic,Educational and Dacta
+970632-1,1 x 2 Beams,2002,,Technic,Educational and Dacta
+970633-1,1 x 4 Beams,2002,30.0,Technic,Educational and Dacta
+970634-1,1 x 6 Beams,2002,,Technic,Educational and Dacta
+970635-1,1 x 8 Beams,2002,20.0,Technic,Educational and Dacta
+970636-1,1 x 10 Beams,2002,20.0,Technic,Educational and Dacta
+970637-1,1 x 12 Beams,2002,10.0,Technic,Educational and Dacta
+970638-1,1 x 16 Beams,2002,10.0,Technic,Educational and Dacta
+970639-1,2 x 2 Skid Plates (Pack of 50),2002,,Service Packs,Educational and Dacta
+970640-1,Tacho Wheels (Pack of 20),2002,20.0,Technic,Educational and Dacta
+970641-1,Gear Casings (Pack of 10 contained 20 prior to 2005 Dacta catalog),2002,,Technic,Educational and Dacta
+970643-1,Bobbins {Technic Reels},2002,25.0,Technic,Educational and Dacta
+970645-1,Chain Links,2003,,Technic,Educational and Dacta
+970646-1,Gear Blocks (Pack of 5),2002,5.0,Technic,Educational and Dacta
+970653-1,Pole Reversing Switch,2003,1.0,Service Packs,Educational and Dacta
+970654-1,9-Volt Connecting Leads (One each of 128mm 256 mm 1280 mm),2002,3.0,Technic,Educational and Dacta
+970658-1,Air Storage Tanks,2002,,Technic,Educational and Dacta
+970659-1,Pneumatic Parts,2002,5.0,Technic,Educational and Dacta
+970660-1,O-Ring and Pulley Wheels,2002,50.0,Technic,Educational and Dacta
+970661-1,Skeleton and Ghost for Amusement Park Set,2002,70.0,Service Packs,Educational and Dacta
+970662-1,Steering Wheels (Pack of 25),2002,25.0,Technic,Educational and Dacta
+970663-1,Pneumatic Switch (Pack of 5),2002,,Technic,Educational and Dacta
+970665-1,Universal Joints (Pack of 10),2002,10.0,Technic,Educational and Dacta
+970669-1,Special Elements for Simple Machines Set,2002,49.0,Service Packs,Educational and Dacta
+970670-1,Special Elements for Team Challenge Set,2002,,Service Packs,Educational and Dacta
+970671-1,Special Elements for Cities and Transportation Set,2002,,Service Packs,Educational and Dacta
+970672-1,Special Elements for Amusement Park Set,2002,,Service Packs,Educational and Dacta
+970673-1,Special Elements for ROBO Technology Set,2002,71.0,Service Packs,Educational and Dacta
+970674-1,Car Project Set,2002,,Service Packs,Educational and Dacta
+970675-1,House Project Set,2002,,Service Packs,Educational and Dacta
+970676-1,Bug Project Set,2002,83.0,Service Packs,Educational and Dacta
+970677-1,Gadget Project Set,2002,,Service Packs,Educational and Dacta
+970678-1,Special Elements for eLAB Renewable Energy Set,2002,315.0,Service Packs,Educational and Dacta
+970679-1,Special Elements For Mechanical Engineering Set,2004,130.0,Service Packs,Educational and Dacta
+970680-1,Special Elements for Early Simple Machines Set,2002,19.0,Service Packs,Educational and Dacta
+970683-1,Black Plates - Large Package,2002,165.0,Service Packs,Educational and Dacta
+970684-1,Wheels (Tires hubs axle plates and bricks),2002,184.0,Service Packs,Educational and Dacta
+970686-1,Roof Tiles,2002,180.0,Service Packs,Educational and Dacta
+970687-1,Team Challenge Upgrade Kit,2002,95.0,Service Packs,Educational and Dacta
+9707-1,Intelligent House Building Set,1996,164.0,Technic,Technic
+9709-1,RCX Programmable Brick,1998,1.0,Technic,Technic
+971-1,52 flat tile bricks,1969,156.0,Supplemental,Classic
+9713-1,Infrared Transmission Tower,1998,,RCX,Educational and Dacta
+9719-1,"Robotics Invention System, Version 1.0",1998,,RCX,Mindstorms
+9723-1,Cities and Transportation,2000,394.0,Technic,Technic
+9725-1,ROBOLAB Amusement Park Set,1999,248.0,RCX,Educational and Dacta
+9730-1,RoboSports,1998,91.0,RCX,Mindstorms
+9731-1,Vision Command [RCX Digital Colour Camera],2000,139.0,RCX,Mindstorms
+9732-1,Extreme Creatures,1998,,RCX,Mindstorms
+9735-1,Robotics Discovery Set,1999,390.0,RCX,Mindstorms
+9736-1,Exploration Mars,1999,158.0,RCX,Mindstorms
+9738-1,Remote Control,1998,1.0,RCX,Mindstorms
+9742-1,Photosynthesis Student Set,2008,74.0,Learning,Educational and Dacta
+9743-1,Chromosomes - Student Set,2003,,Learning,Educational and Dacta
+9747-1,"Robotics Invention System, Version 1.5",1999,729.0,RCX,Mindstorms
+9748-1,Droid Developer Kit,1999,658.0,Star Wars,Mindstorms
+9749-1,NXT Temperature Sensor,2009,1.0,NXT,Mindstorms
+9750-1,LEGO Interface,1986,4.0,Supplemental,Educational and Dacta
+9751-1,Control Lab Serial Interface & Adapter,1995,,Control Lab,Educational and Dacta
+9752-1,Technic Control Center II,1996,14.0,Supplemental,Educational and Dacta
+9753-1,TECHNIC Control Center [Dacta Kit],1993,14.0,Technic,Technic
+9754-1,Dark Side Developers Kit,2000,578.0,Star Wars,Mindstorms
+9755-1,Temperature Sensor,1999,1.0,RCX,Mindstorms
+9756-1,Rotation Sensor,1999,,RCX,Mindstorms
+9757-1,Touch Sensor with Cable,1999,2.0,RCX,Mindstorms
+9758-1,Light Sensor 9V,1999,,RCX,Mindstorms
+9761-1,FIRST LEGO League Challenge 2004 - No Limits,2004,,FIRST LEGO League,FIRST LEGO League
+9762-1,FIRST LEGO League Challenge 2005 - Ocean Odyssey,2005,1471.0,FIRST LEGO League,FIRST LEGO League
+9763-1,FIRST LEGO League Challenge 2006 - Nano Quest,2006,1505.0,FIRST LEGO League,FIRST LEGO League
+9764-1,FIRST LEGO League Challenge 2007 - Power Puzzle,2007,,FIRST LEGO League,FIRST LEGO League
+9767-1,Interface Card/Cable for Apple IIe and IIGS,1989,1.0,Technic,Educational and Dacta
+9771-1,Interface Card and Cable for TC Logo - IBM compatible,1989,,Supplemental,Educational and Dacta
+9776-1,Pneumatic Circuit,1999,4.0,Technic,Technic
+9780-1,ROBOLAB Starter Building Set,1998,,RCX,Educational and Dacta
+9780545703307-1,Klutz: LEGO Chain Reactions,2015,,Books,Books
+9781409350545-1,LEGO Legends of Chima: Character Encyclopedia,2014,,Books,Books
+9783-1,Infrared Transmitter with USB Cable,2001,,RCX,Educational and Dacta
+9784-1,FIRST LEGO League Challenge 2001 - Arctic Impact,2001,,FIRST LEGO League,FIRST LEGO League
+9785-1,Robo Technology Set [Serial Cable],2003,,Technic,Technic
+9786-1,Robo Technology Set [USB Cable],2003,,Technic,Technic
+9789-2,FIRST LEGO League Challenge 2002 - City Sights,2002,,FIRST LEGO League,FIRST LEGO League
+9790-1,ROBOLAB Team Challenge Set (Serial),1999,,RCX,Educational and Dacta
+9793-1,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],2002,,RCX,Educational and Dacta
+9794-1,ROBOLAB Team Challenge Set Version 2.5 [USB],2003,,Technic,Technic
+9795-1,ROBOLAB Intelligent House Building Set,2001,164.0,RCX,Educational and Dacta
+9797-1,LEGO MINDSTORMS Education NXT Base Set,2006,434.0,NXT,Educational and Dacta
+979760-1,Mars Exploration,2003,810.0,Mindstorms,Educational and Dacta
+9798-1,NXT Rechargeable Battery,2006,,NXT,Mindstorms
+9799-1,Sensor Adaptor for Mindstorms NXT to Vernier,2008,,NXT,Mindstorms
+980-1,"23 sloping bricks, including roof peak bricks, Red",1969,23.0,Supplemental,Classic
+980-2,"23 sloping bricks, including roof peak bricks, Blue",1969,23.0,Supplemental,Classic
+981-1,"34 sloping profile bricks, including profile peak bricks, Red",1969,,Supplemental,Classic
+981-2,"34 sloping profile bricks, including profile peak bricks, Blue",1969,39.0,Supplemental,Classic
+9820-1,Geared Turntable,1989,,Technic,Technic
+9822-1,Beams (Red),1994,68.0,Technic,Technic
+9823-1,Beams (Blue),1994,68.0,Technic,Technic
+9824-1,Beams (Yellow),1994,68.0,Technic,Technic
+9825-1,Pneumatic Elements,1994,3.0,Technic,Technic
+9826-1,Pneumatic Tubing,1994,1.0,Technic,Technic
+9831-1,Battery Box with Switch - 9v,1995,,Technic,Technic
+9833-1,AC Adapter 230V - 10V Transformer,1996,1.0,NXT,Mindstorms
+9833-2,"AC Adapter, 120V - 10V Transformer",1996,1.0,NXT,Mindstorms
+9833-3,AC Adapter 230V - 10V Transformer Type G Plug (British),2006,,NXT,Mindstorms
+9840-1,X-Large Blue Storage Bin (16.5in x 12in x 10in),2006,2.0,Supplemental,Educational and Dacta
+9841-1,NXT Intelligent Brick,2006,1.0,NXT,Mindstorms
+9842-1,NXT Servo Motor,2006,1.0,NXT,Mindstorms
+9843-1,NXT Touch Sensor,2006,,NXT,Mindstorms
+9844-1,NXT Light Sensor,2006,,NXT,Mindstorms
+9845-1,NXT Sound Sensor,2006,1.0,NXT,Mindstorms
+9846-1,NXT Ultrasonic Sensor,2006,,NXT,Mindstorms
+9847-1,Activity Cards for Non-Motorized Simple Machines (979630),1997,19.0,Supplemental,Educational and Dacta
+9847-2,NXT Bluetooth Dongle,2006,,NXT,Mindstorms
+9848-1,Lamps and Fittings,1997,9.0,Technic,Technic
+9849-1,9V Micromotor,1995,4.0,Technic,Educational and Dacta
+985-1,Lighting Device Parts Pack,1969,4.0,Supplemental,Classic
+9851-1,Assortment of Connectors,1992,453.0,Technic,Technic
+9852-1,Chain Link Pack,1992,,Technic,Technic
+9853-1,Assortment of Gears,1992,,Technic,Technic
+9854-1,Worm Gear Pack,1992,22.0,Technic,Technic
+9855-1,Assortment of Tires/Wheels,1992,56.0,Technic,Technic
+9856-1,Assortment of Cross Axles,1992,124.0,Technic,Technic
+9857-1,Assortment of Plate Pieces,1992,166.0,Technic,Technic
+9858-1,Assortment of Beams,1992,126.0,Technic,Technic
+9859-1,TECHNIC Motor 4.5 Volt,1992,,Technic,Technic
+9860-1,Battery Box (4.5 Volt),1992,1.0,Technic,Technic
+986-1,One Light Bulb,1969,,Supplemental,Classic
+9861-1,Connecting Leads,1992,8.0,Technic,Technic
+9862-1,Random Special Pieces,1992,96.0,Technic,Technic
+9863-1,Weighted Brick Pack,1992,4.0,Technic,Technic
+9864-1,Green Building Plates,1992,3.0,Technic,Technic
+9865-1,Optosensor,1992,,Technic,Technic
+9866-1,Light and Transparent Bricks,1992,12.0,Technic,Technic
+9867-1,Touch Sensor,1992,1.0,Technic,Technic
+9868-1,Plugholders and Leads,1992,,Technic,Technic
+9869-1,Building Plates (24 x 24),1992,3.0,Service Packs,Educational and Dacta
+9870-1,Pneumatic Rubber Bands and Pneumatic Tubing,1992,144.0,Technic,Technic
+987-1,Number Bricks,1969,,Supplemental,Classic
+9871-1,Yellow Beams,1992,,Technic,Technic
+9872-1,"Pneumatic Pump, Cylinder, Valves, Tubing",1992,10.0,Technic,Technic
+9874-1,Building Cards - 1090,1992,,Supplemental,Educational and Dacta
+9875-1,Building Cards - 1092,1992,,Supplemental,Educational and Dacta
+9876-1,Large Turntables,1992,,Technic,Technic
+988-1,Alphabet Bricks,1969,,Supplemental,Classic
+9883-1,Motor - 9v,1995,1.0,Technic,Technic
+9885-1,Sound element - 9v,1995,1.0,Technic,Technic
+9888-1,Touch Sensor,2002,,Technic,Technic
+9889-1,Temperature Sensor,1995,,Technic,Technic
+9890-1,Light Sensor,1995,1.0,Technic,Technic
+989-1,10 Traffic Signs,1969,10.0,Supplemental,Classic
+9891-1,Angle Sensor,1995,,Technic,Technic
+9892-1,Brick Separators,1995,2.0,Technic,Technic
+98959-1,Motor,1977,40.0,Expert Builder,Technic
+9897-1,9-Volt Connecting Leads,1998,3.0,Technic,Technic
+9898-1,9-Volt Long Connecting Leads,1996,2.0,Technic,Technic
+9899-1,Hubs and Tires,1999,20.0,Technic,Technic
+9900-1,Small Gear Wheels,1999,21.0,Technic,Technic
+990-1,Trees and Signs (1971 version with granulated trees and 4 bricks),1971,12.0,Supplemental,Universal Building Set
+990-2,Trees and Signs (1969 version with old style trees and 3 bricks),1969,,Supplemental,Universal Building Set
+9911-1,9-Volt Touch Sensor and Leads,2004,3.0,RCX,Mindstorms
+991118-1,3M Connecting Lead (Set of 2),2002,,Service Packs,Educational and Dacta
+9912-1,LEGO Solar Cell,1999,1.0,Technic,Technic
+991268-1,Special Elements Pack,2009,,Supplemental,Educational and Dacta
+991319-1,Medium Gray Storage Bin,2008,1.0,Supplemental,Educational and Dacta
+991327-1,12-Tooth Black Double Conical Wheels (Pack of 25),2007,,Technic,Educational and Dacta
+991328-1,36-Tooth Double Conical Wheels (Pack of 25),2007,25.0,Technic,Educational and Dacta
+991329-1,7-Stud Axles (Pack of 50),2007,50.0,Technic,Educational and Dacta
+991330-1,New Turntables (Pack of 2),2007,2.0,Technic,Educational and Dacta
+991331-2,Small Wide Tire & Hub (Pack of 8 each),2007,,Service Packs,Educational and Dacta
+991332-1,Technic Triangle (Pack of 25),2007,25.0,Technic,Educational and Dacta
+991333-1,Cam Wheel (Pack of 25),2007,25.0,Technic,Educational and Dacta
+991335-1,Swivel Magnet Pack (Pack of 10 each),2007,20.0,Service Packs,Educational and Dacta
+991336-1,2-Stud Axles with Grooves (Pack of 100),2007,100.0,Technic,Educational and Dacta
+991337-1,Connector Peg with Axle (Pack of 100),2007,,Technic,Educational and Dacta
+991369-1,Tracks and Sprockets Pack,2008,110.0,Technic,Educational and Dacta
+991402-1,Studless Technic Beams,2008,35.0,Technic,Educational and Dacta
+991403-1,Technic Angle Beams,2008,,Technic,Educational and Dacta
+991404-1,Technic Beams with Snaps,2008,,Technic,Educational and Dacta
+991405-1,Technic Crossblocks,2008,30.0,Technic,Educational and Dacta
+991426-1,Black Plates - Large Package,2009,,Technic,Educational and Dacta
+991451-1,Tracks,2009,120.0,Technic,Educational and Dacta
+991452-1,Sprockets,2009,,Technic,Educational and Dacta
+991464-1,LEGO Smart Kit,2009,20.0,Educational and Dacta,Educational and Dacta
+9916-1,LEGO Electrical Capacitor,1999,1.0,Technic,Technic
+991751-1,MINDSTORMS Energy Parts Pack,2012,46.0,Technic,Educational and Dacta
+9918-1,Gear Block Yellow,1999,,Technic,Educational and Dacta
+9927-1,Beams (red),1999,44.0,Technic,Technic
+9928-1,Beams (blue),1999,,Technic,Technic
+9929-1,Plates Red,1998,72.0,Service Packs,Educational and Dacta
+9930-1,Plates Blue,1998,72.0,Service Packs,Educational and Dacta
+9931-1,Plates Yellow,1998,72.0,Service Packs,Educational and Dacta
+9932-1,Plates Black,1998,,Service Packs,Educational and Dacta
+9933-1,Basic Bricks (red),1999,,Service Packs,Educational and Dacta
+9934-1,Basic Bricks (yellow),1999,62.0,Service Packs,Educational and Dacta
+9935-1,Basic Bricks (black),1999,62.0,Service Packs,Educational and Dacta
+9936-1,Weight Elements,1998,2.0,Service Packs,Educational and Dacta
+9937-1,Small Chain Links,1998,,Technic,Technic
+9938-1,Conveyor Belt Links,1999,36.0,Technic,Technic
+9939-1,Assorted Pulleys,1999,14.0,Technic,Technic
+9940-1,Rubber Bands and String,1999,36.0,Technic,Technic
+994-1,LEGO fences with garden gates,1969,,Supplemental,Classic
+9941-1,Cams & Linkages,1998,18.0,Technic,Technic
+9942-1,Connectors & Bushings,1998,160.0,Technic,Technic
+9943-1,Axles and Extenders,1998,54.0,Technic,Technic
+9945-1,Differentials,1998,14.0,Technic,Educational and Dacta
+995-1,Lighting Bricks with Color Filters,1969,23.0,Supplemental,Classic
+9954-1,Special Elements for Mini Sets,2001,,Service Packs,Educational and Dacta
+9959-1,Special Elements for Intelligent House Building Set,2001,,Service Packs,Educational and Dacta
+9960-1,"Crane Hook, Cam, Propellor",1994,,Technic,Technic
+9961-1,White Belts,1994,16.0,Technic,Technic
+9962-1,Flat Tiles,1994,12.0,Service Packs,Educational and Dacta
+9963-1,Axle Extenders and Bushings,1995,,Technic,Technic
+9964-1,Connector Pegs,1994,,Technic,Technic
+9965-1,Gears 8- and 10-Tooth,1994,18.0,Technic,Technic
+9966-1,Large Gear Wheels,1999,,Technic,Technic
+9967-1,Differential and Bevel Gears,1994,18.0,Technic,Technic
+9968-1,Pulley Wheels,1994,,Technic,Technic
+9969-1,Tires and Spoked Hubs,1994,,Technic,Technic
+9970-1,Axles - Short,1994,36.0,Technic,Technic
+9971-1,Axles - Long,1994,24.0,Technic,Technic
+9972-1,Plates (Red),1994,,Technic,Technic
+9973-1,Plates (Blue),1994,88.0,Technic,Technic
+9974-1,Plates (Yellow),1994,,Technic,Technic
+9975-1,Simple Machines,1987,122.0,Technic,Educational and Dacta
+9999-1,Upgrade Kit for 9654,2008,,Educational and Dacta,Educational and Dacta
+Alpharetta-1,"LEGO Store Grand Opening Exclusive Set, North Point Mall, Alpharetta, GA",2012,15.0,LEGO Brand Store,LEGO Brand Store
+AMFlag-1,American Flag with Sticker For Stars (Legoland California),2002,,Holiday,Legoland Parks
+Annapolis-1,"LEGO Store Grand Opening Exclusive Set, Westfield Annapolis, Annapolis, MD",2009,45.0,LEGO Brand Store,LEGO Brand Store
+auditt-1,Audi TT Roadster (Legoland Deutschland),2002,,Legoland Parks,Legoland Parks
+Austin-1,"LEGO Store Grand Opening Exclusive Set, Barton Creek Square, Austin, TX",2010,,LEGO Brand Store,LEGO Brand Store
+B001-1,"1 x 4 x 5 Black Window Frames, Transparent Blue Panes",2001,,Bulk Bricks,Bulk Bricks
+B002-1,1 x 4 x 3 Train Window Clear,2000,25.0,Bulk Bricks,Bulk Bricks
+B003-1,"Red Frame, Black Door, Green Pane",2003,,Bulk Bricks,Bulk Bricks
+B004-1,2 x 4 Ridge Roof Tile Low Sloped Black,2003,,Bulk Bricks,Bulk Bricks
+B005-1,2 x 4 Ridge Roof Tile Low Sloped Red,2003,25.0,Bulk Bricks,Bulk Bricks
+B100-1,Crazy Action Contraptions (Klutz),1998,,Technic,Educational and Dacta
+B110-1,Crazy Action Contraptions (Klutz) Vol. 2,2008,,Technic,Educational and Dacta
+b55dk-01,Lego Mursten - System i Leg Byggebog,1955,,Books,Books
+b56de-01,Lego Bausteine - System im Spiel,1956,0.0,Books,Books
+b63de-01,LEGO Hobby und Modellbau,1963,,Books,Books
+b66de-01,LEGO Motor Eisenbahn,1966,,Train,Books
+BAG6-1,Gray Brick Separator with Black Frame Pieces,2006,,Bulk Bricks,Bulk Bricks
+BAT8369-1,Battery Pack,2004,,Supplemental,Racers
+BauMit-1,BAU MIT!,2009,,Other,Other
+Beachwood-1,"LEGO Store Grand Opening Exclusive Set, Beachwood Place, Beachwood, OH",2011,3.0,LEGO Brand Store,LEGO Brand Store
+Berlin-1,"LEGO Store Grand Opening Exclusive Set, Berlin, Germany",2009,69.0,LEGO Brand Store,LEGO Brand Store
+bilmasks-1,Special Masks! - 2 (Dark) Copper Color Kanohi (Legoland Billund),2001,,Bionicle,Legoland Parks
+BIO601601-1,Scorpion,2016,,Bionicle,Bionicle
+BIO601602-1,Ekimu Falcon,2016,,Bionicle,Bionicle
+Birmingham-1,"LEGO Store Grand Opening Exclusive Set, Riverchase Galleria, Birmingham, AL",2009,79.0,LEGO Brand Store,LEGO Brand Store
+Braintree-1,"LEGO Store Grand Opening Exclusive Set, South Shore Plaza, Braintree, MA",2008,58.0,LEGO Brand Store,LEGO Brand Store
+C001-1,LEGO Star Wars Clock,2008,,Gear,Gear
+C8500-1,Robotops (8500 + 8501 + 8502 + 8503),1999,,Throwbot Slizer,Technic
+C8504-1,Ultrarex (8504 + 8505 + 8506 + 8507),1999,88.0,Throwbot Slizer,Technic
+C8509-1,Swamp + Lava (8509 + 8510),2000,63.0,RoboRiders,Technic
+C8509-2,Dust + Lava + Swamp [8509 + 8510 + 8513],2000,96.0,RoboRiders,Technic
+C8509-3,Swamp + Frost + Onyx + Dust [8509 + 8511 + 8512 + 8513],2000,146.0,RoboRiders,Technic
+C8509-4,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],2000,153.0,RoboRiders,Technic
+C8509-5,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],2000,,RoboRiders,Technic
+C8511-1,Frost + Dust (8511 + 8513),2000,73.0,RoboRiders,Technic
+C8511-2,Frost + Onyx + Power [8511 + 8512 + 8514],2000,90.0,RoboRiders,Technic
+C8512-1,Onyx + Power (8512 + 8514),2000,,RoboRiders,Technic
+C8521-1,Dynamo (8521 + 8522 + 8523),2000,142.0,Throwbot Slizer,Technic
+Calgary-1,"LEGO Store Grand Opening Exclusive Set, Chinook Centre, Calgary, AB, Canada",2010,130.0,LEGO Brand Store,LEGO Brand Store
+casbon-1,Castle Bonus Pack,1998,3.0,Castle,Castle
+CCegg-1,Chupa Chups Egg with Surprise Lego Set,2003,,Other,Other
+celeb2015-1,Tatooine Mini-build - Star Wars Celebration Exclusive,2015,,Star Wars,Star Wars
+CELEB2017-1,Detention Block Rescue (Star Wars Celebration 2017 Exclusive Set),2017,220.0,Star Wars Episode 4/5/6,Star Wars
+CELEBV-1,Fan Celebration V - CubeDude - The Bounty Hunter Edition,2010,497.0,Star Wars Other,Star Wars
+celebvi-1,Boba Fett’s Slave I - Mini - Star Wars Celebration VI Exclusive,2012,,Star Wars Episode 4/5/6,Star Wars
+Chandler-1,"LEGO Store Grand Opening Exclusive Set, Chandler Fashion Center, Chandler, AZ",2008,67.0,LEGO Brand Store,LEGO Brand Store
+Cincinnati-1,"LEGO Store Grand Opening Exclusive Set, Kenwood Towne Centre, Cincinnati, OH",2009,,LEGO Brand Store,LEGO Brand Store
+CITY951701-1,Policeman and Crook Foil Pack,2017,,Police,Town
+cnminifigs-1,Ninja Minifig Packs 3-Pack,2000,3.0,Ninja,Ninja
+cokejpiii-1,Japanese Coca-Cola Studios Polybag Collection sets 4056 thru 4079,2001,24.0,Studios,Studios
+cokesoccer-1,Japanese Coca-Cola Soccer collection sets 4443 thru 4472,2002,,Soccer,Sports
+Columbus-1,"LEGO Store Grand Opening Exclusive Set, Easton Town Center, Columbus, OH",2009,,LEGO Brand Store,LEGO Brand Store
+comcon001-1,Clone Wars Pack - San Diego Comic-Con 2008 Exclusive,2008,,Star Wars Clone Wars,Star Wars
+comcon002-1,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,2008,114.0,Kingdom of the Crystal Skull,Indiana Jones
+comcon003-1,Batman and Joker Minifig Pack - San Diego Comic-Con 2008 Exclusive,2008,9.0,Batman,Super Heroes
+comcon004-1,Collectible Display Set 1 - San Diego Comic-Con 2009 Exclusive,2009,5.0,Star Wars Clone Wars,Star Wars
+comcon005-1,Collectible Display Set 2 - San Diego Comic-Con 2009 Exclusive,2009,,Star Wars Episode 4/5/6,Star Wars
+comcon006-1,Collectible Display Set 4 - San Diego Comic-Con 2009 Exclusive,2009,,Star Wars Clone Wars,Star Wars
+comcon007-1,Collectible Display Set 5 - San Diego Comic-Con 2009 Exclusive,2009,17.0,Star Wars Episode 4/5/6,Star Wars
+comcon008-1,Collectible Display Set 3 - San Diego Comic-Con 2009 Exclusive,2009,16.0,Star Wars Episode 4/5/6,Star Wars
+comcon009-1,Collectible Display Set 6 - San Diego Comic-Con 2009 Exclusive,2009,,Star Wars Clone Wars,Star Wars
+comcon010-1,Mini Republic Dropship Mini AT-TE Brickmaster Pack - San Diego Comic-Con 2009 Exclusive,2009,,Star Wars Episode 2,Star Wars
+comcon011-1,LEGO Star Wars Holo-Brick Archives San Diego Comic-Con 2009 Exclusive,2009,3.0,Star Wars Other,Star Wars
+comcon013-1,Super Heroes Unite - Green Lantern - San Diego Comic-Con 2011 Exclusive,2011,4.0,Justice League,Super Heroes
+comcon014-1,Super Heroes Unite - Batman - San Diego Comic-Con 2011 Exclusive,2011,1.0,Batman,Super Heroes
+comcon015-1,Star Wars Advent Calendar - San Diego Comic-Con 2011 Exclusive,2011,1.0,Star Wars,Star Wars
+comcon016-1,Super Heroes Unite - Green Lantern - New York Comic-Con 2011 Exclusive,2011,4.0,Justice League,Super Heroes
+comcon017-1,Super Heroes Unite - Superman - New York Comic-Con 2011 Exclusive,2011,5.0,Superman,Super Heroes
+comcon018-1,Super Heroes Unite - Batman - New York Comic-Con 2011 Exclusive,2011,,Batman,Super Heroes
+comcon019-1,Darth Maul’s Sith Infiltrator - Mini - San Diego Comic-Con 2012 Exclusive,2012,91.0,Star Wars,Star Wars
+comcon020-1,Super Heroes Unite - Shazam Captain Marvel - San Diego Comic-Con 2012 Exclusive,2012,1.0,Justice League,Super Heroes
+comcon021-1,Super Heroes Unite - Phoenix Jean Gray - San Diego Comic-Con 2012 Exclusive,2012,5.0,X-Men,Super Heroes
+comcon022-1,Super Heroes Unite - Bizarro - San Diego Comic-Con 2012 Exclusive,2012,1.0,Justice League,Super Heroes
+comcon023-1,Super Heroes Unite - Venom - San Diego Comic-Con 2012 Exclusive,2012,3.0,Spider-Man,Super Heroes
+comcon024-1,Luke Skywalker's Landspeeder - Mini - New York Comic-Con 2012 Exclusive,2012,110.0,Star Wars Episode 4/5/6,Star Wars
+comcon025-1,Shadow Leonardo - New York Comic-Con 2012 Exclusive,2012,0.0,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+comcon026-1,Kraang - New York Comic-Con 2012 Exclusive,2012,0.0,Teenage Mutant Ninja Turtles,Teenage Mutant Ninja Turtles
+comcon027-1,Spiderwoman - San Diego Comic-Con 2013 Exclusive,2013,0.0,Spider-Man,Super Heroes
+comcon028-1,Spider-Man - San Diego Comic-Con 2013 Exclusive,2013,1.0,Spider-Man,Super Heroes
+comcon029-1,Black Superman - San Diego Comic-Con 2013 Exclusive,2013,,Superman,Super Heroes
+comcon030-1,Green Arrow - San Diego Comic-Con 2013 Exclusive,2013,1.0,Justice League,Super Heroes
+comcon031-1,Azog - San Diego Comic-Con 2013 Exclusive,2013,6.0,The Hobbit,The Hobbit and Lord of the Rings
+comcon032-1,JEK-14 Mini Stealth Starfighter - San Diego Comic-Con 2013 Exclusive,2013,123.0,Star Wars,Star Wars
+comcon033-1,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,2013,,An Unexpected Journey,The Hobbit and Lord of the Rings
+comcon034-1,Rocket Raccoon’s Warbird,2014,145.0,Guardians of the Galaxy,Super Heroes
+comcon035-1,The Collector - San Diego Comic-Con 2014 Exclusive,2014,8.0,Guardians of the Galaxy,Super Heroes
+comcon037-1,Batman Classic TV Series Batmobile,2014,152.0,Batman,Super Heroes
+comcon038-1,Bard the Bowman,2014,5.0,The Hobbit,The Hobbit and Lord of the Rings
+comcon039-1,The Ghost Starship,2014,,Star Wars Rebels,Star Wars
+comcon042-1,Tahu Mask - New York Comic-Con 2014 Exclusive,2014,1.0,Bionicle,Bionicle
+comcon046-1,All New Captain America (Sam Wilson) - San Diego Comic-Con 2015 Exclusive,2015,,Avengers,Super Heroes
+Concord-1,"LEGO Store Grand Opening Exclusive Set, Concord Mills, Concord, NC",2009,,LEGO Brand Store,LEGO Brand Store
+CostaMesa-1,"LEGO Store Grand Opening Exclusive Set, South Coast Plaza, Costa Mesa, CA",2011,3.0,LEGO Brand Store,LEGO Brand Store
+D100340-1,LogIT Sensor Adapter,2010,0.0,NXT,Mindstorms
+Dallas-1,"LEGO Store Grand Opening Exclusive Set, NorthPark Center, Dallas, TX",2009,,LEGO Brand Store,LEGO Brand Store
+DC1-1,Commemorative Limited Edition Batman Announcement,2006,13.0,Batman,Super Heroes
+DCBHZ-1,Wonder Woman,2017,145.0,Brickheadz,Brickheadz
+DCSHDVD1-1,Justice League vs Bizarro League DVD/Blu-Ray,2015,5.0,Gear,Gear
+DCSHDVD2-1,Justice League: Attack of the Legion of Doom DVD/Blu-ray,2015,,Gear,Gear
+DesPeres-1,"LEGO Store Grand Opening Exclusive Set, West County Center, Des Peres, MO",2013,14.0,LEGO Brand Store,LEGO Brand Store
+DKAtlantis-1,Lego Brickmaster Atlantis (Hardcover),2010,157.0,Books,Books
+DKBATMANVD-1,Batman: The Visual Dictionary,2012,0.0,Gear,Gear
+DKCastle-1,Lego Brickmaster Castle (Hardcover),2009,141.0,Books,Books
+DKCity-1,Lego Brickmaster City (Hardcover),2011,146.0,Books,Books
+DKFriends-1,Friends Brickmaster: Treasure Hunt in Heartlake City,2012,,Books,Books
+DKIDEASBOOK-1,The LEGO Ideas Book,2011,0.0,Gear,Gear
+DKLEGOBOOK-1,The LEGO Ideas Book - Unlock Your Imagination [ISBN-13 9780756686062],2009,,Books,Books
+DKLEGOBOOK-2,The LEGO Ideas Book - You Can Build Anything [ISBN-13 9781405350679],2011,1.0,Books,Books
+DKNinjago-1,Lego Brickmaster Ninjago (Hardcover),2011,154.0,Books,Books
+DKNINJAGO2-1,Brickmaster: Ninjago 2 - Fight The Power Of The Snakes,2012,155.0,Ninjago,Ninjago
+DKPirates-1,Lego Brickmaster Pirates (Hardcover),2009,,Books,Books
+DKSS-1,Standing Small,2009,1.0,Gear,Gear
+DKStarWars-1,Lego Brickmaster Star Wars (Hardcover),2010,251.0,Books,Books
+DKSTICKER-1,DK Minifigure Ultimate Sticker Collection,2010,0.0,Gear,Gear
+DKSWYoda-1,LEGO Star Wars: The Yoda Chronicles,2013,,Books,Books
+Duck75-1,75th Anniversary Duck on Wheels,2007,44.0,Other,Other
+e1a1401-1,MUJI Basic Set,2011,,Other,Other
+e1a1402-1,MUJI Animal / Vehicle Set,2011,196.0,Other,Other
+e1a1403-1,MUJI Moving Set,2011,109.0,Other,Other
+e1a1404-1,MUJI Christmas Set,2011,120.0,Other,Other
+Edmonton-1,"LEGO Store Grand Opening Exclusive Set, Southgate Mall, Edmonton, AB, Canada",2013,3.0,LEGO Brand Store,LEGO Brand Store
+EL241501-1,Enki the Panther,2015,14.0,Elves,Elves
+EL241502-1,Flamy the Fox,2015,12.0,Elves,Elves
+Elizabeth-1,"LEGO Store Grand Opening Exclusive Set, Jersey Gardens, Elizabeth, NJ",2012,15.0,LEGO Brand Store,LEGO Brand Store
+Elmhurst-1,"LEGO Store Grand Opening Exclusive Set, Queens Center Mall, Elmhurst, NY",2010,95.0,LEGO Brand Store,LEGO Brand Store
+EMMETSCAR-1,TRU Emmet's car,2014,40.0,The LEGO Movie,The LEGO Movie
+F6316-1,Flags and Posts,2006,,Bulk Bricks,Bulk Bricks
+fdp01-1,LEGO Familiedage Puzzle Promo 2009,2009,7.0,Other,Other
+FR561502-1,Dressing table,2015,,Friends,Friends
+FR561601-1,Baby Parrot And Nest,2016,,Friends,Friends
+FR561602-1,Valentine’s day,2016,24.0,Friends,Friends
+FR561603-1,Cookie The Superstar,2016,,Friends,Friends
+FR561604-1,Cute Kitchen,2016,24.0,Friends,Friends
+FR561605-1,Ice Cream Cart,2016,24.0,Friends,Friends
+FR561606-1,Rabbit and hutch,2016,,Friends,Friends
+FR561607-1,Happy Beach,2016,17.0,Friends,Friends
+FR561608-1,Cookie Cart,2016,29.0,Friends,Friends
+FR561609-1,Olivia’s laboratory,2016,,Friends,Friends
+FR561610-1,Scary Shop,2016,,Friends,Friends
+FR561611-1,Gifts wrapping table,2016,22.0,Friends,Friends
+FR561612-1,Kitten foil pack,2016,23.0,Friends,Friends
+FR561701-1,Bear in Ice Cave foil pack,2017,24.0,Friends,Friends
+Frankfurt-1,"LEGO Store Grand Opening Exclusive Set, MyZeil, Frankfurt, Germany",2009,157.0,LEGO Brand Store,LEGO Brand Store
+Frisco-1,"LEGO Store Grand Opening Exclusive Set, Stonebriar Centre, Frisco, TX",2009,,LEGO Brand Store,LEGO Brand Store
+FRNDSMAGBEACH-1,LEGO Friends Magazine Issue 'Friends on the beach' Polybag,2014,,Friends,Friends
+FRNDSMAGJNGLE-1,LEGO Friends Magazine Issue 'Jungle adventures' Polybag,2014,28.0,Friends,Friends
+fruit1-1,Apple - Hong Kong Lego Show Promotional,2007,8.0,Food & Drink,Creator
+fruit2-1,Cherry - Hong Kong Lego Show Promotional,2007,11.0,Food & Drink,Creator
+fruit3-1,Grapes - Hong Kong Lego Show Promotional,2007,7.0,Food & Drink,Creator
+fruit4-1,Mango - Hong Kong Lego Show Promotional,2007,6.0,Food & Drink,Creator
+fruit5-1,Melon - Hong Kong Lego Show Promotional,2007,8.0,Food & Drink,Creator
+fruit6-1,Orange - Hong Kong Lego Show Promotional,2007,,Food & Drink,Creator
+fruit7-1,Pear - Hong Kong Lego Show Promotional,2007,,Food & Drink,Creator
+fruit8-1,Tree - Hong Kong Lego Show Promotional,2007,,Food & Drink,Creator
+G577-1,Vikings Chess Set,2006,,Game,Gear
+GardenCity-1,"LEGO Store Grand Opening Exclusive Set, Roosevelt Field Mall, Garden City, NY",2010,88.0,LEGO Brand Store,LEGO Brand Store
+Glasgow-1,"LEGO Store Grand Opening Exclusive Set, Glasgow UK",2013,15.0,LEGO Brand Store,LEGO Brand Store
+Glendale-1,"LEGO Store Grand Opening Exclusive Set, Arrowhead Towne Center, Glendale AZ",2010,,LEGO Brand Store,LEGO Brand Store
+Hanover-1,"LEGO Store Grand Opening Exclusive Set, Arundel Mills, Hanover, MD",2009,69.0,LEGO Brand Store,LEGO Brand Store
+Honolulu-1,"LEGO Store Grand Opening Exclusive Set, Ala Moana Center, Honolulu, HI",2009,85.0,LEGO Brand Store,LEGO Brand Store
+Houston-1,"LEGO Store Grand Opening Exclusive Set, Baybrook Mall, Houston, TX",2008,65.0,LEGO Brand Store,LEGO Brand Store
+Houston-2,"LEGO Store Grand Opening Exclusive Set, The Galleria, Houston, TX",2010,,LEGO Brand Store,LEGO Brand Store
+Houston-3,"LEGO Store Grand Opening Exclusive Set, The Woodlands Mall, Houston, TX",2012,15.0,LEGO Brand Store,LEGO Brand Store
+HPG01-1,Harry Potter Gallery 1 - Potter L. Malfoy Lockhart Madame Hooch,2002,0.0,Harry Potter,Harry Potter
+HPG02-1,Harry Potter Gallery 2 - Hagrid V. Dursley Crabbe Ron Weasley,2002,,Harry Potter,Harry Potter
+HPG03-1,Harry Potter Gallery 3 - Dumbledore Ginny Weasley D. Malfoy Snape,2002,,Harry Potter,Harry Potter
+HPG04-1,Harry Potter Gallery 4 - Tom Riddle McGonagall Dobby Goyle Hermione,2002,,Harry Potter,Harry Potter
+iFountain-1,iFountain (Lego / Coca-Cola Employee Exclusive),2001,,Other,Other
+Indianapolis-1,"LEGO Store Grand Opening Exclusive Set, Castleton Square, Indianapolis, IN",2011,10.0,LEGO Brand Store,LEGO Brand Store
+ISBN1338112120-1,The LEGO Batman Movie: Chaos in Gotham City,2017,6.0,Books,Books
+JUNGLE-ADV-1,Jungle Adventures,2015,28.0,Friends,Friends
+K10001-1,Metroliner Kit,2001,2.0,9V,Train
+K10020-1,Santa Fe Starter Kit,2002,,9V,Train
+K10022-1,Santa Fe Train Kit,2002,,9V,Train
+K10039-1,LEGO Legend Castle Collection,2003,3.0,Castle,Castle
+K10041-1,LEGO Town Kit,2003,4.0,Gas Station,Town
+K10068-1,Holiday Kit,2002,3.0,Christmas,Seasonal
+K10079-1,Holiday Decoration II,2003,5.0,Christmas,Seasonal
+K10124-1,Ultimate Plane Kit,2003,3.0,Sculptures,Sculptures
+K10131-1,Battle of Yavin Collection,2004,,Star Wars Episode 4/5/6,Star Wars
+K10158-1,Deluxe High Speed Train Collection,2005,,World City,Train
+K10176-1,Classic Castle,2006,,Knights Kingdom I,Castle
+K10194-1,Emerald Night Collection,2009,8.0,RC Train,Train
+K1062-1,Lego Road Safety Kit,1981,,Town,Educational and Dacta
+k1062b,Set K1062 Activity Booklet,1981,,Town,Educational and Dacta
+K1376-1,Spider-Man Adventure Kit,2003,,Spider-Man,Super Heroes
+K1383-1,Scary Monster Madness Kit,2002,,Studios,Studios
+K2159-1,Holiday Train Starter Collection,2006,,9V,Train
+K3409-1,Ultimate Soccer Stadium Kit,2000,,Soccer,Sports
+K3433-1,Ultimate NBA Arena Kit,2004,,Basketball,Sports
+k34431-1,Lego Mosaic Cat,2003,2126.0,Mosaic,Sculptures
+k34432-1,Lego Mosaic Dino,2003,,Mosaic,Sculptures
+k34433-1,Lego Mosaic Johnny Thunder,2003,,Mosaic,Sculptures
+k34434-1,Lego Mosaic Tiger,2003,2216.0,Mosaic,Sculptures
+K3451-1,Famous Planes Kit,2002,,Sculptures,Sculptures
+K3538-1,Snowboard Cross Race Kit,2003,3.0,Gravity Games,Sports
+K3731-1,3D Pumpkin Pack Kit,2000,2.0,Halloween,Seasonal
+K3801-1,RIS 2.0 Builders Kit,2003,3.0,RCX,Mindstorms
+K4103-1,Creator Bucket bundled with 4782 (TRU Exclusive),2005,,Basic Set,Creator
+K4346-1,X-Pod Kit,2004,4.0,X-Pod,X-Pod
+K4415-1,X-Pod Creator Collection,2006,,Creator,X-Pod
+K4479-1,TIE Bomber & TIE Fighter Kit,2003,,Star Wars Episode 4/5/6,Star Wars
+K4480-1,Jabba's Palace Kit,2003,,Star Wars Episode 4/5/6,Star Wars
+K4482-1,Episode II Final Scene Kit,2003,,Star Wars Episode 2,Star Wars
+K4487-1,Star Wars Miniatures Kit I,2003,4.0,Mini,Star Wars
+K4488-1,Star Wars Miniatures Kit II,2003,4.0,Mini,Star Wars
+K4492-1,Star Wars Miniatures Kit III,2004,,Mini,Star Wars
+K4511-1,Passenger Train Kit,2003,2.0,World City,Train
+K4512-1,Cargo Train Kit,2003,0.0,World City,Train
+K4515-1,Ultimate Track Kit,1992,,9V,Train
+K4516-1,Oval Track Kit,1992,,9V,Train
+K4519-1,Cross Track Kit,1992,6.0,9V,Train
+K4520-1,Special Track Kit,1992,4.0,9V,Train
+K4531-1,Deluxe Track Kit,1992,,9V,Train
+K4609-1,Jack Stone Fire Rescue Kit,2001,,Fire,4 Juniors
+K4611-1,Jack Stone Police Rescue Kit,2001,,Police,4 Juniors
+K4612-1,Jack Stone Kit,2002,3.0,Airport,4 Juniors
+K4701-1,Chamber of Secrets Kit,2002,,Harry Potter,Harry Potter
+K4706-1,Sorcerers Stone Kit,2002,7.0,Sorcerer's Stone,Harry Potter
+K4729-1,Deluxe Hogwarts Kit,2003,,Harry Potter,Harry Potter
+K4751-1,Marauder's Map Kit (contains 4750 4751 4695),2004,,Prisoner of Azkaban,Harry Potter
+K4755-1,Knight Bus Collection,2004,,Prisoner of Azkaban,Harry Potter
+K4852-1,Spider-Man Movie Kit,2003,,Spider-Man,Super Heroes
+K4915-1,Mini Pods Collection,2006,4.0,Basic Model,Creator
+K5300-1,Train Accessories Kit,2003,,9V,Train
+K5613-1,City Fire Station Collection,2008,,Fire,Town
+K5850-1,Belville Kit,2003,4.0,Fairy-Tale,Belville
+K5858-1,The Golden Palace Collection,2003,,Golden Land,Belville
+K5862-1,Flower Fairy Party Collection,2003,,Fairy-Tale,Belville
+K5974-1,Space Police Collection,2009,,Space Police III,Space
+K6243-1,Big Pirates Collection,2009,7.0,Pirates II,Pirates
+K6290-1,Classic Pirates Kit,2001,3.0,Pirates I,Pirates
+K6762-1,Western Kit,2002,3.0,Western,Western
+K7000-1,Dinosaurs Kit,2001,,Dinosaurs,Dinosaurs
+K7029-1,Complete Castle Collection,2007,7.0,Fantasy Era,Castle
+K7035-1,World City Police Kit,2003,6.0,Police,Town
+K7094-1,Castle Collection US version,2007,,Fantasy Era,Castle
+K7153-1,Episode II Ultimate Action Kit,2002,,Star Wars Episode 2,Star Wars
+K7204-1,Jedi Adventure Kit,2002,4.0,Star Wars Other,Star Wars
+K720x-1,Story Teller Pack,2002,4.0,Star Wars Other,Star Wars
+K7283-1,V-wing Space Battle Collection,2005,,Star Wars Episode 3,Star Wars
+K7317-1,Life on Mars Kit,2001,4.0,Life On Mars,Space
+K7417-1,Orient Expedition in Mount Everest Kit,2003,4.0,Orient Expedition,Adventurers
+K7418-1,Orient Expedition in India Kit,2003,4.0,Orient Expedition,Adventurers
+K7419-1,Orient Expedition in China Kit,2003,4.0,Orient Expedition,Adventurers
+K7422-1,Orient Expedition World Travel Kit,2003,,Orient Expedition,Adventurers
+K7467-1,Space Exploration Kit,2003,,Discovery,Discovery
+K7471-1,Discovery Space Kit,2003,5.0,Discovery,Discovery
+K7623-1,Indiana Jones Classic Adventures Collection,2008,4.0,Indiana Jones,Indiana Jones
+K7690-1,Mars Mission Collection,2008,7.0,Mars Mission,Space
+K7699-1,Complete Mars Mission Collection,2007,,Mars Mission,Space
+K7734-1,Cargo Transport Collection,2008,,Cargo,Town
+K7741-1,City Police Collection,2009,3.0,Police,Town
+K7744-1,Ultimate City Police Collection,2008,5.0,Police,Town
+K7775-1,Complete Aqua Raiders Collection,2007,6.0,Aquaraiders II,Aquazone
+K7776-1,Ultimate Aqua Raiders Collection,2007,,Aquaraiders II,Aquazone
+K7890-1,Rescue Collection,2007,0.0,Hospital,Town
+K7894-1,City Airport Collection,2007,,Airport,Town
+K7895-1,Oval Track for RC Trains,2006,,RC Train,Train
+K7896-1,Deluxe Track for RC Trains,2006,,RC Train,Train
+K7906-1,Ultimate Firefighter Collection,2007,0.0,Fire,Town
+K7945-1,Firefighter Collection,2007,,Fire,Town
+K8008-1,Darth Vader / Stormtrooper Kit,2002,2.0,Star Wars,Technic
+K8102-1,Humans vs. Robots Battle Machine Collection,2007,,Exo-Force,Exo-Force
+K8107-1,Golden City Collection,2009,3.0,Exo-Force,Exo-Force
+K8111-1,Battle Machine Collection,2008,5.0,Exo-Force,Exo-Force
+K8130-1,Tiny Turbo III Collection,2007,,Tiny Turbos,Racers
+K8148-1,Mini Racers Collection,2008,,Tiny Turbos,Racers
+K8355-1,Twin Powered Street Racer Kit,2003,,Drome Racers,Racers
+K8358-1,Night Sprinter Kit,2003,3.0,Drome Racers,Racers
+K8362-1,Ferrari Collection,2004,2.0,Ferrari,Racers
+K8371-1,Twin Powered Street Racer Kit 2,2003,2.0,Drome Racers,Racers
+K8380-1,All-Terrain Racers Collection,2003,,Power Racers,Racers
+K8381-1,High-Speed Racers Collection,2003,2.0,Power Racers,Racers
+K8383-1,Off-Road Racers Collection,2003,,Power Racers,Racers
+K8533-1,Find the Power BIONICLE Kit,2001,,Bionicle,Bionicle
+K8563-1,Bohrok Swarm Kit,2002,,Bohrok,Bionicle
+K8564-1,Ultimate Bohrok Swarm Kit,2002,12.0,Bionicle,Bionicle
+K8566-1,Toa Nuva Hero Kit,2003,2.0,Toa Nuva,Bionicle
+K8572-1,Toa Nuva Kit,2003,6.0,Toa Nuva,Bionicle
+K8573-1,Bohrok-Kal Kit,2003,2.0,Bohrok-Kal,Bionicle
+K8578-1,Ultimate Bohrok-Kal Kit,2003,6.0,Bohrok-Kal,Bionicle
+K8586-1,Matoran Villagers Kit,2003,6.0,Matoran of Mata Nui,Bionicle
+K8587-1,Rahkshi Set (Panrahk and Kurahk),2003,,Rahkshi,Bionicle
+K8588-1,Ultimate Rahkshi Kit,2003,6.0,Rahkshi,Bionicle
+K8590-1,Rahkshi Kaita Vo Kit,2003,,Rahkshi,Bionicle
+K8591-1,Rahkshi Kit (Panrahk and Vorahk),2003,,Rahkshi,Bionicle
+K8592-1,Rahkshi Kaita Za Kit,2003,3.0,Rahkshi,Bionicle
+K8596-1,Takutanuva Kit,2003,,Titans,Bionicle
+K8603-1,Toa Metru Legends Kit,2004,2.0,Toa Metru,Bionicle
+K8605-1,Toa Metru Kit I,2004,3.0,Toa Metru,Bionicle
+K8606-1,Toa Metru Kit II,2004,3.0,Toa Metru,Bionicle
+k8612-1,Metru Nui Matoran Kit,2004,,Matoran of Metru Nui,Bionicle
+K8614-1,Vahki Kit,2004,,Vahki,Bionicle
+K8615-1,Vahki Enforcers Kit (8614 & 8615),2004,,Vahki,Bionicle
+K8645-1,Slammer Propeller Hotrod,2005,2.0,Power Racers,Racers
+k8647-1,Dual-Engine Truck,2005,2.0,Power Racers,Racers
+K8667-1,Pullback Racer Collection,2006,2.0,Power Racers,Racers
+K8672-1,Ferrari Racing Collection,2006,2.0,Ferrari,Racers
+K8685-1,Phantoka Collection,2008,6.0,Phantoka,Bionicle
+K8688-1,Mistika Collection,2008,6.0,Mistika,Bionicle
+K8725-1,Matoran of Voya Nui Collection (8721 8722 8723 8724 8725 8726),2006,,Matoran of Voya Nui,Bionicle
+K8727-1,Toa Inika Collection (8727 8728 8729 8730 8731 8732),2006,6.0,Toa Inika,Bionicle
+K8741-1,Toa Hordika Deluxe Collection (8736 8737 8738 8739 8740 8741),2005,,Toa Hordika,Bionicle
+K8747-1,Visorak Collection (8742 8743 8744 8745 8746 8747),2005,,Visorak,Bionicle
+K8755-1,Titans Collection (8755 8756 8761),2005,3.0,Titans,Bionicle
+K8761-1,The Shadowed One (LEGO Club Members Exclusive),2005,235.0,Titans,Bionicle
+K8764-1,Warriors of Voya Nui Collection,2006,,Titans,Bionicle
+K8800-1,Vladek's Attack Kit,2004,2.0,Knights Kingdom II,Castle
+K8882-1,Power Functions Train Accessories Pack,2009,6.0,RC Train,Train
+K8900-1,Piraka Collection (8900 8901 8902 8903 8904 8905),2006,6.0,Piraka,Bionicle
+K8915-1,Toa Mahri Collection,2007,,Toa Mahri,Bionicle
+K8916-1,Barraki Collection,2007,6.0,Barraki,Bionicle
+K8924-1,Titans of Mahri Nui Collection,2007,,Warriors,Bionicle
+K8927-1,Mahri Nui Deepsea Collection,2007,3.0,Playsets,Bionicle
+K8929-1,Matoran of Mahri Nui Collection,2007,4.0,Matoran of Mahri Nui,Bionicle
+K8942-1,Ultimate BIONICLE Collection,2008,,Warriors,Bionicle
+K8944-1,Matoran of Light Collection,2008,6.0,Matoran of Light,Bionicle
+K8956-1,Power Miners Collection,2009,,Power Miners,Power Miners
+K8978-1,Bionicle Glatorian Collection,2009,,Glatorian,Bionicle
+K9833-1,Rechargeable Battery Set,2007,2.0,NXT,Mindstorms
+K9833-2,Rechargeable Battery Set (AC Adapter 230V - 10V Transformer),2006,2.0,NXT,Mindstorms
+K9916-1,Robotics Invention System Kit,2003,8.0,RCX,Mindstorms
+kabbasic-1,Kabaya Basic 4-Pack,2000,4.0,Basic,Universal Building Set
+kabbion-1,Kabaya Bionicle 4-Pack (boxed 1417 1418 1419 1420),2001,4.0,Turaga,Bionicle
+kabbion2-1,Va 4-pack Kabaya (contains 1431 1432 1433 1434),2002,4.0,Bohrok Va,Bionicle
+kabcity-1,City 4-Pack,2000,4.0,Town,Town
+kabcreat-1,Creator 4-Pack,2001,4.0,Basic Model,Creator
+kabdino-1,Dino Island 4-Pack,2000,,Dino Island,Adventurers
+kabextreme-1,Kabaya Extreme Team 4-Pack,1999,4.0,Extreme Team,Town
+Kabinsect-1,Insectoids 4-Pack,1999,,Insectoids,Space
+kabkk-1,Knight's Kingdom 4-Pack,2000,4.0,Knights Kingdom I,Castle
+kabmars-1,Life on Mars 4-Pack,2001,4.0,Life On Mars,Space
+kabninja-1,Kabaya Ninja 4-Pack,1999,4.0,Ninja,Ninja
+kaborient-1,Orient Expedition 3-Pack (canned versions of 7422 7423 7424),2003,,Orient Expedition,Adventurers
+kabrace-1,Race 4-Pack,2001,,Race,Town
+kabrobo-1,Kabaya RoboRider 4-Pack,2000,,RoboRiders,Technic
+kabrock-1,Rock Raiders 4-Pack,2000,4.0,Rock Raiders,Rock Raiders
+kabsoccer-1,Kabaya Soccer 3-Pack,2002,,Soccer,Sports
+kabspace-1,Kabaya Space Port 4-Pack,1999,,Space Port,Town
+kabstud-1,Studios 4-Pack,2001,,Studios,Studios
+kabtec-1,Kabaya Technic Vehicle 4-Pack,1999,,Model,Technic
+KB565-1,RIS 2.0 Basics Kit,2004,,RCX,Mindstorms
+KCCHP-1,Coca Cola Harry Potter Gift Set,2002,,Harry Potter,Harry Potter
+KFruit-1,Fruit Set - Hong Kong Lego Show Promotional,2007,8.0,Food & Drink,Creator
+KingofPrussia-1,"LEGO Store Grand Opening Exclusive Set, King of Prussia Mall, PA",2008,,LEGO Brand Store,LEGO Brand Store
+kk2vp1-1,Knights' Kingdom Value Pack 1 (with bonus water bottle),2004,3.0,Knights Kingdom II,Castle
+kk2vp2-1,Knights' Kingdom Value Pack 2 (with bonus water bottle),2004,3.0,Knights Kingdom II,Castle
+kk2vp3-1,Knights' Kingdom Value Pack 3 (with bonus water bottle),2004,3.0,Knights Kingdom II,Castle
+kkchrome-1,Knight's Kingdom Chrome Series (complete set),2000,,Knights Kingdom I,Castle
+KLLCA21-1,Santa with Reindeer and Sleigh (Legoland California),2005,,Holiday,Legoland Parks
+KSB28-1,LEGO BrickMaster Sample Magazine,2008,0.0,Gear,Gear
+KT103-1,Large Train Engine Blue,2001,,My Own Train,Train
+KT104-1,Large Train Engine Green,2001,0.0,My Own Train,Train
+KT105-1,Large Train Engine Black,2001,0.0,My Own Train,Train
+KT106-1,Large Train Engine Brown,2001,,My Own Train,Train
+KT107-1,Large Train Engine Gray,2001,,My Own Train,Train
+KT203-1,Large Train Engine with Tender Blue,2001,0.0,My Own Train,Train
+KT204-1,Large Train Engine with Tender Green,2001,0.0,My Own Train,Train
+KT205-1,Large Train Engine with Tender Black,2001,0.0,My Own Train,Train
+KT206-1,Large Train Engine with Tender Brown,2001,,My Own Train,Train
+KT207-1,Large Train Engine with Tender Gray,2001,,My Own Train,Train
+KT303-1,Small Train Engine Blue,2001,,My Own Train,Train
+KT304-1,Small Train Engine Green,2001,2.0,My Own Train,Train
+KT305-1,Small Train Engine Black,2001,,My Own Train,Train
+KT306-1,Small Train Engine Brown,2001,2.0,My Own Train,Train
+KT307-1,Small Train Engine Gray,2001,2.0,My Own Train,Train
+KT403-1,Small Train Engine with Tender Blue,2001,0.0,My Own Train,Train
+KT404-1,Small Train Engine with Tender Green,2001,0.0,My Own Train,Train
+KT405-1,Small Train Engine with Tender Black,2001,,My Own Train,Train
+KT406-1,Small Train Engine with Tender Brown,2001,,My Own Train,Train
+KT407-1,Small Train Engine with Tender Gray,2001,0.0,My Own Train,Train
+LADYBIRD2-1,The Quest For The Lost City Activity Book,2010,0.0,Gear,Gear
+LBCITYSPACE-1,LEGO City: Space Mission - Activity Book,2011,0.0,Gear,Gear
+LBFIRERESCUE-1,LEGO City: Fire Rescue! - Activity Book,2012,,Gear,Gear
+ldd3-1,LEGO Digital Designer Promo,2009,3.0,Other,Other
+Leeds-1,"LEGO Store Grand Opening Exclusive Set, Leeds, UK",2013,,LEGO Brand Store,LEGO Brand Store
+legobricks-1,Lego Bricks Box,1958,2.0,Basic Set,Classic
+lfv1-1,Le Fleuriste Collector Vase - Rapid Flore Pop Color,2010,,Other,Other
+lfv2-1,Le Fleuriste Collector Vase - Happy,2010,297.0,Other,Other
+lfv3-1,Le Fleuriste Collector Vase - Monceau Fleurs Blue Chic,2010,350.0,Other,Other
+Lightbulb-1,Celebrating Moments That CLICK Light Bulb,2009,,Other,Other
+Lille-1,"LEGO Store Grand Opening Exclusive Set, Euralille, Lille, France",2013,16.0,LEGO Brand Store,LEGO Brand Store
+LIT2009-1,LEGO Inside Tour (LIT) Exclusive 2009 Edition - Ole Kirk's House,2009,,Other,Other
+Liverpool-1,LEGO Store Grand Opening Exclusive Set Liverpool UK,2011,,LEGO Brand Store,LEGO Brand Store
+LLBUS-1,Bus (Legoland Deutschland),2002,,Legoland Parks,Legoland Parks
+llca10-1,Dragon Sculpture (Legoland California),2000,70.0,Legoland Parks,Legoland Parks
+llca12-1,3D Witch (Legoland California),2004,103.0,Holiday,Legoland Parks
+LLCA13-1,Trumpet (Legoland California),2004,178.0,Legoland Parks,Legoland Parks
+llca21-1,Sitting Santa (Legoland California),2005,42.0,Holiday,Legoland Parks
+llca22-1,Santa's Sleigh (Legoland California),2005,76.0,Holiday,Legoland Parks
+llca23-1,Reindeer (Legoland California),2005,,Holiday,Legoland Parks
+LLCA24-1,"Las Vegas Skyline, Pyramid (LLCA Ambassador Pass Exclusive)",2005,,Legoland Parks,Legoland Parks
+LLCA25-1,"Las Vegas Skyline, Eiffel Tower (LLCA Ambassador Pass Exclusive)",2005,151.0,Legoland Parks,Legoland Parks
+LLCA26-1,"Golf Bag, Balls & Clubs (Legoland California)",2006,,Legoland Parks,Legoland Parks
+llca27-1,Legoland Pirate with Parrot (Legoland California),2006,,Pirates,Legoland Parks
+LLCA29-1,Pirate Treasure Chest Bank (LLCA Ambassador Pass Exclusive),2006,215.0,Pirates,Legoland Parks
+LLCA30-1,Pirate Ship Diorama (LLCA Ambassador Pass Exclusive),2006,127.0,Pirates,Legoland Parks
+llca3-1,Pelican Sculpture (Legoland California),2000,,Legoland Parks,Legoland Parks
+LLCA31-1,Tree Frog Sculpture (LLCA Ambassador Pass Exclusive),2007,,Legoland Parks,Legoland Parks
+llca34-1,Sarcophagus (LLCA Ambassador Pass Exclusive),2008,181.0,Legoland Parks,Legoland Parks
+llca35-1,Obelisk (LLCA Ambassador Pass Exclusive),2008,100.0,Legoland Parks,Legoland Parks
+llca4-1,Toy Soldier (Legoland California),2003,,Legoland Parks,Legoland Parks
+LLCA51-1,Legoland California 10th Birthday Cupcake Box (LLCA Ambassador Pass Exclusive),2009,92.0,Legoland Parks,Legoland Parks
+LLCA52-1,Sand Castle - Ambassador Class 2010 (LLCA Ambassador Pass Exclusive),2010,,Legoland Parks,Legoland Parks
+llca7-1,"Holiday Gift Box (Red Box, Yellow Trim With Removable Top) (Legoland California)",2001,108.0,Legoland Parks,Legoland Parks
+llca8-1,LEGO Heart (Legoland California),2004,,Legoland Parks,Legoland Parks
+LLCABR1-1,Hau Mask - Green Brick (Legoland California),2001,,Bionicle,Legoland Parks
+LLCABR2-1,Hau Mask - Blue Brick (Legoland California),2001,168.0,Bionicle,Legoland Parks
+LLCABR3-1,Hau Mask - Red Brick (Legoland California),2001,168.0,Bionicle,Legoland Parks
+LLCAPUM1-1,Build N Buy Pumpkin (Happy) (Legoland California),2002,,Holiday,Legoland Parks
+LLCAPUM2-1,Build N Buy Pumpkin (Sad) (Legoland California),2002,29.0,Holiday,Legoland Parks
+LLKING-1,King (Legoland Deutschland),2003,59.0,Legoland Parks,Legoland Parks
+LLOlli-1,"Dragon Sculpture, Olli the Dragon holding sign (Legoland Deutschland)",2002,,Legoland Parks,Legoland Parks
+LLPlane-1,Airplane [Legoland Deutschland],2002,,Legoland Parks,Legoland Parks
+LLSWAN-1,Swan (Legoland Deutschland),2003,72.0,Legoland Parks,Legoland Parks
+lmg001-1,LEGO Japan Small Duck,2003,,Other,Other
+lmg002-1,LEGO Japan Cat,2004,10.0,Other,Other
+lmg003-1,LEGO Japan Ostrich,2004,10.0,Other,Other
+lmg003-2,LEGO Japan Ostrich Yellow Label Version,2006,10.0,Other,Other
+lmg004-1,LEGO Japan Spinning Top,2004,12.0,Other,Other
+lmg005-1,LEGO Japan Deer,2003,,Other,Other
+lmg006-1,LEGO Japan Dog,2005,13.0,Other,Other
+lmg006-2,LEGO Japan Dog Blue Label Version,2006,,Other,Other
+lmg007-1,LEGO Japan Snake,2005,,Other,Other
+lmg008-1,LEGO Japan Whale,2005,10.0,Other,Other
+lmg009-1,LEGO Japan Snail,2004,,Other,Other
+lmg010-1,LEGO Japan Santa,2005,13.0,Other,Other
+LOC113-1,Ewar,2013,,Legends of Chima,Legends of Chima
+LOC114-1,Grumlo Promo Minifigure,2014,13.0,Legends of Chima,Legends of Chima
+LOC213-1,Razcal Promo Minifigure,2013,,Legends of Chima,Legends of Chima
+LOC2-14,Outland Jump,2014,25.0,Legends of Chima,Legends of Chima
+LOC214-1,Speedorz Ramp,2014,,Legends of Chima,Legends of Chima
+LOC391403-1,"Tripod Cannon, Chi and Axe",2014,,Legends of Chima,Legends of Chima
+LOC391404-1,Worriz,2014,18.0,Legends of Chima,Legends of Chima
+LOC391405-1,Crocodile Hideout,2014,29.0,Legends of Chima,Legends of Chima
+LOC391406-1,Crug,2014,,Legends of Chima,Legends of Chima
+LOC391408-1,Vornon,2014,11.0,Legends of Chima,Legends of Chima
+LOC391409-1,Ice Prison,2014,17.0,Legends of Chima,Legends of Chima
+LOC391410-1,Sykor,2014,11.0,Legends of Chima,Legends of Chima
+LOC391411-1,Ice Cannon,2014,,Legends of Chima,Legends of Chima
+LOC391412-1,Worriz,2014,9.0,Legends of Chima,Legends of Chima
+LOC391501-1,Gorzan Polybag,2015,8.0,Legends of Chima,Legends of Chima
+LOC391502-1,Ice Crossbow,2015,27.0,Legends of Chima,Legends of Chima
+LOC391503-1,Lundor,2015,10.0,Legends of Chima,Legends of Chima
+LOC391504-1,Fire vs Ice Weaponry,2015,38.0,Legends of Chima,Legends of Chima
+LOC391505-1,Iceklaw,2015,,Legends of Chima,Legends of Chima
+LOC391506-1,Fire Catapult,2015,,Legends of Chima,Legends of Chima
+LOC391507-1,Stealthor foil pack,2015,8.0,Legends of Chima,Legends of Chima
+LOC391508-1,Bulkar,2015,,Legends of Chima,Legends of Chima
+LOC471408-1,Lennox,2014,10.0,Legends of Chima,Legends of Chima
+LoneTree-1,"LEGO Store Grand Opening Exclusive Set, Vistas Court, Lone Tree, CO",2011,,LEGO Brand Store,LEGO Brand Store
+lwp01-1,LEGO World Denmark Puzzle Promo,2009,7.0,Other,Other
+lwp02-1,LEGO World Zwolle Puzzle Promo 2009,2009,7.0,Other,Other
+lwp03-1,LEGO World Denmark Puzzle Promo 2010,2010,7.0,Other,Other
+lwp04-1,LEGO World Denmark Puzzle Promo 2011,2011,7.0,Other,Other
+lwp05-1,LEGO World Denmark Puzzle Promo 2012,2012,,Other,Other
+lwp06-1,LEGO World Denmark Puzzle Promo 2013,2013,7.0,Other,Other
+Lynnwood-1,"LEGO Store Grand Opening Exclusive Set, Alderwood Mall, Lynnwood, WA",2012,,LEGO Brand Store,LEGO Brand Store
+Maine-1,Maine Space Grant Consortium Promotional Astronaut Polybag,1999,5.0,Space Port,Town
+makepromo-1,Make and Create Basic Set (Toyfair Nuernberg Promotion),2003,0.0,Basic Set,Creator
+Manchester-1,"LEGO Store Grand Opening Exclusive Set, Manchester, UK",2012,12.0,LEGO Brand Store,LEGO Brand Store
+MAY2013-1,Holocron Droid,2013,,Star Wars,Star Wars
+MFCN-1,Chinese Minifig Collection Volume 1,2009,0.0,Collectible Minifigures,Collectible Minifigures
+MFCN-2,Chinese Minifig Collection Volume 2,2009,27.0,Collectible Minifigures,Collectible Minifigures
+Miami-1,"LEGO Store Grand Opening Exclusive Set, Aventura Mall, Miami, FL",2010,,LEGO Brand Store,LEGO Brand Store
+MiniNXT-1,Mini NXT Brick,2008,3.0,NXT,Mindstorms
+MiniRCX-1,Mini RCX Brick,2008,4.0,RCX,Mindstorms
+MiniTemple-1,Red Temple (Ninjago Mini Training Temple),2017,35.0,Promotional,Promotional
+Minneapolis-1,"LEGO Store Grand Opening Exclusive Set, Mall of America, Bloomington, MN",1992,6.0,LEGO Brand Store,LEGO Brand Store
+Minneapolis-2,"LEGO Store Grand Re-opening Exclusive Set, Mall of America, Bloomington, MN",2010,125.0,LEGO Brand Store,LEGO Brand Store
+MissionViejo-1,LEGO Store Grand Opening Exclusive Set Mission Viejo Mall Mission Viejo CA,2011,,LEGO Brand Store,LEGO Brand Store
+mln09-1,My Lego Network Promo LEGO World 2009,2009,3.0,Other,Other
+MMMB003-1,Monthly Mini Model Build February 2009 - Heart,2009,,Monthly Mini Model Build,LEGO Brand Store
+MMMB009-1,Monthly Mini Model Build June 2009 - Sailing Boat,2009,,Monthly Mini Model Build,LEGO Brand Store
+MMMB010-1,Monthly Mini Model Build July 2009 - US Flag,2009,,Monthly Mini Model Build,LEGO Brand Store
+MMMB023-1,Monthly Mini Model Build April 2010 - Chick,2010,,Monthly Mini Model Build,LEGO Brand Store
+MMMB026-1,Monthly Mini Model Build July 2010 - Watermelon,2010,,Monthly Mini Model Build,LEGO Brand Store
+MMMB0908,Monthly Mini Model Build August 2009 - Lobster,2009,49.0,Monthly Mini Model Build,LEGO Brand Store
+MOMENTS-1,This moments,2015,18.0,Friends,Friends
+MS1032-1,Infrared Receiver Sensor for Mindstorms NXT,2010,0.0,NXT,Mindstorms
+MS1034-1,Compass Sensor for Mindstorms NXT,2006,,NXT,Mindstorms
+MS1038-1,Color Sensor for Mindstorms NXT,2006,1.0,NXT,Mindstorms
+MS1040-1,Accelerometer Sensor for Mindstorms NXT,2007,,NXT,Mindstorms
+MS1042-1,Infrared Seeker for Mindstorms NXT (Version 1),2007,0.0,NXT,Mindstorms
+MS1044-1,Gyroscopic Sensor for Mindstorms NXT,2007,,NXT,Mindstorms
+MS1046-1,Infrared Link Sensor for Mindstorms NXT,2007,,NXT,Mindstorms
+MS1048-1,Mindstorms RF ID Sensor,2008,0.0,NXT,Mindstorms
+MS1049-1,Mindstorms Keyfob Transponder,2008,,NXT,Mindstorms
+MS1060-1,Mindstorms NXT Touch Sensor Multiplexer,2009,0.0,NXT,Mindstorms
+Munich-1,"LEGO Store Grand Opening Exclusive Set, Pasing Arcaden, München, Germany",2013,17.0,LEGO Brand Store,LEGO Brand Store
+MYERNEXO-1,Micro Battle Blaster,2016,18.0,Nexo Knights,Nexo Knights
+MYERNEXO-2,Micro Mecha Horse,2016,24.0,Nexo Knights,Nexo Knights
+NAA1030-1,NXT Angle Sensor,2013,,NXT,Mindstorms
+Nashville-1,"LEGO Store Grand Opening Exclusive Set, Opry Mills, Nashville, TN",2012,15.0,LEGO Brand Store,LEGO Brand Store
+NEO1048-1,EOPD Sensor for Mindstorms NXT (Electro Optical Sensor),2009,0.0,NXT,Mindstorms
+Newark-1,"LEGO Store Grand Opening Exclusive Set, Christiana Mall, Newark, DE",2010,133.0,LEGO Brand Store,LEGO Brand Store
+NEX271606-1,Knight Racer,2016,21.0,Nexo Knights,Nexo Knights
+NEX271607-1,Firecracker Catapult,2016,,Nexo Knights,Nexo Knights
+NEX271608-1,Kid Clay,2016,,Nexo Knights,Nexo Knights
+NEX271609-1,Bat-Gun,2016,,Nexo Knights,Nexo Knights
+NEX271610-1,Mighty Mech Bot,2016,34.0,Nexo Knights,Nexo Knights
+NEX271611-1,Pilot Bot,2016,,Nexo Knights,Nexo Knights
+NEX271712-1,Clay and Training Stand,2017,18.0,Nexo Knights,Nexo Knights
+NEX271714-1,Robin,2017,19.0,Nexo Knights,Nexo Knights
+NEX271715-1,Lance's Micro Limo,2017,34.0,Nexo Knights,Nexo Knights
+NEX271717-1,Rock Speeder,2017,,Nexo Knights,Nexo Knights
+NEX271719-1,Stone Giants' Gun,2017,33.0,Nexo Knights,Nexo Knights
+NIN561609-1,Kai foil pack #2,2016,13.0,Ninjago,Ninjago
+NIN891501-1,Ninjago Kai,2015,9.0,Ninjago,Ninjago
+NIN891503-1,Cole foil pack,2015,,Ninjago,Ninjago
+NIN891505-1,Jay foil pack,2015,8.0,Ninjago,Ninjago
+NIN891506-1,Ming foil pack,2015,8.0,Ninjago,Ninjago
+NIN891507-1,Zane foil pack,2015,,Ninjago,Ninjago
+NIN891508-1,Anacondrai Hideout,2015,24.0,Ninjago,Ninjago
+NIN891610-1,Clouse foil pack,2016,8.0,Ninjago,Ninjago
+NIN891612-1,Sqiffy,2016,8.0,Ninjago,Ninjago
+NIN891614-1,Cyren,2016,,Ninjago,Ninjago
+NIN891615-1,Jay,2016,14.0,Ninjago,Ninjago
+NIN891616-1,Bucko,2016,9.0,Ninjago,Ninjago
+NIN891617-1,Titanium Zane,2016,,Ninjago,Ninjago
+NIN891618-1,Ronin,2016,,Ninjago,Ninjago
+NIN891619-1,Pirate fighter,2016,21.0,Ninjago,Ninjago
+NIN891620-1,Nya foil pack,2016,10.0,Ninjago,Ninjago
+NIN901503-1,Krait foil pack,2015,7.0,Ninjago,Ninjago
+NK271601-1,Lance,2016,,Nexo Knights,Nexo Knights
+NK271602-1,Hover Horse,2016,34.0,Nexo Knights,Nexo Knights
+NK271603-1,Robin And Horse,2016,23.0,Nexo Knights,Nexo Knights
+NK271604-1,Goblin Spiders,2016,28.0,Nexo Knights,Nexo Knights
+NMS1035-1,NXT Magnetic Sensor,2010,1.0,NXT,Mindstorms
+nqstudios-1,Nesquik Studios Promo 3-Pack,2001,3.0,Studios,Studios
+Nuremberg-1,"LEGO Store Grand Opening Exclusive Set, Nuremberg (Nürnberg), Germany",2010,,LEGO Brand Store,LEGO Brand Store
+OklahomaCity-1,"LEGO Store Grand Opening Exclusive Set, Penn Square Mall, Oklahoma City, OK",2009,58.0,LEGO Brand Store,LEGO Brand Store
+Orlando-1,"LEGO Store Grand Opening Exclusive Set, Imagination Center, Orlando, FL",1997,3.0,LEGO Brand Store,LEGO Brand Store
+OrlandPark-1,"LEGO Store Grand Opening Exclusive Set, Orland Park, IL",2009,58.0,LEGO Brand Store,LEGO Brand Store
+OverlandPark-1,"LEGO Store Grand Opening Exclusive Set, Oak Park Mall, Overland Park, KS",2012,,LEGO Brand Store,LEGO Brand Store
+Paramus-1,"LEGO Store Grand Opening Exclusive Set, Paramus, NJ",2009,73.0,LEGO Brand Store,LEGO Brand Store
+Peabody-1,"LEGO Store Grand Opening Exclusive Set, Northshore Mall, Peabody, MA",2012,6.0,LEGO Brand Store,LEGO Brand Store
+pk1062,Lego Road Safety Kit Poster,1981,,Gear,Gear
+Pleasanton-1,LEGO Store Grand Opening Exclusive Set Stoneridge Mall Pleasanton CA,2011,15.0,LEGO Brand Store,LEGO Brand Store
+PS3038-1,LEGO Star Wars: The Complete Saga,2007,0.0,Gear,Gear
+Raleigh-1,"LEGO Store Grand Opening Exclusive Set, Crabtree Valley Mall, Raleigh, NC",2009,,LEGO Brand Store,LEGO Brand Store
+Ramboll-1,Ramboll Oil Platform,2008,,Other,Other
+rrminifigs-1,Rock Raider Minifig Packs 3-Pack,2000,,Rock Raiders,Rock Raiders
+Saarbrucken-1,"LEGO Store Grand Opening Exclusive Set, Saarbrücken, Germany",2012,16.0,LEGO Brand Store,LEGO Brand Store
+Sacramento-1,"LEGO Store Grand Opening Exclusive Set, Arden Fair Mall, Sacramento, CA",2008,79.0,LEGO Brand Store,LEGO Brand Store
+SAMURAI-DROID-1,Samurai droid,2015,32.0,Ninjago,Ninjago
+SanDiego-1,LEGO Store Grand Opening Exclusive Set Fashion Valley San Diego CA,2011,15.0,LEGO Brand Store,LEGO Brand Store
+SDCC2015-1,Throne of Ultron,2015,196.0,Avengers,Super Heroes
+SDCC2015-2,Dagobah Mini-Build,2015,,Star Wars,Star Wars
+SDCC2015-3,Action Comics #1 Superman,2015,145.0,Superman,Super Heroes
+Sheffield-1,"LEGO Store Grand Opening Exclusive Set, Sheffield, UK",2012,14.0,LEGO Brand Store,LEGO Brand Store
+shell98small-1,Shell Town 1998 Promotional (complete set),1998,,Other,Other
+shtown99small-1,Shell Town 1999 Promotional (complete set),1999,6.0,Town,Town
+SoOuest-1,"LEGO Store Grand Opening Exclusive Set, So Ouest, Levallois-Perret, France",2012,15.0,LEGO Brand Store,LEGO Brand Store
+Sphinx-1,Sphinx,2008,,Other,Other
+Stratford-1,"LEGO Store Grand Opening Exclusive Set, Westfield Stratford, UK",2012,,LEGO Brand Store,LEGO Brand Store
+Sunrise-1,"LEGO Store Grand Opening Exclusive Set, Sawgrass Mills, Sunrise, FL",2011,,LEGO Brand Store,LEGO Brand Store
+sw117promo-1,Darth Vader Polybag - 56. International Toy Fair Nuernberg (N├╝rnberg),2005,2.0,Star Wars Episode 3,Star Wars
+sw218promo-1,Darth Vader 10 Year Anniversary Promotional Fig polybag,2009,2.0,Star Wars Episode 4/5/6,Star Wars
+SW911506-1,Snowspeeder,2015,19.0,Star Wars Episode 4/5/6,Star Wars
+SW911508-1,Mini Slave 1,2015,20.0,Mini,Star Wars
+SW911509-1,Imperial Shooter,2015,,Star Wars Rebels,Star Wars
+SW911510-1,Star Destroyer and TIE Fighter foil pack,2015,21.0,Mini,Star Wars
+SW911511-1,Jedi Weapon Stand,2015,16.0,Star Wars,Star Wars
+SW911607-1,Millennium Falcon ,2016,42.0,Star Wars,Star Wars
+SW911608-1,Landspeeder,2016,37.0,Star Wars Episode 4/5/6,Star Wars
+SW911610-1,Probe Droid,2016,20.0,Star Wars,Star Wars
+SW911612-1,Acklay,2016,,Star Wars Episode 2,Star Wars
+SW911616-1,MTT Foil Pack,2016,,Star Wars,Star Wars
+SW911617-1,Palpatine's Shuttle,2016,,Star Wars,Star Wars
+SW911719-1,Kanan Jarrus foilpack,2017,,Star Wars Rebels,Star Wars
+SW911720-1,The Ghost,2017,,Star Wars Rebels,Star Wars
+SW911722-1,TIE Advanced foil pack,2017,26.0,Star Wars,Star Wars
+SW911723-1,Vulture Droid foil pack,2017,,Star Wars Episode 3,Star Wars
+SW911724-1,A-Wing,2017,47.0,Star Wars Rebels,Star Wars
+SW911725-1,Sandcrawler,2017,,Star Wars,Star Wars
+SW911726-1,Imperial Snowtrooper,2017,,Star Wars Episode 4/5/6,Star Wars
+SW911727-1,Rey's Speeder,2017,35.0,Star Wars Episode 7,Star Wars
+SWCOMIC1-1,X-Wing,2015,23.0,Mini,Star Wars
+SWDVDBD-1,The Padawan Menace,2011,0.0,Gear,Gear
+swminifigs-1,Star Wars Minifig Packs 4-Pack,2000,4.0,Star Wars Other,Star Wars
+SWMP-1,Star Wars / M&M Mosaic - Promo Set,2005,,Star Wars Episode 4/5/6,Star Wars
+tech007promo-1,Technic Figure Cyber Person Promotional Polybag - [Toy Fair Nuernberg Promotion 1998],1998,,Competition,Technic
+tf05-1,Lego Toy Fair 2005 Star Wars V.I.P. Gala Set,2005,38.0,Star Wars Episode 3,Star Wars
+tktour-1,Tour De France (complete set),2000,4.0,Town,Town
+TLMPS-1,The LEGO Movie Promotional Set,2014,103.0,The LEGO Movie,The LEGO Movie
+tominifigs-1,Town Minifig Packs 2-Pack,2000,2.0,Town,Town
+Toronto-1,"LEGO Store Grand Opening Exclusive Set, Sherway Square, Toronto, ON, Canada",2011,3.0,LEGO Brand Store,LEGO Brand Store
+Toronto-2,"LEGO Store Grand Opening Exclusive Set, Fairview Mall, Toronto, ON, Canada",2011,,LEGO Brand Store,LEGO Brand Store
+Toronto-3,"LEGO Store Grand Opening Exclusive Set, Yorkdale Mall, Toronto, ON, Canada",2013,15.0,LEGO Brand Store,LEGO Brand Store
+Troy-1,"LEGO Store Grand Opening Exclusive Set, Somerset Collection, Troy, MI",2010,,LEGO Brand Store,LEGO Brand Store
+TRU01-1,Harry Potter Quidditch Tower (TRU Event Exclusive),2002,37.0,Harry Potter,Harry Potter
+TRUBATSIGNAL-1,Batman Bat-Signal,2014,,Batman,Super Heroes
+trucapam-1,Captain America Mosaic,2016,71.0,Promotional,Promotional
+TRUCOGSWORTH-1,Toys 'r Us - Cogsworth,2016,47.0,Other,Other
+TRUFALCON-1,Millennium Falcon,2016,44.0,Star Wars,Star Wars
+TRUFlyCar-1,TRU Emmet's Fly Car,2014,34.0,The LEGO Movie,The LEGO Movie
+TRUFRIENDS-1,Wishing Well,2017,,Friends,Friends
+TRUGHOST-1,Rebel Micro Ghost,2014,42.0,Star Wars Other,Star Wars
+TRUJOKERMECH-1,The Joker Mini Mech Bot,2013,42.0,Batman,Super Heroes
+TRUKAYAK-1,Kayak,2015,,City,Town
+TRULUMIERE-1,Toys 'r Us Lumiere,2016,,Other,Other
+TRUNEXO-1,Micro Rumble Blade,2016,21.0,Nexo Knights,Nexo Knights
+TRUNEXO-2,Micro Chaos Chariot,2016,,Nexo Knights,Nexo Knights
+TRUNINJAGO-1,Micro Shinto Shrine,2015,18.0,Ninjago,Ninjago
+TRUNINJAGO-2,Micro Electromech Robot,2015,28.0,Ninjago,Ninjago
+TRUNINJAGO-3,Micro Kai's Fighter Jet,2015,,Ninjago,Ninjago
+TRUNINJAGO-4,Micro Morro Dragon,2015,29.0,Ninjago,Ninjago
+TRUTIE-1,TIE Fighter,2014,,Star Wars Other,Star Wars
+TRUXWING-1,X-Wing,2014,23.0,Star Wars Other,Star Wars
+TRUXWING-2,Poe's X-Wing Fighter,2015,27.0,Star Wars,Star Wars
+TRUXWINGTIE-1,"TRU X-Wing Fighter & TIE Fighter (May 3, 2014)",2014,2.0,Star Wars Other,Star Wars
+tsuper-1,Technic Super Set,1991,3.0,Race,Technic
+Vancouver-1,"LEGO Store Grand Opening Exclusive Set, Oakridge Centre, Vancouver, BC, Canada",2012,-1.0,LEGO Brand Store,LEGO Brand Store
+Victor-1,"LEGO Store Grand Opening Exclusive Set, Eastview Mall, Victor, NY",2012,,LEGO Brand Store,LEGO Brand Store
+Vienna-1,"LEGO Store Grand Opening Exclusive Set, SCS, Wien, Austria",2013,,LEGO Brand Store,LEGO Brand Store
+VP-1,Ice Planet Co-Pack of 6814 6879 and 6898,1995,3.0,Ice Planet 2002,Space
+VP-10,Star Wars Value Pack with Free LEGO Backpack (K-Mart Australia Exclusive),2003,,Star Wars Other,Star Wars
+VP-11,Star Wars Co-Pack of 7101 7111 and 7131,2000,,Star Wars Episode 1,Star Wars
+VP-12,Star Wars Co-Pack of 7121 and 7151,2000,2.0,Star Wars Episode 1,Star Wars
+VP-13,Launch Command Value Pack - (6336 6516 6614),1995,3.0,Launch Command,Town
+VP-14,Classic Town Value Pack Duopack (6581 6596),1998,,Classic Town,Town
+VP-15,Adventurers Super Value Pack,2000,3.0,Dino Island,Adventurers
+VP-17,Legoland Town Special Offer,1985,0.0,Classic Town,Town
+VP-2,Star Wars Co-Pack of 7110 and 7144,2001,2.0,Star Wars Episode 4/5/6,Star Wars
+VP-3,Star Wars Co-Pack of 7131 and 7151,2000,2.0,Star Wars Episode 1,Star Wars
+VP-4,Star Wars Co-Pack of 7101 7111 and 7171,2000,3.0,Star Wars Episode 1,Star Wars
+VP-5,UFO Value Pack,1997,3.0,UFO,Space
+VP-6,Building Bonanza Value Pack 4886 with 7280 & 7281,2006,,City,Town
+VP-7,Fire Value Pack (6554 6407 6564),1997,,Fire,Town
+VP-8,Star Wars Co-Pack of 7130 and 7150,2000,,Star Wars Episode 4/5/6,Star Wars
+VPorient-1,Orient Expedition Value Pack with LEGO Backpack (K-Mart Australia Exclusive),2003,4.0,Orient Expedition,Adventurers
+vwkit-1,Volkswagen Kit,1959,22.0,Basic Set,Classic
+W098-1,"Watch Set, Classic Blue",2006,,Gear,Gear
+W991526-1,Homeschool Introduction to Simple and Motorized Mechanisms Pack,2009,0.0,Technic,Educational and Dacta
+Watford-1,"LEGO Store Grand Opening Exclusive Set, Watford, UK",2013,,LEGO Brand Store,LEGO Brand Store
+Wauwatosa-1,"LEGO Store Grand Opening Exclusive Set, Mayfair, Wauwatosa, WI",2012,15.0,LEGO Brand Store,LEGO Brand Store
+WHITEHOUSE-1,Micro White House,2015,,Promotional,Promotional
+Wiesbaden-1,"LEGO Store Grand Opening Exclusive Set, Wiesbaden, Germany",2010,146.0,LEGO Brand Store,LEGO Brand Store
+WishingWell-1,Wishing Well [Toys R Us Promo],2013,,Friends,Friends
+wwgp1-1,Wild West Limited Edition Gift Pack,1996,,Cowboys,Western
+,,2017,347.0,,Disney Princess
+,,2016,70.0,,Disney Princess
+,,2016,,,Disney Princess
+,,2017,304.0,,Super Heroes
+,,2017,196.0,,Super Heroes
+,,2016,,,Minecraft
+,,2014,,,Super Heroes
+,,2013,16.0,,Super Heroes
+,,2013,,,Super Heroes
+,,2013,0.0,,Super Heroes
+,,2016,6.0,,Super Heroes
+,,2014,,,Super Heroes
+,,2015,,,Minecraft
+,,2012,458.0,,Minecraft
+,,2016,208.0,,Minecraft
+,,2012,4.0,,Super Heroes
+,,2014,144.0,,Disney Princess
+,,2016,216.0,,Super Heroes
+,,2013,24.0,,Super Heroes
+,,2017,79.0,,Super Heroes
+,,2016,,,Minecraft
+,,2016,,,Super Heroes
+,,2014,,,Disney Princess
+,,2017,8.0,,Super Heroes
+,,2015,,,Super Heroes
+,,2016,49.0,,Super Heroes
+,,2001,298.0,,Harry Potter
+,,2016,173.0,,Disney Princess
+,,2005,177.0,,Harry Potter
+,,2014,,,Super Heroes
+,,2012,24.0,,Super Heroes
+,,2013,,,Super Heroes
+,,2007,651.0,,Super Heroes
+,,2012,,,Super Heroes
+,,2012,208.0,,Super Heroes
+,,2017,,,Super Heroes
+,,2017,448.0,,Super Heroes
+,,2010,153.0,,Harry Potter
+,,2015,2995.0,,Super Heroes
+,,2017,253.0,,Super Heroes
+,,2017,365.0,,Super Heroes
+,,2013,473.0,,Super Heroes
+,,2008,207.0,,Super Heroes
+,,2016,1090.0,,Super Heroes
+,,2014,179.0,,Super Heroes
+,,2017,64.0,,Super Heroes
+,,2010,,,Harry Potter
+,,2016,284.0,,Super Heroes
+,,2017,321.0,,Super Heroes
+,,2016,,,Super Heroes
+,,2017,953.0,,Super Heroes
+,,2017,85.0,,Super Heroes
+,,2013,197.0,,Super Heroes
+,,2017,,,Super Heroes
+,,2004,,,Harry Potter
+,,2017,1052.0,,Super Heroes
+,,2012,89.0,,Super Heroes
+,,2001,,,Harry Potter
+,,2016,,,Super Heroes
+,,2011,,,Harry Potter
+,,2017,5.0,,Super Heroes
+,,2002,93.0,,Harry Potter
+,,2015,,,Super Heroes
+,,2017,,,Super Heroes
+,,2016,85.0,,Super Heroes
+,,2013,119.0,,Super Heroes
+,,2017,,,Super Heroes
+,,2017,454.0,,Minecraft
+,,2012,378.0,,Super Heroes
+,,2014,,,Minecraft
+,,2015,291.0,,Disney Princess
+,,2005,,,Harry Potter
+,,2016,7.0,,Super Heroes
+,,2012,4.0,,Super Heroes
+,,2013,,,Super Heroes
+,,2004,81.0,,Super Heroes
+,,2014,55.0,,Disney Princess
+,,2014,195.0,,Super Heroes
+,,2004,,,Harry Potter
+,,2017,6.0,,Super Heroes
+,,2006,1045.0,,Super Heroes
+,,2003,,,Super Heroes
+,,2004,58.0,,Harry Potter
+,,2002,,,Harry Potter
+,,2013,469.0,,Minecraft
+,,2014,,,Super Heroes
+,,2002,,,Harry Potter
+,,2017,,,Super Heroes
+,,2016,,,Super Heroes
+,,2002,0.0,,Harry Potter
+,,2017,,,Super Heroes
+,,2016,16.0,,Super Heroes
+,,2014,1866.0,,Super Heroes
+,,2013,236.0,,Super Heroes
+,,2003,190.0,,Super Heroes
+,,2008,456.0,,Super Heroes
+,,2014,152.0,,Super Heroes
+,,2017,,,Super Heroes
+,,2016,,,Super Heroes
+,,2017,84.0,,Super Heroes
+,,2017,0.0,,Super Heroes
+,,2012,385.0,,Super Heroes
+,,2017,,,Super Heroes
+,,2015,95.0,,Disney Princess
+,,2004,,,Harry Potter
+,,2004,,,Harry Potter
+,,2013,417.0,,Super Heroes
+,,2014,,,Super Heroes
+,,2011,1.0,,Super Heroes
+,,2017,,,Minecraft
+,,2010,,,Harry Potter
+,,2007,299.0,,Super Heroes
+,,2002,133.0,,Harry Potter
+,,2002,263.0,,Harry Potter
+,,2014,,,Disney Princess
+,,2016,,,Super Heroes
+,,2002,249.0,,Super Heroes
+,,2017,563.0,,Super Heroes
+,,2015,518.0,,Minecraft
+,,2015,,,Super Heroes
+,,2014,236.0,,Super Heroes
+,,2002,7.0,,Harry Potter
+,,2015,,,Super Heroes
+,,2013,91.0,,Super Heroes
+,,2016,,,Minecraft
+,,2013,,,Super Heroes
+,,2017,142.0,,Super Heroes
+,,2016,144.0,,Disney Princess
+,,2016,79.0,,Disney Princess
+,,2016,77.0,,Super Heroes
+,,2017,8.0,,Super Heroes
+,,2004,368.0,,Harry Potter
+,,2013,363.0,,Super Heroes
+,,2015,,,Super Heroes
+,,2004,,,Harry Potter
+,,2001,,,Harry Potter
+,,2006,,,Super Heroes
+,,2016,,,Super Heroes
+,,2017,502.0,,Minecraft
+,,2014,,,Super Heroes
+,,2017,,,Super Heroes
+,,2017,376.0,,Super Heroes
+,,2010,442.0,,Harry Potter
+,,2012,44.0,,Super Heroes
+,,2002,,,Harry Potter
+,,2004,485.0,,Super Heroes
+,,2016,561.0,,Super Heroes
+,,2017,,,Super Heroes
+,,2014,,,Minecraft
+,,2006,,,Super Heroes
+,,2017,,,Minecraft
+,,2017,8.0,,Super Heroes
+,,2003,,,Harry Potter
diff --git a/Data Explorartion/Lego Analysis/parent_themes.csv b/Data Explorartion/Lego Analysis/parent_themes.csv
new file mode 100644
index 0000000..eeea3ef
--- /dev/null
+++ b/Data Explorartion/Lego Analysis/parent_themes.csv
@@ -0,0 +1,112 @@
+id,name,is_licensed
+1,Technic,False
+22,Creator,False
+50,Town,False
+112,Racers,False
+126,Space,False
+147,Pirates,False
+155,Modular Buildings,False
+158,Star Wars,True
+186,Castle,False
+204,Designer Sets,False
+206,Seasonal,False
+233,Train,False
+246,Harry Potter,True
+252,Architecture,False
+254,Bulk Bricks,False
+258,Mindstorms,False
+263,Pirates of the Caribbean,True
+264,Indiana Jones,True
+269,Cars,True
+270,Ben 10,True
+271,Prince of Persia,True
+272,SpongeBob SquarePants,True
+273,Studios,False
+275,Toy Story,True
+276,Sculptures,False
+278,Model Team,False
+279,4 Juniors,False
+296,Adventurers,False
+301,Other,False
+302,Agents,False
+304,Alpha Team,False
+307,Aquazone,False
+315,Atlantis,False
+317,Avatar,True
+318,Belville,False
+324,Bionicle,False
+363,Boat,False
+364,Building Set with People,False
+365,Classic,False
+384,Dino 2010,False
+385,Dino Attack,False
+386,Dinosaurs,False
+387,Discovery,False
+388,Disney's Mickey Mouse,True
+389,Exo-Force,False
+390,Fabuland,False
+397,Factory,False
+398,FIRST LEGO League,False
+399,Freestyle,False
+400,Hero Factory,False
+404,Hobby Sets,False
+405,Homemaker,False
+406,Inventor,False
+407,Island Xtreme Stunts,False
+408,LEGO Brand Store,False
+411,Legoland,False
+425,Legoland Parks,False
+432,Master Building Academy,False
+433,Minitalia,False
+434,Ninja,False
+435,Ninjago,False
+437,Pharaoh's Quest,False
+438,Power Functions,False
+439,Power Miners,False
+440,Primo,False
+441,Quatro,False
+442,Rock Raiders,False
+443,Service Packs,False
+458,Sports,False
+463,Spybiotics,False
+464,Time Cruisers,False
+465,Universal Building Set,False
+474,Vikings,False
+475,Western,False
+478,X-Pod,False
+480,Znap,False
+481,Dino,False
+482,Super Heroes,True
+494,Friends,False
+497,Books,False
+500,Clikits,False
+501,Gear,False
+504,Duplo,False
+507,Educational and Dacta,False
+535,Collectible Minifigures,False
+558,Monster Fighters,False
+559,Value Packs,False
+560,Universe,False
+561,The Hobbit and Lord of the Rings,True
+570,Teenage Mutant Ninja Turtles,True
+571,Legends of Chima,False
+575,The Lone Ranger,True
+576,LEGO Ideas and CUUSOO,False
+577,Minecraft,True
+578,The LEGO Movie,False
+579,Disney Princess,True
+580,Mixels,False
+590,Fusion,False
+591,Juniors,False
+598,Promotional,False
+599,LEGO Exclusive,False
+600,Elves,False
+601,Speed Champions,False
+602,Jurassic World,True
+603,Scooby-Doo,True
+604,Dimensions,False
+605,Nexo Knights,False
+606,Angry Birds,True
+607,Ghostbusters,True
+608,Disney,True
+610,Brickheadz,False
diff --git a/Data Explorartion/Lego Analysis/sets.csv b/Data Explorartion/Lego Analysis/sets.csv
new file mode 100644
index 0000000..d53f36e
--- /dev/null
+++ b/Data Explorartion/Lego Analysis/sets.csv
@@ -0,0 +1,11867 @@
+set_num,name,year,theme_id,num_parts
+00-1,Weetabix Castle,1970,414,471
+0011-2,Town Mini-Figures,1978,84,12
+0011-3,Castle 2 for 1 Bonus Offer,1987,199,2
+0012-1,Space Mini-Figures,1979,143,12
+0013-1,Space Mini-Figures,1979,143,12
+0014-1,Space Mini-Figures,1979,143,12
+0015-1,Space Mini-Figures,1979,143,18
+0016-1,Castle Mini Figures,1978,186,15
+00-2,Weetabix Promotional House 1,1976,413,147
+00-3,Weetabix Promotional House 2,1976,413,149
+00-4,Weetabix Promotional Windmill,1976,413,126
+005-1,Basic Building Set in Cardboard,1965,366,35
+00-6,Special Offer,1985,67,3
+00-7,Weetabix Promotional Lego Village,1976,413,3
+010-1,Basic Building Set in Cardboard,1965,366,57
+010-3,Basic Building Set,1968,366,77
+011-1,Basic Building Set,1968,366,145
+022-1,Basic Building Set,1968,366,110
+03093-1,The Race to Build It Board Game,1999,502,70
+033-2,Basic Building Set,1968,366,177
+044-1,Basic Building Set,1968,366,225
+055-2,Basic Building Set,1968,366,256
+066-1,Basic Building Set,1968,366,407
+080-1,Basic Building Set with Train,1967,366,710
+088-1,Super Set,1969,469,615
+10000-1,Guarded Inn,2001,186,256
+10001-1,Metroliner,2001,233,785
+10002-1,Railroad Club Car,2001,233,272
+10003-1,1 x 2 Sand Red Bricks,2001,254,100
+10004-1,2 x 2 Sand Red Bricks,2001,254,100
+10005-1,2 x 4 Sand Red Bricks,2001,254,50
+10006-1,1 x 6 Sand Red Bricks,2001,254,50
+10007-1,2 x 4 Sand Red Ridge Roof Tiles Steep Slope,2001,254,25
+10008-1,2 x 4 Roof Tile Sand Red,2001,254,50
+10009-1,Assorted Blue Bricks,2001,254,62
+100-1,4.5V Motor with Wheels (Small Version),1966,243,16
+10010-1,Assorted Yellow Bricks,2003,254,63
+10011-1,Assorted Blue Plates,2001,254,42
+10012-1,Assorted Yellow Plates,2001,254,42
+10013-1,Open Freight Wagon,2001,238,121
+10014-1,Caboose,2001,238,170
+10015-1,Passenger Wagon,2001,238,194
+10016-1,Tanker,2001,238,128
+10017-1,Hopper Wagon,2001,238,228
+10018-1,Darth Maul,2001,158,1868
+10019-1,Rebel Blockade Runner - UCS,2001,174,1747
+100-2,4.5V Motor with Wheels (Large Version),1966,243,27
+10020-1,"Santa Fe Super Chief, NOT the Limited Edition",2002,236,427
+10020-2,"Santa Fe Super Chief, Limited Edition",2002,236,433
+10021-1,U.S.S. Constellation,2003,404,974
+10022-1,"Santa Fe Cars - Set II (dining, observation, or sleeping car)",2002,237,410
+10023-1,Master Builder Set,2002,324,112
+10024-1,Red Baron,2002,276,669
+10025-1,Santa Fe Cars - Set I (mail or baggage car),2002,237,325
+10026-1,Naboo Starfighter - UCS,2002,172,187
+10027-1,Train Engine Shed,2003,239,670
+10029-1,Lunar Lander,2003,387,468
+10030-1,Imperial Star Destroyer - UCS,2002,174,3115
+10036-1,Pizza To Go,2002,75,150
+10037-1,Breezeway Cafe,2002,75,194
+10039-1,Black Falcon's Fortress,2002,186,431
+10040-1,Black Seas Barracuda,2002,147,914
+10041-1,"Main Street, Reissue",2003,85,639
+10042-1,American Flag,2003,206,35
+10043-1,2x2 Electrical Plate,2002,254,1
+10044-1,Windows and Doors,2002,254,44
+10045-1,Pillars and Beams,2002,254,13
+10046-1,Brown Tiles,2002,254,100
+10047-1,Light Gray Arches,2002,254,36
+10048-1,Small Wheels and Axles,2002,254,61
+10049-1,Large Wheels and Axles,2002,254,31
+10050-1,Gray Fences,2002,254,34
+10051-1,Transparent Bricks,2002,254,50
+10053-1,Black Slopes 33,2003,254,44
+10054-1,Black Slopes 33 3 x 2 and 3 x 4,2003,254,68
+10055-1,Black Slopes 33 3 x 1 and 3 x 3,2003,254,50
+10056-1,White Plates 2 x n,2002,254,56
+10057-1,Black Plates 2 x n,2002,254,56
+10058-1,Red Plates 2 x n,2002,254,56
+10059-1,Dark Green Plates 2 x n,2002,254,56
+10060-1,Light Gray Plates 2 x n,2002,254,56
+10061-1,Black Plates 1 x n,2002,254,84
+10062-1,Red Plates 1 x n,2002,254,84
+10063-1,Dark Green Plates 1 x n,2002,254,84
+10064-1,Light Gray Plates 1 x n,2002,254,84
+10065-1,White Plates 1 x n,2002,254,84
+10066-1,Castle Accessories,2002,255,41
+10067-1,Mini-Fig Headgear,2002,254,53
+10068-1,Santa Claus,2002,227,39
+10069-1,Christmas Tree,2002,227,33
+10070-1,Reindeer,2002,227,26
+10071-1,Mr. Bunny,2003,229,25
+10072-1,TECHNIC Beams,2003,256,56
+10073-1,Bushes,2003,256,130
+10074-1,Cross Axles,2003,256,68
+10075-1,Spider-Man Action Pack,2002,488,25
+10076-1,TECHNIC Gear Wheels,2002,256,38
+10077-1,TECHNIC Motor,2003,256,55
+10078-1,Train Connection Wire,2003,257,1
+10079-1,Snowman,2003,227,42
+10080-1,Angel,2003,227,33
+10081-1,Birthday Pack Heart,2004,500,70
+10082-1,Birthday Pack Daisy,2004,500,70
+10083-1,Birthday Pack Star,2004,500,70
+10090-1,Turkey,2003,231,54
+10106-1,Snowflake,2006,227,107
+101-1,4.5V Battery Case,1969,243,1
+10111-1,Foliferous Tree,2001,254,10
+10112-1,Bush,2001,254,25
+10113-1,Cypress Trees,2001,254,5
+10114-1,2 x 2 Sand Red Roof Tiles,2001,254,100
+10115-1,Jumper Bricks,2001,254,80
+10116-1,Accessories Heart,2004,500,50
+10117-1,Accessories Daisy,2004,500,50
+10118-1,Accessories Star,2004,500,50
+10121-1,NBA Basketball Teams,2003,459,16
+10123-1,Cloud City,2003,169,707
+10124-1,Wright Flyer,2003,276,663
+10127-1,NHL Action Set with Stickers,2003,461,56
+10128-1,Train Level Crossing,2003,239,326
+10129-1,Rebel Snowspeeder - UCS,2003,174,1456
+101-3,4.5V Battery Case,1966,243,1
+10131-1,TIE Fighter Collection,2004,169,688
+10132-1,Motorized Hogwarts Express,2004,246,693
+10133-1,Burlington Northern Santa Fe Locomotive,2004,236,400
+10134-1,Y-wing Attack Starfighter - UCS,2004,174,1489
+10143-1,Death Star II,2005,174,3460
+10144-1,Sandcrawler,2005,169,1679
+10145-1,Assorted Light Gray Bricks,2004,254,124
+10146-1,Assorted Dark Gray Bricks,2004,254,62
+10147-1,Assorted Brown Bricks,2004,254,62
+10148-1,Assorted Light Gray Plates,2004,254,84
+10149-1,Assorted Dark Gray Plates,2004,254,42
+10150-1,Assorted Brown Plates,2004,254,42
+10151-1,Hot Rod,2004,278,420
+10152-1,Maersk Sealand Container Ship 2004 Edition,2004,276,982
+10152-2,Maersk Sealand Container Ship 2005 Edition,2005,276,982
+10152-3,Maersk Line Container Ship 2006 Edition,2006,276,982
+10153-1,Electric Train Motor 9V (My Own Train),2002,244,3
+10155-1,Maersk Line Container Ship 2010 Edition,2010,276,984
+10156-1,LEGO Truck,2004,85,105
+10157-1,High Speed Train Locomotive,2004,239,134
+10158-1,High Speed Train Car,2004,239,151
+10159-1,City Airport -City Logo Box,2004,53,913
+10159-2,City Airport -Full Size Image Box,2004,68,913
+10160-1,Black Ridge Roof Tiles,2004,254,48
+10161-1,Black Roof Tiles,2004,254,76
+10162-1,Red Ridge Tiles,2004,254,48
+10163-1,Red Roof Tiles,2004,254,76
+10165-1,Elf Boy,2004,227,27
+10166-1,Elf Girl,2004,227,31
+10167-1,Brickmaster Kit (with Digital Designer CD),2004,301,182
+10168-1,Mrs. Bunny,2005,229,64
+10169-1,Chicken & Chicks,2005,229,60
+10170-1,TTX Intermodal Double-Stack Car,2005,236,365
+10173-1,Holiday Train,2006,236,969
+10174-1,Imperial AT-ST - UCS,2006,174,1070
+10175-1,Vader's TIE Advanced - UCS,2006,174,1211
+10176-1,Royal King's Castle,2006,197,871
+10177-1,Boeing 787 Dreamliner,2006,276,1196
+10178-1,Motorized Walking AT-AT,2007,169,1137
+10179-1,Millennium Falcon - UCS,2007,174,5195
+10181-1,Eiffel Tower 1:300 Scale,2007,276,3428
+10182-1,Cafe Corner,2007,155,2058
+10183-1,Hobby Train,2007,397,1080
+10184-1,Town Plan,2008,104,2017
+10185-1,Green Grocer,2008,155,2358
+10186-1,General Grievous,2008,173,1084
+10187-1,Volkswagen Beetle (VW Beetle),2008,276,1625
+10188-1,Death Star,2008,174,3807
+10189-1,Taj Mahal,2008,276,5922
+10190-1,Market Street,2007,155,1250
+10191-1,Star Justice,2008,397,884
+10192-1,Space Skulls,2008,397,956
+10193-1,Medieval Market Village,2009,193,1616
+10194-1,Emerald Night,2009,240,1089
+10195-1,Republic Dropship with AT-OT,2009,165,1757
+10196-1,Grand Carousel,2009,276,3260
+10197-1,Fire Brigade,2009,155,2236
+10198-1,Tantive IV,2009,169,1408
+10199-1,Winter Toy Shop,2009,227,815
+10-2,Universal Building Set,1976,469,129
+10200-1,Custom Car Garage,2008,397,893
+10201-1,Takutanuva,2003,347,3
+10202-1,Ultimate Dume (Limited Edition with Exclusive Mask Of Power),2004,347,6
+10202-2,Ultimate Dume,2004,347,3
+10203-1,Voporak,2005,347,3
+10204-1,Vezon & Kardas,2006,347,3
+10205-1,Locomotive,2002,238,231
+102-1,4.5V Motor Set,1968,243,24
+10210-1,Imperial Flagship,2010,153,1656
+10211-1,Grand Emporium,2010,155,2186
+10212-1,Imperial Shuttle - UCS,2010,174,2502
+10213-1,Shuttle Adventure,2010,276,1203
+10213sup-1,Supplemental Pack for Shuttle Adventure Set 10213,2010,443,29
+10214-1,Tower Bridge,2010,276,4295
+10215-1,Obi-Wan's Jedi Starfighter - UCS,2010,175,675
+10216-1,Winter Village Bakery,2010,227,686
+10217-1,Diagon Alley,2011,246,2031
+10218-1,Pet Shop,2011,155,2034
+10219-1,Maersk Container Train,2011,240,1232
+10220-1,Volkswagen T1 Camper Van,2011,276,1333
+10221-1,Super Star Destroyer,2011,174,3151
+10222-1,Winter Village Post Office,2011,227,821
+10223-1,Kingdoms Joust,2012,196,1574
+10224-1,Town Hall,2012,155,2771
+10225-1,R2-D2,2012,171,2130
+10226-1,Sopwith Camel,2012,276,877
+10227-1,B-wing Starfighter,2012,174,1485
+10228-1,Haunted House,2012,558,2062
+10229-1,Winter Village Cottage,2012,227,1490
+10230-1,Mini Modulars,2012,156,1358
+10231-1,Shuttle Expedition,2011,276,1229
+10232-1,Palace Cinema,2013,155,2193
+10233-1,Horizon Express,2013,240,1349
+10234-1,Sydney Opera House,2013,276,2988
+10235-1,Winter Village Market [Initial Release],2013,227,1259
+10236-1,Ewok Village,2013,169,2023
+10237-1,The Tower of Orthanc,2013,568,2360
+10240-1,Red Five X-Wing Starfighter,2013,174,1573
+10241-1,Maersk Line Triple-E,2014,38,1515
+10242-1,Mini Cooper,2014,22,1074
+10242-2,Mini Cooper,2015,22,1076
+10243-1,Parisian Restaurant,2014,155,2469
+10244-1,Fairground Mixer,2014,22,1743
+10245-1,Santa’s Workshop,2014,228,882
+1024601-1,Adventurers Value Pack (TRU Exclusive),2001,297,3
+10246-1,Detective’s Office,2015,155,2261
+10247-1,Ferris Wheel,2015,22,2463
+10248-1,Ferrari F40,2015,22,1157
+10249-1,Winter Toy Shop,2015,227,895
+10250-1,Year Of The Snake,2013,22,244
+10251-1,Brick Bank,2016,155,2383
+10252-1,Volkswagen Beetle,2016,22,1166
+10253-1,Big Ben,2016,43,4166
+10254-1,Winter Holiday Train,2016,227,737
+10255-1,Assembly Square,2017,155,4009
+10257-1,Carousel,2017,22,2669
+10258-1,London Bus,2017,22,1685
+10285-1,Compass Sensor for Mindstorms NXT,2011,259,1
+10287-1,Intelligent NXT Brick (Black),2009,259,1
+1029-1,Milk Delivery Truck - Tine,1999,75,90
+102A-1,Front-End Loader,1970,416,64
+102A-2,Front-End Loader,1970,416,56
+10-3,Locomotive Wheels,1977,456,8
+1030-1,TECHNIC I: Simple Machines Set,1985,1,190
+103-1,4.5V Motor Set with Rubber Tracks,1969,473,24
+1031-1,Building Cards - 1030,1983,532,20
+1032-1,TECHNIC II Set {4.5v},1985,1,279
+1033-1,Building Cards - 1032,1985,532,20
+1034-1,Teachers Resource Set,1985,532,1534
+1038-1,ERBIE the Robo-Car,1985,1,120
+1039-1,Manual Control Set 1,1986,1,39
+104-1,Replacement 4.5V Motor,1970,243,1
+1045-2,Educational LEGO Building Set,1976,511,683
+1049-1,Ships - 247 elements and 1 poster,1985,510,238
+10500-1,Horse Stable,2013,504,44
+10501-1,Zoo friends,2013,504,5
+10504-1,My First Circus,2013,504,62
+10505-1,Play House,2013,504,83
+10506-1,Train Accessory Set,2013,504,24
+10507-1,My First Train Set,2013,504,52
+10508-1,Deluxe Train Set,2013,504,134
+10509-1,Dusty and Chug,2013,504,16
+105-1,Canada Post Truck,1984,81,65
+10510-1,Ripslinger's Air Race,2013,504,40
+10511-1,Skipper's Flight School,2013,504,49
+10512-1,Jake's Treasure Hunt,2013,504,22
+10513-1,Never Land Hideout,2013,504,37
+10514-1,Jake's Pirate Ship Bucky,2013,504,56
+10515-1,Ariel's Undersea Castle,2013,504,39
+10516-1,Ariel's Magical Boat Ride,2012,504,29
+10517-1,My First Garden,2013,504,37
+10518-1,My First Construction Site,2013,504,47
+105-2,Building Set,1973,469,150
+10520-1,Big Front Loader,2013,504,12
+10521-1,Baby Calf,2014,504,9
+10522-1,Farm Animals,2014,504,12
+10524-1,Farm Tractor,2014,504,29
+10525-1,Big Farm,2014,504,121
+10526-1,Peter Pan's Visit,2014,504,39
+10527-1,Ambulance,2014,504,14
+10528-1,School Bus,2014,504,26
+10529-1,Truck,2014,504,16
+1053-1,Community Buildings,1984,533,895
+10531-1,Mickey Mouse and Friends,2012,504,65
+10532-1,My First Police Set,2014,504,39
+10538-1,Fire and Rescue Team,2014,506,30
+10539-1,Beach Racing,2014,504,36
+1054-1,Stena Line Ferry,1999,471,211
+10542-1,Sleeping Beauty's Fairy Tale,2014,579,55
+10543-1,Superman™ Rescue,2014,504,19
+10544-1,The Joker Challenge,2014,504,40
+10545-1,Batcave Adventure,2014,504,59
+10546-1,My First Shop,2014,504,39
+10550-1,Circus Transport,2013,504,9
+10552-1,Creative Cars,2013,504,42
+10553-1,Toddler Build and Play Cubes,2013,505,17
+10554-1,Toddler Build and Pull Along,2013,505,15
+10555-1,Creative Bucket,2013,505,65
+10557-1,Giant Tower,2013,504,200
+10558-1,Number Train,2013,504,31
+1056-1,Basic School Pack - 773 elements with teacher's manual,1985,534,785
+10561-1,Toddler Starter Building Set,2013,505,37
+10565-1,LEGO® DUPLO® Creative Suitcase,2014,504,135
+10566-1,Creative Picnic,2014,504,52
+10567-1,Toddler Build and Boat Fun,2014,504,18
+10568-1,Knight Tournament,2014,504,16
+10569-1,Treasure Attack,2014,504,46
+10570-1,LEGO® DUPLO® All-in-One-Gift-Set,2014,504,30
+10571-1,All-in-One-Pink-Box-of-Fun,2014,504,65
+10572-1,All-in-One-Box-of-Fun,2014,504,65
+10573-1,Creative Animals,2014,504,25
+10574-1,Creative Ice Cream,2014,504,24
+10575-1,Duplo Creative Building Cube,2014,504,75
+10576-1,Zoo Care,2014,504,9
+10577-1,Big Royal Castle,2014,504,135
+10579-1,Clubhouse Café,2014,504,16
+10580-1,Deluxe Box of Fun,2014,504,95
+10581-1,Forest: Ducks,2015,504,13
+10582-1,Forest: Animals,2015,504,39
+10583-1,Forest: Fishing Trip,2015,504,30
+10584-1,Forest: Park,2015,504,105
+10585-1,Mom and Baby,2015,504,13
+10586-1,Ice Cream Truck,2015,504,11
+10587-1,Café,2015,504,51
+10589-1,Rally Car,2015,504,13
+10590-1,Airport,2015,504,29
+10591-1,Fire Boat,2015,504,19
+10592-1,Fire Truck,2015,504,26
+10593-1,Fire Station,2015,504,104
+10594-1,Sofia the First™ Royal Stable,2015,504,38
+10595-1,Sofia the First™ Royal Castle,2015,504,87
+10596-1,Disney Princess™ Collection,2015,504,63
+10597-1,Mickey & Minnie Birthday Parade,2015,504,24
+10599-1,Batman Adventure,2015,504,46
+10600-1,Disney • Pixar Cars™ Classic Race,2015,506,29
+1060-1,Road Plates and Signs,1981,533,30
+10601-1,Delivery Vehicle,2015,504,19
+10602-1,Camping,2015,504,37
+10603-1,My First Bus,2015,504,17
+10604-1,Jake and the Never Land Pirates Treasure Island,2015,504,25
+10605-1,Doc McStuffins Rosie the Ambulance,2015,504,16
+10606-1,Doc McStuffins Backyard Clinic,2015,504,39
+10607-1,Spider-Man Web-Bike Workshop,2015,504,13
+10608-1,Spider-Man Spider Truck Adventure,2015,504,28
+106-1,UNICEF Van,1985,79,59
+1061-1,Single Disk Pack,2000,20,1
+10615-1,My First Tractor,2015,504,12
+10616-1,My First Playhouse,2015,504,25
+10617-1,My First Farm,2015,504,26
+10618-1,LEGO® DUPLO® Creative Building Box,2015,504,69
+1062-1,{Town Vehicles},1980,533,158
+10622-1,Large Creative Box,2015,504,193
+10623-1,Basic Bricks – Large,2015,505,0
+1063-1,Community Workers,1985,533,169
+1064-1,Dacta Buildings,1981,533,419
+1065-1,House Accessories - 182 elements,1985,534,196
+10654-1,XL Creative Brick Box,2016,365,1599
+10655-1,Monster Trucks,2013,37,197
+10656-1,My First LEGO Princess,2013,22,88
+10657-1,My First LEGO Set,2013,37,148
+10659-1,Blue Suitcase,2013,37,152
+10660-1,Pink Suitcase,2013,37,157
+1066-1,36 Little People + Accessories,1982,533,174
+10661-1,My First LEGO Fire Station,2013,22,90
+10662-1,LEGO Creative Bucket,2013,37,607
+10663-1,LEGO Creative Chest,2013,22,607
+10664-1,Creative Tower,2013,22,1599
+10665-1,Spider-Man: Spider-Car Pursuit,2014,591,55
+10666-1,Digger,2014,591,75
+10667-1,Construction,2014,591,159
+10668-1,The Princess Play Castle,2014,591,149
+10669-1,Turtle Lair,2014,591,107
+1067-1,Community Vehicles,1988,507,251
+10671-1,Fire Emergency,2014,591,123
+10672-1,Batman: Defend the Batcave,2014,591,150
+10673-1,Race Car Rally,2014,591,349
+10674-1,Pony Farm,2014,591,305
+10675-1,Police – The Big Escape,2014,591,146
+10676-1,Knights’ Castle,2014,591,479
+10677-1,Beach Excursion,2015,591,74
+10679-1,Pirate Treasure Hunt,2015,591,57
+10680-1,Garbage Truck,2015,591,99
+1068-1,Air Patrol,1999,87,20
+10681-1,Creative Building Cube,2014,37,599
+10682-1,Creative Suitcase,2014,37,1016
+10683-1,Road Work Truck,2015,591,132
+10684-1,Supermarket Suitcase,2015,591,132
+10685-1,Fire Suitcase,2015,591,113
+10686-1,Family House,2015,591,226
+10687-1,Spider-Man™ Hideout,2015,591,137
+1069-1,Speedboat,1999,77,22
+10692-1,Creative Bricks,2015,366,220
+10693-1,Creative Supplement,2015,366,302
+10693-1-s1,Rocket,2015,365,12
+10694-1,Creative Supplement Bright,2015,366,302
+10695-1,Creative Building Box,2015,366,579
+10696-1,Medium Creative Brick Box,2015,366,483
+10697-1,XXXL Box,2015,365,1499
+10698-1,Large Creative Brick Box,2015,366,789
+10699-1,Sand Baseplate,2015,365,1
+10700-1,Green Baseplate,2015,365,1
+1070-1,Stunt Flyer,1999,87,20
+10701-1,Gray Baseplate,2015,365,1
+10702-1,Creative Building Set,2016,365,582
+10703-1,Creative Builder Box,2017,365,498
+10704-1,Creative Box,2017,365,900
+10705-1,Creative Building Basket,2016,366,999
+10706-1,Blue Creative Box,2017,365,78
+10707-1,Red Creative Box,2017,365,55
+10708-1,Green Creative Box,2017,365,66
+10709-1,Orange Creative Box,2017,365,60
+107-1,4.5V Motor Set,1976,473,31
+107-2,Canada Post Mail Truck,1985,81,138
+10720-1,Police Helicopter Chase,2016,591,63
+10721-1,Iron Man vs Loki,2016,591,66
+10722-1,Snake Showdown,2016,591,92
+10723-1,Ariel's Dolphin Carriage,2016,593,70
+10724-1,Batman & Superman vs. Lex Luthor,2016,482,164
+10725-1,Lost Temple,2016,591,171
+10726-1,Stephanie's Horse Carriage,2016,496,58
+10727-1,Emma's Ice Cream Truck,2016,494,136
+10728-1,Mia's Vet Clinic,2016,494,182
+10729-1,Cinderella's Carriage,2016,591,116
+10730-1,Lightning McQueen Speed Launcher,2017,615,47
+10731-1,Cruz Ramirez Race Simulator,2017,615,59
+10732-1,Guido and Luigi's Pit Stop,2017,615,75
+10733-1,Mater's Junkyard,2017,615,62
+10734-1,Demolition Site,2017,591,175
+10735-1,Police Truck Chase,2017,591,90
+10736-1,Anna & Elsa's Frozen Playground,2017,591,94
+10737-1,Batman vs. Mr. Freeze,2017,591,63
+10738-1,Snow White's Forest Cottage,2017,593,67
+10739-1,Shark Attack,2017,597,94
+10740-1,Fire Patrol Suitcase,2017,591,110
+10742-1,Willy's Butte Speed Training,2017,615,95
+10743-1,Smokey's Garage,2017,615,124
+10744-1,Thunder Hollow Crazy 8 Race,2017,615,191
+10746-1,Mia's Farm Suitcase,2017,595,104
+10747-1,Andrea and Stephanie's Beach Holiday,2017,591,143
+1075-1,LEGO People Supplementary Set,1980,511,256
+1076-1,Advent Calendar 1999,1999,207,228
+1076-10,Advent Calendar 1999 (Day 9) Fire Engine,1999,217,10
+1076-11,Advent Calendar 1999 (Day 10) Santa Minifig,1999,217,5
+1076-12,Advent Calendar 1999 (Day 11) Dog,1999,217,8
+1076-13,Advent Calendar 1999 (Day 12) Hippo,1999,217,9
+1076-14,Advent Calendar 1999 (Day 13) Hovercraft,1999,217,10
+1076-15,Advent Calendar 1999 (Day 14) Penguin,1999,217,8
+1076-16,Advent Calendar 1999 (Day 15) Elf,1999,217,12
+1076-17,Advent Calendar 1999 (Day 16) Seaplane,1999,217,10
+1076-18,Advent Calendar 1999 (Day 17) Gentleman,1999,217,10
+1076-19,Advent Calendar 1999 (Day 18) Elephant,1999,217,10
+1076-2,Advent Calendar 1999 (Day 1) Plane,1999,217,11
+1076-20,Advent Calendar 1999 (Day 19) Sea Plane,1999,217,8
+1076-21,Advent Calendar 1999 (Day 20) Cow,1999,217,10
+1076-22,Advent Calendar 1999 (Day 21) Police Car,1999,217,11
+1076-23,Advent Calendar 1999 (Day 22) Dog with Red Hat,1999,217,12
+1076-24,Advent Calendar 1999 (Day 23) Police Helicopter,1999,217,10
+1076-25,Advent Calendar 1999 (Day 24) Santa,1999,217,11
+1076-3,Advent Calendar 1999 (Day 2) Snowman,1999,217,11
+1076-4,Advent Calendar 1999 (Day 3) Speedboat,1999,217,7
+1076-5,Advent Calendar 1999 (Day 4) Girl,1999,217,8
+1076-6,Advent Calendar 1999 (Day 5) Sailboat,1999,217,9
+1076-7,Advent Calendar 1999 (Day 6) Reindeer,1999,217,12
+1076-8,Advent Calendar 1999 (Day 7) Plane,1999,217,10
+1076-9,Advent Calendar 1999 (Day 8) Girl,1999,217,8
+1077-1,Supplementary Set,1976,528,170
+10801-1,Baby Animals,2016,504,13
+10802-1,Savanna,2016,504,15
+10803-1,Arctic,2016,504,34
+10804-1,Jungle,2016,504,86
+10805-1,Around the World,2016,504,148
+10806-1,Horses,2016,504,20
+10807-1,Horse Trailer,2016,504,15
+10808-1,Little Plane,2016,504,13
+10809-1,Police Patrol,2017,504,15
+108-1,Battery Box,1976,243,1
+10810-1,Push Train,2016,504,46
+10811-1,Backhoe Loader,2017,504,19
+10812-1,Truck & Tracked Excavator,2017,504,26
+10813-1,Big Construction Site,2016,504,50
+10814-1,Tow Truck Set,2016,504,26
+10815,My First Rocket,2016,504,18
+10816-1,My First Cars and Trucks,2016,504,36
+10817-1,DUPLO Creative Chest,2016,504,70
+10818-1,My First Truck,2016,504,29
+10819-1,My First Garden,2016,504,25
+10820-1,"Lego Duplo Creative Building Basket, Multi Color",2016,504,110
+10822-1,Sofia the First Magical Carriage,2016,504,30
+10823-1,Batwing Adventure,2017,504,27
+10824-1,Miles' Space Adventures,2017,504,23
+10825-1,Miles' Exo-Flex Suit,2016,504,37
+10826-1,Miles' Stellosphere Hangar,2017,504,44
+10827-1,Mickey and Friends Beach House,2016,504,48
+10828-1,Doc McStuffins Pet Vet Care,2016,504,30
+10829-1,Mickey's Workshop,2016,504,18
+10830-1,Minnie's Cafe,2016,504,27
+1083-1,Supplementary Pack,1986,534,106
+10831-1,My First Caterpillar,2016,504,19
+10832-1,Birthday Picnic,2017,504,19
+10833-1,Preschool,2017,504,39
+10834-1,Pizzeria,2017,504,57
+10835-1,Family House,2017,504,68
+10836-1,Town Square,2017,504,97
+10837-1,Santa's Winter Holiday,2017,504,45
+10838-1,Family Pets,2017,504,15
+10839-1,Shooting Gallery,2017,504,32
+10840-1,Big Fair,2017,504,106
+10841-1,Fun Family Fair,2017,504,61
+10843-1,Mickey Racer,2017,504,14
+10844-1,Minnie Mouse Bow-tique,2017,504,68
+10845-1,My First Carousel,2017,504,24
+10847-1,My First Number Train,2017,504,21
+10848-1,My First Bricks,2017,504,80
+10849-1,My First Plane,2017,504,10
+10850-1,My First Cakes,2017,504,8
+10851-1,My First Bus,2017,504,6
+10852-1,My First Bird,2017,504,7
+10855-1,Cinderella s Magical Castle,2017,504,56
+1088-1,Road Burner,1999,87,25
+1089-1,Lego Basic Figures - 24 elements,1985,534,24
+1090-1,TECHNIC Control I,1986,1,397
+1092-1,TECHNIC Control II,1986,1,467
+10937-1,Arkham Asylum Breakout,2012,484,1619
+1094-1,Johnny Thunder,1999,297,13
+1095-1,Super Sub,1999,311,24
+1096-1,Race Buggy,1997,82,23
+1097-1,Res-Q Runner,1999,92,18
+1098-1,Hang Glider,1998,87,19
+1099-1,Ninja Blaster,1999,434,24
+1-10,Mini-Wheel Model Maker No. 1,1971,423,88
+1100-1,Sky Pirates,2001,68,110
+110-1,Universal Building Set,1977,469,129
+1101-1,Replacement 4.5V Motor,1977,443,1
+1102-1,Motor Bushes,1977,456,4
+1103-1,Battery Box,1977,443,1
+1103-2,DNA Student Set,2008,517,521
+1104-1,Battery Cables (75cm),1977,443,2
+1105-1,Crawler Tracks,1977,443,2
+1106-1,Battery Tender,1977,456,2
+1106-2,Basic Building Set,1999,470,413
+1107-1,Signal and Direction-Change Switch,1977,456,4
+1108-1,Magnetic Couplings,1977,456,4
+1109-1,Magnetic Couplings for Railway Car,1977,456,4
+1-11,Basic Souvenir Box,1981,469,36
+1110-1,Train Wheels,1977,456,8
+111-1,Universal Building Set,1977,469,173
+1111-1,Rubber Rims for Locomotive Wheels,1977,456,8
+111-2,Starter Train Set without Motor,1966,235,119
+1112-1,Train Sliding Wheel Blocks,1977,456,2
+1113-1,Motor Frame and Couplers,1977,443,5
+1114-1,Motor Frame,1977,443,1
+1115-1,4.5V Lighting Brick (2 x 2),1977,443,1
+1116-1,"Chain Links, Small",1977,443,25
+1118-1,"Boat Weight, Red",1977,443,1
+1119-1,Locomotive Piston Assemblies,1977,456,6
+11-2,Small Pre-School Basic Set,1973,433,31
+1120-1,Tires (42 mm),1977,443,2
+112-1,Universal Building Set,1977,469,200
+1121-1,"Propellers, Wheels and Rotor Unit",1977,443,15
+112-2,Locomotive with Motor,1966,235,74
+1122-1,Hinges,1977,443,3
+1123-1,"Ball and Socket Couplings, Articulated Joint",1977,443,8
+1124-1,Digger Bucket,1977,443,3
+1125-1,Crane Grab,1977,443,3
+1126-1,"Jack Complete Assembly, Blue",1983,443,1
+1127-1,Santa,1999,227,39
+1128-1,Santa on Skis,1997,227,21
+1129-1,Storage Cloth (Spread Bag),1980,473,1
+1129-2,Santa on Reindeer,1999,227,34
+11-3,Locomotive Traction Tires,1977,456,8
+1130-1,Storage Folder for Building Instructions (16 Internal Pockets),1980,443,1
+113-1,Universal Building Set,1977,469,293
+1131-1,Tires (42 mm) and Hubs,1981,453,4
+113-2,Motorized Train Set,1966,235,344
+1132-1,Hinges,1981,443,8
+1133-1,Brick Hinges,1981,443,8
+1134-1,Battery Wagon,1981,456,2
+1135-1,"Battery Cable Kit: 12 Connectors, 3m Cable",1981,443,13
+1135-2,"Battery Cable Kit: 16 Connectors, 3m Cable",1981,443,17
+1135-3,"Battery Cable Kit: 20 Connectors, 3m Cable",1981,443,21
+1136-1,"Buffers, Magnetic Couplers",1981,456,6
+1137-1,Train Couplings,1981,456,4
+1138-1,Replacement Rubber Wheel Treads for Trains,1981,456,8
+1139-1,Motor-Mount Plate with Magnetic Couplers,1981,456,5
+1140-1,12V Light Bricks,1981,443,2
+114-1,Universal Building Set,1977,469,390
+1141-1,Wheel Bricks with Small Red Train Wheels,1981,456,2
+114-2,Small Train Set,1966,235,88
+1142-1,Wheel Bricks with Small Black Train-Wheels,1981,456,2
+1143-1,Wheel Bricks with Large Red Train Wheels,1981,456,2
+1144-1,Train Baseplate,1981,456,1
+1145-1,Bogie Plate,1981,456,1
+1146-1,"Pushrods, Cylinder Housings",1981,456,6
+1147-1,"Light Prisms & Holder, Red/Yellow Light Covers",1981,456,7
+1148-1,Differential,1981,453,5
+1149-1,Air Police,2002,100,24
+1149-2,Bulldozer Chainlinks,1982,453,52
+1150-1,Replacement Motor 12V,1977,443,1
+115-1,Building Set,1973,469,190
+1151-1,Train Power Pick-Up Blocks,1977,456,2
+115-2,Starter Train Set with Motor,1966,235,132
+1152-1,Electric Wire,1977,456,2
+1154-1,Battery Control Unit,1986,453,1
+1160-1,"TECHNIC Pneumatic Tubing, 40cm +100cm",1985,453,2
+116-1,Starter Train Set with Motor,1967,235,365
+1161-1,TECHNIC Pneumatic Pump Cylinder 48mm,1985,453,1
+116-2,Deluxe Motorized Train Set,1968,235,362
+1162-1,TECHNIC Pneumatic Piston Cylinder 48mm,1985,453,1
+1163-1,TECHNIC Pneumatic Piston Cylinder 60mm,1985,453,1
+1164-1,TECHNIC Pneumatic 2 Way Valve and Nonreturn Valve,1985,453,2
+1168-1,Battery Box,1986,1,1
+1169-1,Bogie Plates,1986,456,2
+1170-1,Replacement Train Battery Tender,1986,456,2
+117-1,Locomotive without Motor,1967,235,99
+1171-1,Lighting Brick with Red and Blue Globes,1986,443,5
+1172-1,Colored Globes,1986,443,5
+1174-1,Motorhome for Basic Motor 4.5V/Train Motor 12V,1986,443,2
+1175-1,4.5v TECHNIC Motor,1982,453,1
+1176-1,Gear Racks and Turntables,1978,453,6
+1177-1,Santa In Truck with Polar Bear,2000,227,26
+1178-1,"Siren, Black",1986,443,1
+1179-1,Replacement Space Siren,1986,443,1
+1180-1,Space Port Moon Buggy,1999,93,25
+118-1,Electronic Train,1968,235,103
+1181-1,Space Port Spacecraft,1999,93,23
+118-2,Small Train Set,1968,235,117
+1182-1,Adventurers Raft,1999,297,18
+118-3,Motorized Freight or Passenger Train (Sears Exclusive),1969,235,419
+1183-1,Mummy and Cart,1999,297,17
+1184-1,Cart,1999,434,24
+1185-1,Raft,1999,434,25
+1186-1,Cart,1999,434,25
+1187-1,Glider,1999,434,23
+1188-1,Fire Formula,1999,87,38
+1189-1,Rocket Boat,1999,87,30
+1190-1,Retro Buggy,1999,87,90
+11905-1,DK Star Wars Brickmaster: Battle For The Stolen Crystals,2013,497,189
+11908-1,Build Your Own Adventure with Liza Mini-Doll and Touring Car,2015,494,77
+11909-1,Lego Ninjago: Build Your Own Adventure,2015,435,74
+119-1,Super Train Set,1968,235,401
+11910-1,Micro-Scale Space Cruiser,2015,126,102
+1191-1,Try Bird,1999,87,34
+11911-1,LEGO City: Build Your Own Adventure,2016,52,99
+11912-1,LEGO Star Wars: Build Your Own Adventure,2016,158,73
+1194-1,Classic Building Table,1999,470,408
+1195-1,Alien Encounter,2001,135,42
+1196-1,Biker with Bicycle,2000,458,7
+1197-1,Telekom Race Cyclist and Television Motorbike,2000,458,30
+1197-2,Crown Gears,1981,453,2
+1198-1,Service Team - 2 Bikers with Service Tools,2000,458,76
+1199-1,Winning Team,2000,458,110
+11995-1,Hero Recon Team,2011,400,0
+1200-1,"LEGO Town Plan Board, Large Plastic",1955,372,1
+1200-2,"LEGO Town Plan Board, Small Plastic",1956,372,1
+1200M-1,LEGO Town Plan Wooden Board,1957,372,1
+120-1,Complete Freight Train Set with Tipper Trucks,1969,235,163
+1202-1,racer polybag,2001,125,1
+1203-1,"Turntables (4 x 4), Turntables (2 x 2)",1985,443,8
+1204-1,"Fences, Red and Black",1984,443,10
+120438-1,Basic Building Set,1985,469,176
+1205-1,Keys for Wind-Up Motor,1982,443,2
+1206-1,"Round Bricks (2 x 2), White",1982,443,10
+1207-1,"Turntables (4 x 4), Red",1982,443,2
+1208-1,"Inverted Slope Bricks, Assorted, Red",1982,443,16
+1209-1,Fences and Gates,1982,443,10
+12-1,Blue Space Elements,1981,452,8
+1210-1,Winch Block and Hook Assembly,1982,443,3
+1210-2,Small Store Set,1955,372,30
+121-1,Roadster,1979,390,23
+1211-1,Space Stands and Brackets,1982,443,8
+1211-2,Small House Set,1955,372,19
+1212-1,"Rocket Tops, Black",1982,443,6
+1212-2,Small House - Left Set,1955,372,21
+1213-1,Space Radar Disks,1982,452,5
+1213-2,Small House - Right Set,1955,372,23
+1214-1,Upper Part of Motorhome for 4.5V/12V Trainmotor,1984,456,1
+1214-2,Windows and Doors,1955,371,24
+1215-1,Train Motor 4.5V Type II Lower Housing,1981,456,1
+1215-2,2 x 8 & 2 x 10 Bricks,1955,371,20
+1216-1,Semaphores with Feet,1982,456,8
+1216-2,4 x 4 Corner Bricks,1955,371,20
+1217-1,Yellow Girder Beams & Plates,1982,453,20
+1217-2,2 x 4 Bricks,1955,371,52
+1218-1,Blue Girder Beams & Plates,1982,453,20
+1218-2,2 x 3 Bricks,1955,371,60
+1219-1,TECHNIC Beams & Plates [Red],1982,453,20
+1219-2,2 x 2 Bricks,1955,371,80
+1220-1,Black Girder Beams & Plates,1982,453,20
+1220-2,1 x 2 Bricks,1955,371,104
+122-1,Loco and Tender,1969,235,96
+1221-1,TECHNIC beams - yellow,1982,453,8
+1221-2,1 x 1 Bricks,1955,371,160
+1222-1,TECHNIC beams - blue,1982,453,8
+1222-2,1 x 1 Round Bricks,1955,371,200
+1223-1,TECHNIC beams - black,1982,453,8
+1223-2,2 x 2 & 2 x 4 Curved Bricks,1955,371,14
+1223-3,2 x 2 Curved Bricks,1957,371,100
+1224-1,TECHNIC Beams [Red],1982,453,8
+1224.1-1,8 Danish Named Beams,1955,371,8
+1224-2,8 Named Beams,1955,371,8
+1224A-1,1 x 6 and 1 x 8 Bricks,1955,371,36
+1225-1,Assortment of Axles,1982,453,32
+1225-2,Mixed Plates Parts Pack,1955,371,12
+1226-1,Tractor Tires & Hubs,1982,453,12
+1226-2,6 x 8 & 2 x 8 Plates,1956,371,4
+1227-1,Gear Wheel Assortment,1982,453,15
+1227-2,4 x 8 & 2 x 8 Plates,1956,371,5
+1228-1,Differential Gear Housing,1982,453,28
+1228-2,4 x 8 Curved & 2 x 8 Plates,1956,371,5
+1229-1,TECHNIC Chainlinks,1982,453,70
+12-3,Wheel Bearings for Locomotives,1977,456,2
+1230-1,TECHNIC Bulldozer Chainlinks,1982,453,54
+1230-2,Windows and Door without Glass,1955,371,7
+123-1,Passenger Coach,1969,235,98
+1231-1,X-Large Tires & Hubs,1982,453,4
+1231-2,"Windows and Door with Glass, Red",1956,371,10
+1231-3,"Windows and Door with Glass, White",1956,371,10
+1232-1,Toggle Joints & Connectors,1982,453,46
+1233-1,Axle Assortment,1984,453,34
+1233-2,Light Masts,1958,371,4
+1234-1,Gear Wheel Assortment,1984,453,21
+1234-3,"Replacement Gearbox for Electric, Motor 4.5V/12V Type II 12 x 4 x 3 1/3",1983,443,1
+1235-1,Differential Gear Housing,1984,453,19
+1235-2,Garage Plate and Door,1955,371,3
+1236-1,TECHNIC wheels with hubs,1984,453,4
+1236-2,Garage,1955,372,59
+1236-3,12V Technic Motor,1979,453,1
+1237-1,Honda Promotional Set,2001,14,55
+1239-1,Subzero,2001,125,4
+1239-2,Remote Control for Electric Points,1985,456,8
+1240-1,"Hinges and Tilted Bearings, Light Gray",1986,443,16
+1240-2,8 Road Signs,1955,371,8
+124-1,Goods Wagon,1969,235,56
+1241-1,Digger Bucket Assembly,1985,443,4
+1241-2,8 Road Signs,1955,371,8
+1242-1,Crane Grab and Winch,1986,443,4
+1242-2,International Flags,1957,371,5
+1242D-1,5 Danish Flags,1957,371,5
+1243-1,Hinges and Couplings,1986,443,9
+1244-1,Runway Plates,1986,443,2
+1245-1,T- and Intersection Plates,1986,443,2
+1245-2,Lighting Device Pack,1957,371,3
+1246-1,Helicopter,1999,50,26
+1247-1,Patrol Car,1999,50,32
+1247-2,Esso Pumps/Sign,1955,371,2
+1248-1,Fire Boat,1999,50,24
+1248-2,Painted Trees and Bushes,1955,371,6
+1249-1,Tri-motorbike,1999,60,17
+1250-1,Dragster,1999,91,24
+125-1,Tipping Wagon,1969,235,20
+1251-1,Go-Cart,1999,91,25
+125-2,Building Set,1974,469,234
+1252-1,Shell Tanker,1999,99,106
+1253-1,Shell Car Transporter,1999,99,101
+1254-1,Shell Select Shop,1999,99,164
+1255-1,Shell Car Wash,1999,99,136
+1256-1,Shell Petrol Pump,1999,99,156
+1257-1,Trike Buggy,1999,13,30
+1258-1,Propellor Buggy,1999,11,29
+1259-1,Motorbike,1999,13,28
+1260-1,Car,1999,12,26
+1260-2,1:87 Twenty Four Models,1957,368,24
+126-1,Steam Locomotive (Push),1970,235,60
+1263-1,Easter Bunny,2000,229,29
+1264-1,Easter Chicks,2000,229,29
+1265-1,Moon Buggy,1999,93,25
+1266-1,Space Probe,1999,93,23
+1267-1,Shock Absorbers,1985,453,4
+1268-1,Bike Blaster,1999,13,28
+1269-1,White Ninja,1999,434,23
+1270-2,Trial Size Bag - Chromika,2005,37,16
+127-1,Train Set,1969,235,366
+1271-1,Jungle Surprise,1999,299,33
+1271-2,Traffic Police Set,1956,372,6
+1272-1,Blue Racer,2000,91,23
+1273-1,Red Four Wheel Driver,2000,91,20
+1274-1,Light Hover,2000,442,25
+1275-1,{Rock Saw Vehicle},2000,442,22
+1276-1,Helicopter Transport,2000,442,22
+1277-1,Drill Craft,2000,442,27
+1278-1,Johnny Thunder & Baby T,2000,298,23
+1279-1,Aeroplane,2000,298,21
+1280-1,Microcopter,2000,298,28
+128-1,Taxi Station,1979,390,33
+1281-1,Aeroplane,2000,298,25
+128-2,Mobile Crane (Train Base),1972,235,23
+1282-1,Blue Racer,2000,91,23
+128-3,Mobile Crane (Plate Base),1971,235,38
+1283-1,Red Four Wheel Driver,2000,91,20
+1284-1,Green Buggy,2000,91,23
+1285-1,Yellow Tiger,2001,91,23
+1286-1,King Leo's Cart,2000,197,22
+1287-1,Crossbows,2000,197,16
+1288-1,Fire Cart,2000,197,24
+1289-1,Catapult,2000,197,23
+1290-1,Kabaya Promotional Set: Red (Volcano Climber) RoboRider,2000,16,35
+1291-1,Power Bike,2000,16,32
+1292-1,Kabaya Promotional Set: White (Ice Explorer) RoboRider,2000,16,33
+1293-1,Kabaya Promotional Set: Yellow/Green (Swamp Craft) RoboRider,2000,16,25
+1294-1,Fire Helicopter,2000,50,31
+1295-1,Water Rider,2000,87,30
+1296-1,Land Scooper,2000,50,30
+1297-1,Speed Patroller,2000,50,34
+1298-1,Advent Calendar 1998 Classic Basic,1998,212,24
+1298-10,Advent Calendar 1998 Classic Basic (Day 9) Whale,1998,221,9
+1298-11,Advent Calendar 1998 Classic Basic (Day 10) Steamboat,1998,221,12
+1298-12,Advent Calendar 1998 Classic Basic (Day 11) Boat,1998,221,8
+1298-13,Advent Calendar 1998 Classic Basic (Day 12) Airplane,1998,221,12
+1298-14,Advent Calendar 1998 Classic Basic (Day 13) Santa,1998,221,5
+1298-15,Advent Calendar 1998 Classic Basic (Day 14) Airplane,1998,221,9
+1298-16,Advent Calendar 1998 Classic Basic (Day 15) Green Elf,1998,221,9
+1298-17,Advent Calendar 1998 Classic Basic (Day 16) Boat,1998,221,8
+1298-18,Advent Calendar 1998 Classic Basic (Day 17) Mouse,1998,221,9
+1298-19,Advent Calendar 1998 Classic Basic (Day 18) Blue Elf,1998,221,10
+1298-2,Advent Calendar 1998 Classic Basic (Day 1) Airplane,1998,221,10
+1298-20,Advent Calendar 1998 Classic Basic (Day 19) Boat,1998,221,9
+1298-21,Advent Calendar 1998 Classic Basic (Day 20) Helicopter,1998,221,11
+1298-22,Advent Calendar 1998 Classic Basic (Day 21) Red Elf,1998,221,9
+1298-23,Advent Calendar 1998 Classic Basic (Day 22) Police Boat,1998,221,9
+1298-24,Advent Calendar 1998 Classic Basic (Day 23) Truck,1998,221,10
+1298-25,Advent Calendar 1998 Classic Basic (Day 24) Airplane,1998,221,10
+1298-3,Advent Calendar 1998 Classic Basic (Day 2) Santa,1998,221,5
+1298-4,Advent Calendar 1998 Classic Basic (Day 3) Boat,1998,221,9
+1298-5,Advent Calendar 1998 Classic Basic (Day 4) Boat,1998,221,10
+1298-6,Advent Calendar 1998 Classic Basic (Day 5) Sailboat,1998,221,10
+1298-7,Advent Calendar 1998 Classic Basic (Day 6) Airplane,1998,221,10
+1298-8,Advent Calendar 1998 Classic Basic (Day 7) Helicopter,1998,221,8
+1298-9,Advent Calendar 1998 Classic Basic (Day 8) Airplane,1998,221,9
+1300-1,Lego Mosaik Set (Small),1955,370,47
+130-1,Wagon with Double Tippers,1972,235,20
+1306-1,VW Garage,1957,372,45
+1307-1,VW Auto Showroom,1957,372,51
+1308-1,Fire Station,1957,372,109
+1309-1,Church,1957,372,150
+13-1,Gray Space Elements,1981,452,10
+1310-1,ESSO Filling Station,1956,372,96
+131-1,Passenger Coach,1972,235,66
+1314-1,Stop bush / Small pulley,1987,1,210
+1315-1,Piston Rod,1987,1,50
+1316-1,Connector peg,1987,1,150
+1317-1,TECHNIC Chainlinks,1987,1,350
+1318-1,Gears Small,1987,1,68
+1319-1,Gears Large,1987,1,22
+13-2,Large Pre-School Basic Set,1973,433,92
+1320-1,Differential and Bevel Gears,1987,1,32
+132-1,Cottage,1979,390,115
+1321-1,Worm Gear and Racks,1987,1,22
+132-2,Port Crane and Flat Waggon,1972,235,58
+1322-1,"Pulleys, Tires, and Steering Wheels",1987,1,32
+1323-1,Hubs and Tyres,1985,524,24
+1324-1,Rubber Bands and String,1985,1,101
+1325-1,Assorted Spare Axles,1987,1,68
+1326-1,"Spare Axles, 12L",1987,1,28
+1327-1,Red/Black Plates,1985,524,48
+1328-1,Red/Black Plates,1985,524,32
+1329-1,Red/Black Plates,1985,525,28
+13-3,Train Motor Plate with Buffers,1977,456,5
+1330-1,Red/Black Plates,1985,525,20
+133-1,Locomotive (Push),1975,235,81
+1331-1,Red/Blue Bricks,1985,525,88
+1332-1,Red/Blue Beams,1985,525,18
+1333-1,Red/Blue Beams,1985,525,20
+1334-1,Motors (4.5V),1985,525,2
+1335-1,Battery Boxes (4.5v),1985,525,2
+1336-1,Pole Reverser Switches for Battery Box,1985,1,2
+1337-1,Connecting Leads,1985,1,18
+1338-1,Angles Swivels Turntables,1985,524,72
+1339-1,TECHNIC parts,1987,1,20
+1340-1,Weight Bricks,1987,1,18
+134-1,Mobile Crane and Wagon,1975,235,55
+1341-1,Building Plates Green,1985,524,3
+134-2,Service Station,1979,390,84
+1342-1,Electric Switches and Tiles,1986,525,7
+1343-1,Optosensors (4.5V) and Discs,1986,525,4
+1344-1,Light Bricks (4.5V),1986,524,12
+1345-1,"Pinions, Connectors, and Axles",1986,1,52
+1346-1,Touch Sensors,1987,1,2
+1347-1,Leads (4.5V) Spirals,1987,524,42
+1348-1,Base Plates Grey,1987,524,3
+1349-1,Steven Spielberg Moviemaker Set,2000,273,447
+135-1,Building Set,1973,469,338
+1351-1,Movie Backdrop Studio,2001,273,211
+1352-1,Explosion Studio,2000,273,237
+1353-1,Car Stunt Studio,2001,273,168
+1354-1,Dino Head Attack,2000,273,95
+1355-1,Temple of Gloom,2000,273,58
+1356-1,Stuntman Catapult,2001,273,29
+1357-1,Cameraman,2001,273,21
+1360-1,Director's Copter,2001,273,22
+136-1,Tanker Waggon (Shell),1975,235,81
+1361-1,Camera Car,2001,273,20
+1362-1,Air Boat,2001,273,24
+1363-1,Stunt Go-Cart,2001,273,25
+1370-1,Raptor Attack Studio,2001,274,157
+137-1,Hospital,1979,391,104
+1371-1,Spinosaurus Attack Studio,2001,274,186
+137-2,Passenger Sleeping Car,1975,235,81
+1374-1,Green Goblin,2002,488,59
+1376-1,Spider-Man Action Studio,2002,488,249
+1380-1,Werewolf Ambush,2002,273,114
+138-1,Electronic Train,1969,235,107
+1381-1,Vampire's Crypt,2002,273,171
+1382-1,Scary Laboratory,2002,273,500
+1383-1,Curse of the Pharaoh,2002,273,51
+1385-1,Clikits Bracelet Sample Set,2003,500,13
+1386-1,Clikits Bracelet Sample Set,2004,500,13
+1388-1,Huki [McDonald's Promo Set #1],2001,355,8
+1389-1,Onepu [McDonald's Promo Set #2],2001,355,8
+1390-1,Maku [McDonald's Promo Set #3],2001,355,8
+139-1,Electronic Control Unit (Forward/Backward - Stop),1969,243,13
+1391-1,Jala [McDonald's Promo Set #4],2001,355,8
+1392-1,Kongu [McDonald's Promo Set #5],2001,355,8
+1393-1,Matoro [McDonald's Promo Set #6],2001,355,8
+139A-1,Electronic Control Unit (Forward - Stop),1969,243,13
+140-1,Town Hall,1979,390,135
+140-2,Bricks'n Motor Set,1969,469,96
+14-1,Space Mini Figures,1982,452,24
+1411-1,Pirate's Treasure Hunt (Quaker Oats promo),2001,273,35
+1413-1,Rover,2001,135,29
+1414-1,Double Hover (Kabaya Promotional),2001,135,21
+1415-1,Jet Scooter,2001,135,24
+1416-1,Worker Robot,2001,135,30
+1417-1,Vakama,2001,356,28
+1417-2,Vakama (bagged),2003,356,28
+1418-1,Matau,2001,356,25
+1419-1,Nokama (Kabaya Promotional),2001,356,27
+1420-1,Nuju,2001,356,29
+1421-1,Director's Copter (Kabaya Promotional),2001,273,22
+1422-1,Camera Cart (Kabaya Promotional),2001,273,20
+1423-1,Air Boat (Kabaya Promotional),2001,273,24
+1424-1,Stunt Go-Kart (Kabaya Promotional),2001,273,25
+1425-1,Dash Jet Sub,2002,305,23
+1426-1,Cam Wing Diver,2002,305,21
+1427-1,Ogel Marine Slizer,2002,305,21
+1428-1,Small Soccer Set 1 (Kabaya Box),2002,462,24
+1428-2,Small Soccer Set 1 (Polybag),2002,462,20
+1429-1,Small Soccer Set 2 (Kabaya Box),2002,462,19
+1429-2,Small Soccer Set 2 (Polybag),2002,462,19
+14-3,Small house set,1973,433,0
+1430-1,Small Soccer Set 3 (Kabaya Box),2002,462,12
+1430-2,Small Soccer Set 3 (Polybag),2002,462,13
+1431-1,Tahnok Va (Kabaya Promotional),2002,329,27
+1432-1,Nuhvok Va (Kabaya Promotional),2002,329,26
+1433-1,Gahlok Va (Kabaya Promotional),2002,329,26
+1434-1,Lehvak Va (Kabaya Promotional),2002,329,25
+1435-1,Super Glider (Kabaya Promotional),2002,282,7
+1436-1,Ultralight Flyer (Kabaya Promotional),2002,282,16
+1437-1,Turbo Chopper (Kabaya Promotional),2002,282,13
+14-4,Train Motor Plate with Coupler,1977,456,1
+1441-1,Fikou (Tree-Spider),2003,324,13
+145-1,Building Set,1974,469,412
+146-1,Level Crossing,1976,235,68
+1461-1,Turbo Force,1992,82,31
+1462-1,Galactic Scout,1992,129,23
+1463-1,Treasure Cart,1992,190,24
+1464-1,Pirate Lookout,1992,148,17
+1467-1,Shell Race Car,1987,82,46
+1468-1,Shell Tanker,1987,76,39
+1469-1,Helicopter,1986,466,39
+1470-1,Shell Station,1987,76,32
+147-1,Refrigerated Car with Forklift,1976,235,112
+1472-1,Holiday Home,1987,69,359
+1474-1,Basic Building Set with Gift Item,1991,467,69
+1475-1,Airport Security Squad,1991,68,128
+1477-1,{Red Race Car Number 3},1991,82,39
+1478-1,Mobile Satellite Up-Link,1991,136,31
+1479-1,2-Pilot Craft,1991,129,34
+1480-1,King's Catapult,1991,190,33
+148-1,Central Station,1975,235,292
+1481-1,Desert Island,1991,148,24
+1484-1,Weetabix Town House,1987,69,215
+1489-1,Mobile Car Crane,1989,85,175
+1490-1,Town Bank,1988,85,195
+149-1,Fuel Refinery,1976,235,340
+1491-1,Dual Defender,1992,188,49
+1492-1,Battle Cove,1992,148,27
+1495-1,Basic Building Set Trial Size,1988,467,26
+1496-1,Rally Car,1987,82,52
+1497-1,Rally and Pitcrew Team,1987,82,124
+1498-1,Spy-Bot,1987,130,63
+1499-1,Twin Starfire,1987,130,89
+150-1,Straight Track,1966,243,25
+1506-1,Town Value Pack,1986,67,2
+1507-1,Space Value Pack,1986,130,2
+1509-1,Town Value Pack,1987,82,2
+15-1,Castle Mini Figures,1984,447,38
+1510-1,Space Value Pack,1987,130,2
+151-1,Curved Track,1966,243,25
+1512-1,Denken mit Lego (Thinking with Lego 250pcs),1972,517,250
+1512-2,Basic Set with Storage Case,1985,467,103
+1513-1,Denken mit Lego (Thinking with Lego 900pcs),1972,517,901
+1513-2,Basic Building Set Gift Item,1989,467,71
+1514-1,Basic Building Set Trial Size,1988,467,46
+1515-1,Town Value Pack,1989,82,2
+1516-1,Theater with Play-Scenes,1987,390,21
+1517-1,Race Car,1989,82,32
+1518-1,Race Car Repair,1989,82,79
+15-2,Large House Set,1973,433,157
+1520-1,Basic Set with Storage Case,1985,467,215
+1520-2,Town 2 for 1 Bonus Offer,1990,67,2
+152-1,Two Train Wagons,1966,235,22
+1521-1,Basic Building Set Trial Size,1989,467,24
+1522-1,Basic Building Set Trial Size,1989,467,44
+1523-1,Basic Set Trial Size,1986,467,27
+1524-1,Basic Set Trial Size,1986,467,38
+1525-1,Container Lorry,1986,70,153
+1526-1,Space Radar Buggy,1986,130,105
+1528-1,Dragster,1986,82,29
+153-1,Large Train Wagon,1966,235,16
+154-1,Switch Track - 1 Right and 1 Left,1967,243,4
+1544-1,Duplo Medium Bucket,1988,505,57
+1545-1,Build-A-Rabbit,1992,229,29
+1546-1,Airplane,1985,466,31
+1547-1,Black Knights Boat,1993,188,58
+1548-1,Stena Line Ferry,1992,471,173
+1549-1,Santa and Chimney,1992,227,62
+1550-1,Sterling Super Caravelle,1972,412,49
+155-1,"2 Cross Rails, 8 Straight Tracks, 4 Base Plates",1967,243,14
+1551-1,Chick,1985,229,6
+1551-2,Sterling Luggage Carrier,1972,412,49
+1552-1,Maersk Line Container Truck,1985,70,377
+1552-2,Sterling Boeing 727,1974,412,45
+1554-1,Silja Line Ferry,1986,471,175
+1555-1,Santa Claus,1986,227,19
+1555-2,Sterling Airways Biplane,1978,412,44
+1556-1,Christmas Hearts,1986,227,10
+1557-1,Scooter,1986,130,26
+1558-1,Mobile Command Trailer,1986,130,68
+1560-1,Glory Glider,1990,68,26
+1560-2,Lufthansa Boeing 727,1976,412,44
+1560-3,Crest Basic Building Set,1985,467,27
+156-1,2 Signals with Automatic Stop / Go Attachment,1968,243,6
+1561-1,Stunt Chopper,1990,68,30
+1561-2,Lufthansa Flight Crew,1976,364,60
+156-2,Straight Track,1976,243,25
+1562-1,Wave Jumper,1990,77,25
+1562-2,Basic Building Set,1985,467,36
+1562-3,Lufthansa Double-Decker,1976,412,50
+1563-1,Track Blaster,1990,82,30
+157-1,Curved Track,1976,243,25
+157-2,Automatic Direction Changer,1969,243,7
+1572-1,Super Tow Truck,1986,85,80
+157-3,Four Car Auto Transport,1970,423,65
+1575-1,Finnjet Ferry,1977,471,507
+1575-2,Basic Set with Board Game,1987,467,240
+1577-1,Medium Bucket,1988,467,217
+1580-1,Lunar Scout,1986,130,70
+1580-2,Silja Line Ferry,1977,471,413
+158-1,Railroad Crossing Gate,1969,243,7
+1581-1,Silja Line Ferry,1981,471,181
+1581-2,Delivery Truck,1990,75,122
+1584-1,Knights Challenge,1988,199,168
+1588-1,Basic Set,1987,467,27
+1589-1,Town Square,1978,85,441
+1589-2,TCS Breakdown Assistance,1986,85,258
+1590-2,ANWB Breakdown Assistance,1982,85,262
+159-1,"Crossover, Straight Rails",1976,243,25
+1591-1,Danone Truck,1980,75,40
+1592-1,Town Square - Castle Scene,1980,85,495
+1592-2,Town Square - Castle Scene (Dutch Version),1983,85,495
+1593-1,Super Model,1983,130,314
+1596-1,Ghostly Hideout,1993,203,37
+1597-1,Castle 3-Pack,1993,186,3
+1598-1,Basic Set,1987,467,38
+1599-1,Britannia Airways,1987,466,102
+160-1,Magnetic Couplings,1968,243,6
+1601-1,Conveyance,1976,416,187
+1602-1,Giraffe,1987,467,16
+1603-1,Trial Size Imagination,1993,467,13
+1604-1,Lion,1987,467,17
+1605-1,Snail,1987,467,14
+1606-1,Car,1987,467,23
+1607-1,Helicopter,1987,466,26
+1608-1,{Aeroplane},1987,466,24
+1609-1,Ship,1987,467,31
+16-1,Transparent Bricks,1988,443,32
+1610-1,Police Car,1991,80,23
+1610-2,Martinair Cessna,1978,412,82
+161-1,Battery Wagon with Signal and Direction - Changing,1972,243,7
+1611-1,Dune Buggy,1991,79,21
+1611-2,Martinair DC-9,1978,412,63
+1612-1,Race Car,1988,82,30
+1613-1,Basic Set in Bucket,1987,467,375
+1616-1,Space Combi-Pack,1989,132,2
+1617-1,Small Bucket,1988,467,155
+1619-1,Storage Bucket,1986,469,260
+1620-1,Astro Dart,1990,132,30
+1620-2,Factory,1978,75,233
+162-1,Locomotive without Motor,1977,235,210
+1621-1,Lunar MPV Vehicle,1990,132,96
+1624-1,King's Archer,1993,188,22
+1625-1,Snowman,1989,227,40
+1626-1,Angel,1989,227,33
+1627-1,Santa,1989,227,36
+1628-1,Santa on Sleigh with Reindeer,1989,227,63
+1630-1,Helicopter,1990,68,27
+163-1,Cargo Wagon,1977,235,127
+1631-1,Black Racer,1990,82,23
+1632-1,Motor Boat,1990,77,28
+1633-1,Loader Tractor,1990,72,24
+1636-1,Small Bucket,1990,467,186
+1637-1,Large Bucket,1990,467,493
+1638-1,Blue Bucket,1990,467,444
+1639-1,Large Bucket,1990,467,673
+164-1,Passenger Wagon,1978,235,145
+1642-1,"Lego Motion 3B, Sea Eagle",1989,468,15
+1642-2,"Lego Motion 3B, Sea Eagle - International version",1994,468,15
+1643-1,"Lego Motion 2B, Lightning Striker",1989,468,16
+1644-1,"Lego Motion 4A, Wind Whirler",1989,468,17
+1644-2,"Lego Motion 4A, Wind Whirler - International version",1994,468,17
+1645-1,"Lego Motion 1A, Gyro Bird",1989,468,19
+1646-1,"Lego Motion 3A, Land Laser",1989,468,17
+1646-2,"Lego Motion 3A, Land Laser - International version",1994,468,17
+1647-1,"Lego Motion 1B, Turbo Force",1989,468,14
+1648-1,"Lego Motion 2A, Swamp Stinger",1989,468,16
+1649-1,"Lego Motion 4B, Sea Skimmer",1989,468,17
+1649-2,"Lego Motion 4B, Sea Skimmer - International version",1994,468,17
+1650-1,Maersk Line [Promotional Container Ship],1974,363,218
+165-1,Cargo Station,1978,235,267
+1651-1,Basic Building Set Trial Size,1993,467,30
+1651-2,Maersk Line Container Truck,1980,70,305
+1652-1,Basic Set,1994,467,44
+1655-1,Viking Line Ferry,1985,471,175
+1656-1,Evacuation Team,1991,74,244
+1656-2,Viking Line Ferry,1982,471,171
+1658-1,Viking Line Ferry,1982,471,201
+1660-1,Kronprins Frederik Ferry,1996,471,164
+166-1,Flat Wagon,1978,235,51
+1661-2,Basic Building Set in Bucket,1989,467,418
+1662-1,Basic Building Set in Bucket,1989,467,630
+1663-1,Basic Building Set in Bucket,1989,467,451
+1665-1,Dual FX Racers,1990,82,108
+1666-1,Brick Vac,1991,467,140
+1668-1,Basic Building Set Trial Size,1992,469,30
+1670-1,Basic Building Set Trial Size,1992,469,28
+167-1,Loading Ramp and Car Transport Wagon,1978,235,100
+1675-1,LEGOLAND Triple Pack,1990,559,3
+1676-1,Basic Building Set,1990,467,22
+1677-1,Rabbit,1990,229,25
+1678-1,Basic Building Set Trial Size,1991,469,49
+1679-1,Basic Building Set,1990,467,43
+1680-1,Hay Cart with Smugglers,1990,194,67
+1682-1,Space Shuttle,1990,68,419
+1687-1,Midnight Transport,1993,68,271
+1688-1,Large Bucket for Her,1993,467,216
+1690-1,Helicopter,1990,68,27
+1693-1,Turbo Force,1992,82,26
+1694-1,Galactic Scout,1992,129,23
+1695-1,Treasure Chest,1992,190,24
+1696-1,Pirate Lookout,1992,148,17
+1698-1,Basic Building Set Trial Size,1991,469,26
+1699-1,Small Bucket,1993,467,183
+1-7,Basic Set,1973,469,107
+170-1,Push Along Play Train,1972,235,87
+1701-1,Basic Building Set Trial Size,1994,467,26
+1702-1,Fire Fighter 4 x 4,1994,74,59
+1703-1,Dalmatian Station Building Set,1994,467,181
+1704-1,Ice Planet Satellite Plough,1994,133,47
+1705-1,Large Dinosaur Bucket,1994,467,327
+1708-1,Large Bucket,1994,469,665
+1710-1,Snowmobile,1994,79,24
+17101-1,Creative Toolbox,2017,301,846
+171-1,Complete Train Set Without Motor,1972,235,146
+1711-1,Ice Planet Scooter,1994,133,19
+1712-1,Crossbow Cart,1994,186,23
+1713-1,Shipwrecked Pirate,1994,148,23
+1714-1,Surveillance Scooter,1995,142,23
+1715-1,Special Value,1995,473,400
+1715-2,Basic Bricks,1995,254,400
+1716-1,Starter Set with Building Plates,1994,467,201
+1719-1,Freestyle Bricks and Plates,1995,399,199
+1720-1,Cactus Canyon Value Pack,1994,83,3
+1721-1,Sandypoint Marina Value Pack,1994,83,3
+1722-1,Rescue / Ice Planet Combi Pack,1994,559,2
+1723-1,Castle / Pirates Combi Pack,1994,559,2
+1724-1,Bird,1994,468,9
+1725-1,Dinosaur,1994,468,11
+1726-1,Girl,1994,468,7
+1727-1,Horse,1994,468,10
+1728-1,Crystal Crawler,1996,308,97
+1729-1,Barnacle Bay Value Pack,1994,148,3
+1730-1,Snow Scooter,1994,79,24
+1731-1,Ice Planet Scooter,1994,133,19
+1732-1,Crossbow Cart,1994,186,23
+1733-1,Shipwrecked Pirate,1994,148,23
+1736-1,Wizard's Cart,1995,186,18
+1737-1,Scorpion Detector,1996,131,195
+1740-1,Kayak,1994,83,16
+1741-1,Car,1994,83,36
+1742-1,Van,1994,83,81
+1743-1,"Box of Standard Bricks, 5+",1995,473,400
+1745-1,"Box of Standard Bricks, 3+",1995,473,404
+1746-1,Wiz the Wizard,1995,186,18
+1747-1,Treasure Surprise,1996,148,25
+1749-1,Paravane,1996,308,16
+1750-1,Renault Formula 1 Racer,1992,82,32
+1752-1,Boat with Armour,1996,201,21
+1756-1,{Basic Promotional Set},1995,468,8
+1758-1,{Basic Promotional Set},1995,468,7
+1760-1,Go-Cart,1995,82,21
+1761-1,Paradisa Speedboat,1995,90,21
+1762-1,Go-Cart,1995,82,21
+1766-1,Small Freestyle Bucket,1995,399,109
+1767-1,{Basic Promotional Set},1995,468,6
+1768-1,{Basic Promotional Set},1995,468,9
+1769-1,Aircraft,1992,466,23
+1772-1,Airport Container Truck,1991,68,79
+1773-1,Airline Maintenance Vehicle with Trailer,1996,68,108
+1774-1,Aircraft,1991,68,139
+1775-1,Jet,1994,68,161
+1776-1,Large Bulk Bucket,1996,469,950
+1777-1,Sabah Promotional Set: Plane,1997,468,10
+1778-1,Sabah Promotional Set: Boat,1997,468,9
+1779-1,Sabah Promotional Set: Helicopter,1997,468,10
+1782-1,Discovery Station,1997,86,329
+1785-1,Introducing Crater Critters,1995,126,146
+1786-1,Jailbreak Joe,1995,80,189
+1787-1,Crater Cruiser,1995,145,183
+1788-1,Treasure Chest,1995,148,165
+1789-1,Star Hawk II,1995,145,292
+1790-1,Shark Fisherman,1994,83,20
+1791-1,Windsurfer & Van,1994,83,70
+1792-1,Pleasure Cruiser,1994,83,65
+1793-1,Space Station Zenon,1995,145,351
+1794-1,Dragon Master Chariot,1994,186,36
+1795-1,Imperial Cannon,1994,147,37
+1796-1,Freestyle Large Monster Bucket,1996,399,653
+1798-1,Building Table,1995,473,3
+1-8,Little House Set,1970,433,67
+180-1,Train with 5 Wagons and Circle of Track,1972,235,220
+1802-1,Tidy Treasure,1996,148,25
+1804-1,Crossbow Boat,1996,201,21
+1806-1,Underwater Scooter,1996,308,16
+1807-1,Santa Claus and Sleigh,1995,227,17
+1808-1,Light Aircraft and Ground Support,1996,68,121
+1809-1,Condor Promotional Airplane,1996,466,29
+181-1,"Complete Train Set with Motor, Signals and Switch",1972,235,143
+1815-1,Paradisa Lifeguard,1996,90,38
+1817-1,Sea Plane with Hut and Boat,1996,83,134
+1818-1,Aircraft and Ground Support Equipment and Vehicle,1996,68,203
+1819-1,Large Bucket,1995,469,950
+182-1,Train Set with Signal,1975,235,368
+1821-1,Rally Racers,1996,82,195
+1822-1,Sea Claw 7 / Neptune III,1995,308,191
+1823-1,Sabah Promotional Set: Yacht,1997,468,10
+1824-1,Flying Duck,1997,468,17
+1825-1,Racing Car,1997,468,19
+1826-1,Bird? Boat? Plane?,1997,468,21
+1827-1,Helicopter,1997,468,20
+1828-1,{Basic Promotional Set},1995,468,7
+183-1,Complete Train Set with Motor and Signal,1976,235,186
+1831-1,Maersk Line Container Lorry,1995,70,206
+1831-2,Maersk Sealand Container Lorry,1995,70,206
+1836-1,Freestyle Cat,1995,399,9
+1837-1,Freestyle Duck,1995,399,11
+1838-1,Freestyle Bird,1995,399,18
+1839-1,Freestyle Fish,1995,399,21
+1840-1,Freestyle Set,1995,399,24
+1841-1,Plane,1999,470,15
+1843-1,Space/Castle Value Pack,1996,1,2
+1843-2,Spyrius Fold-Wing Spacecraft,1996,142,60
+1843-3,Royal Knight's Catapult,1996,201,46
+1845-1,20th Anniversary Jackpot Bucket,1993,469,719
+1846-1,Freestyle Set,1996,399,25
+1847-1,Freestyle Set,1996,399,33
+1850-1,Freestyle Set,1995,399,27
+1853-1,Navigator,1996,464,158
+1854-1,House with Roof-Windows ( Velux ),1996,69,152
+1857-1,Basic Bricks,1996,473,950
+1858-1,Droid Scout,1996,131,23
+1859-1,Sabah Promotional Set: Aeroplane,1997,468,9
+1860-1,Freestyle Set,1995,399,32
+1863-1,Freestyle Trial Set,1995,399,11
+1865-1,Airliner,1994,466,28
+1867-1,Medium Bulk Bucket,1997,469,400
+1868-1,Freestyle Box,1996,399,220
+1869-1,South African Flag,1996,468,80
+1870-1,Freestyle Set,1995,399,43
+18703535-1,Hamster Play Time - Friends Magazine - Polish Edition,2016,497,25
+1871-1,Pirates Cannon,1994,148,17
+1872-1,Imperial Guard Camp,1994,147,28
+1873-1,Pirate Treasure,1994,148,49
+1874-1,Polly Pick-Up,1993,469,141
+1875-1,Meteor Monitor,1990,128,32
+1876-1,Soil Scooper,1990,85,73
+1877-1,Crusader's Cart,1990,194,60
+1878-1,Small Bucket,1991,467,406
+1879-1,Large Bucket,1992,467,441
+1880-1,XL Bucket,1992,467,576
+1881-1,Small Bucket,1991,467,288
+1882-1,Large Bucket,1991,467,451
+1884-1,Small Bucket,1992,467,193
+1885-1,XL Bucket,1992,467,465
+1887-1,Scout Patrol Ship,1992,129,30
+1888-1,Black Knights Guardshack,1992,188,49
+1889-1,Pirate's Treasure Hold,1992,148,37
+1890-1,Octan Racer,1992,82,47
+1891-1,Four Set Value Pack,1992,559,4
+1895-1,Sky Patrol,1992,80,89
+1896-1,Trauma Team,1992,78,296
+1898-1,Weetabix Dragster,1989,82,27
+1899-1,Weetabix Racer,1989,82,24
+190-1,Farm Set,1974,364,526
+1901-2,Mini Basic Set,1984,469,36
+1905-1,Mini Basic Set,1982,469,36
+1906-1,Majisto's Tower,1994,186,196
+1910-1,Promo Basic Set,1982,469,88
+1911-1,Basic Set,1983,469,34
+1912-1,"LEGO Building Set A, Car",1983,468,20
+1913-1,"LEGO Building Set B, Boat",1983,468,27
+1914-1,"LEGO Building Set C, Helicopter",1983,468,20
+1915-1,"LEGO Building Set D, Aircraft",1983,468,20
+1916-1,Starion Patrol,1993,140,23
+1917-1,King's Catapult,1993,188,22
+19-2,Locomotive Piston Assemblies,1977,456,6
+1920-1,Promo Basic Set,1982,469,119
+192-1,Policemen,1977,364,86
+1922-2,Basic Building Set,1983,469,60
+1923-1,Viking Line Ferry,1989,471,184
+1924-1,Motorcycle,1983,13,103
+1924-2,Viking Line Ferry,1992,471,232
+1929-1,Guardsman,1988,468,13
+1932-1,Basic Building Set + Storage Case,1984,469,82
+194-1,Family,1976,364,94
+1944-1,Basic Set with Storage Case,1983,469,142
+195-1,Airplane,1975,364,89
+1952-1,Dairy Tanker,1989,75,128
+1953-1,Mouse,1989,468,14
+1954-1,Surveillance Scooter,1995,142,23
+1954-2,Basic Set with Storage Case,1984,469,141
+1955-1,Color Line Ferry,1993,471,244
+1958-1,Windsurfer,1993,83,21
+1959-1,Ultra-Light,1993,68,30
+1960-2,Special Value 96 pieces (Canadian Set),1985,467,104
+196-1,Antique Car,1975,364,115
+1962-1,Basic Building Set,1985,467,219
+1963-1,Basic Set with Storage Case,1986,467,221
+1964-1,Basic Building Set,1985,467,27
+1965-1,Basic Building Set,1985,469,38
+1966-1,Car Repair Shop,1985,85,300
+1967-1,System Bonus Pack,1985,559,5
+1967-2,Town Value Pack,1985,85,3
+1968-1,Space Express,1985,130,183
+1969-1,Mini Robot,1993,140,38
+1969-2,Space Value Pack,1985,130,3
+1970-1,Pirate's Gun Cart,1993,148,31
+197-1,Farm Vehicle and Animals,1976,364,120
+1971-1,Black Knight's Battering Ram,1993,188,36
+1972-1,Go-Cart,1985,12,98
+1973-1,Emirates Airliner,1989,68,138
+1974-1,Legoland Triple Pack,1989,559,3
+1974-2,Flyercracker USA,1989,68,74
+1974-3,Smuggler's Hayride,1989,194,50
+1974-4,Star Quest,1989,132,37
+1976-1,Town 3-Pack,1984,67,3
+1977-1,Space Value Pack,1983,130,3
+1978-1,Build-A-Santa,1991,227,39
+1978-2,Town Value Pack,1983,67,3
+1979-1,Snowman,1991,227,42
+1979-2,Town Value Pack,1984,67,3
+1980-1,Santa's Elves,1991,227,30
+198-1,Cowboys,1977,364,39
+1983-1,Space Value Pack,1984,130,3
+1990-1,F1 Race Car,1993,82,35
+199-1,Scooter,1977,364,41
+1991-1,Racing Pickup,1993,82,81
+1992-1,Dragsters,1993,82,103
+1993-1,Race Value Pack,1993,82,3
+1994-1,Turtle Bucket with Motor,1992,469,192
+1995-1,Racer,1999,470,15
+1997-1,Town Value Pack,1985,67,3
+1998-1,Silja Line Ferry,1991,471,375
+1999-1,Space Value Pack,1985,130,3
+20001-1,BrickMaster,2007,22,103
+20002-1,Fire Truck,2008,58,56
+20003-1,Dinosaur,2008,22,102
+2000409-1,Window Exploration Bag,2010,507,5200
+20004-1,Jungle Cruiser,2008,265,83
+2000413-1,Connections Kit,2010,432,2045
+2000414-1,Starter Kit,2010,507,239
+2000415-1,Identity and Landscape Kit,2010,432,1536
+2000416-1,Duck,2012,507,6
+2000421-1,FLL Trophy Small,2013,398,233
+2000422-1,FLL Trophy Medium,2013,398,267
+2000423-1,FLL Trophy Large,2013,398,437
+2000424-1,Story Starter (Sample Set),2014,507,96
+2000430-1,Identity and Landscape Kit,2013,432,2844
+2000431-1,Connections Kit,2013,432,2448
+2000445-1,Crossing the River,2016,507,14
+2000446-1,"Building My SG - Reflect, Celebrate, Inspire",2015,517,243
+20005-1,Winged Rahi (Klakk),2008,324,38
+20006-1,Clone Turbo Tank - Mini,2008,162,64
+2000702-1,Mindstorms Education (LME) Replacement Pack 3,2015,525,4
+20007-1,Republic Attack Cruiser - Mini,2009,162,84
+20008-1,Tow Truck,2009,22,79
+20009-1,AT-TE Walker - Mini,2009,161,94
+200-1,Family,1974,364,78
+20010-1,Republic Gunship - Mini,2009,161,94
+20011-1,Garbage Truck,2009,22,74
+20012-1,Click,2009,324,33
+20013-1,Mini Neptune Carrier,2010,316,63
+20014-1,4 x 4 Dynamo,2010,22,69
+20015-1,Alligator,2010,22,89
+20016-1,Imperial Shuttle - Mini,2010,163,70
+20017-1,Dagger Trap,2010,271,52
+20018-1,AT-AT Walker - Mini,2010,163,83
+20019-1,Slave I,2011,163,76
+200-2,Building Ideas Book,1985,501,1
+20020-1,Mini Turbo Shredder,2011,435,83
+20021-1,Bounty Hunter Gunship - Mini,2011,160,81
+200-3,"LEGO Town Plan Board, Plastic",1957,372,1
+200-4,"LEGO Town Plan Board, Continental European Cardboard Version",1959,372,1
+200-5,"LEGO Town Plan Board, UK / Australian Cardboard Version",1962,372,1
+2008-1,Heart 2008,2008,232,92
+2009-2,Heart 2009,2009,232,92
+200A-1,LEGO Town Plan Wooden Board,1957,372,1
+200M-1,LEGO Town Plan Wooden Board,1957,372,1
+20-1,Universal Building Set,1976,469,217
+2010-1,Happy Holidays - The Christmas Game,2010,502,139
+2011-2,Lego Duck,2011,301,91
+20200-1,"MBA Level One - Kit 1, Space Designer",2011,432,177
+20201-1,"MBA Level One - Kit 2, Microbuild Designer",2011,432,221
+20202-1,"MBA Level One - Kit 3, Robot Designer",2011,432,158
+20203-1,"MBA Level Two - Kit 4, Flight Designer",2011,432,145
+20204-1,"MBA Level Two - Kit 5, Creature Designer",2012,432,232
+20205-1,MBA Level Two - Kit 6 Auto Designer,2012,432,188
+20206-1,"MBA Level Three - Kit 7, The Lost Village",2012,432,229
+20207-1,"MBA Level Three - Kit 8, The Forbidden Bridge",2012,432,220
+20208-1,"MBA Level Three - Kit 9, The Dark Lair",2012,432,183
+20214-1,MBA Adventure Designer (Kits 7 - 9 Redesign),2013,432,3
+20215-1,MBA Invention Designer (Kits 10 - 12),2013,432,675
+20216-1,MBA Robot & Micro Designer (Kits 2 - 3 Redesign),2013,432,2
+20217-1,MBA Action Designer (Kits 4 - 6 Redesign),2013,432,3
+2025-1,Boat,1999,470,12
+2027-1,Pen Pack Alpha,2000,501,0
+2032-1,Helicopter,1999,470,18
+2045-1,Car,1999,470,17
+2047-1,Plane,1999,470,13
+205-2,Universal Figure Set,1978,364,118
+2063-1,Stormer 2.0,2011,401,31
+2064-1,Air Ambulance,2007,60,116
+2065-1,Furno 2.0,2011,401,30
+2067-1,Evo 2.0,2011,401,31
+2068-1,Nex 2.0,2011,401,31
+2069-1,Boat,1999,470,15
+2070-1,Ring Me Rabbit,1987,504,3
+2075-1,Prop Plane,1999,470,14
+208-1,Mother with Baby Carriage,1978,364,46
+2-1,Extra Large Tires & Hubs,1982,1,4
+2-10,Mini-Wheel Model Maker No. 2,1971,423,63
+21000-1,Sears Tower,2008,252,69
+21000-2,Willis Tower,2011,252,69
+21001-1,John Hancock Center,2008,252,69
+21002-1,Empire State Building,2009,252,77
+21003-1,Seattle Space Needle,2009,252,57
+21004-1,Solomon R. Guggenheim Museum,2009,252,208
+21005-1,Fallingwater,2009,252,811
+21006-1,The White House,2010,252,560
+21007-1,Rockefeller Center,2010,252,240
+21008-1,Burj Khalifa,2011,252,208
+21009-1,Farnsworth House,2011,252,546
+210-1,Cowboys,1976,364,39
+21010-1,Robie House,2011,252,2276
+21011-1,Brandenburg Gate,2011,252,363
+21012-1,Sydney Opera House,2012,252,270
+21013-1,Big Ben,2012,252,346
+21014-1,Villa Savoye,2012,252,659
+21015-1,The Leaning Tower of Pisa,2013,252,344
+21016-1,Sungnyemun,2012,252,325
+21017-1,Imperial Hotel,2013,252,1187
+21018-1,United Nations Headquarters,2013,252,596
+21019-1,Eiffel Tower,2014,252,320
+210-2,Small Store Set,1958,372,30
+21020-1,The Trevi Fountain,2014,252,730
+21021-1,Marina Bay Sands,2014,252,601
+21022-1,Lincoln Memorial,2015,252,273
+21023-1,Flatiron Building,2015,252,470
+21024-1,Louvre,2015,252,694
+21026-1,Venice,2016,253,212
+21027-1,Berlin,2016,253,289
+21028-1,New York City,2016,253,597
+21029-1,Buckingham Palace,2016,252,779
+21030-1,United States Capitol Building,2016,252,1031
+21031-1,Burj Khalifa,2016,252,332
+21032-1,Sydney,2017,253,361
+21033-1,Chicago,2017,253,444
+21034-1,London,2017,253,468
+21035-1,Solomon R. Guggenheim Museum,2017,252,744
+21036-1,Arc de Triomphe,2017,252,382
+21050-1,Architecture Studio,2013,252,1210
+2-11,Medium Basic LEGO Set,1976,433,130
+21100-1,Shinkai 6500 Submarine,2011,576,412
+21101-1,Hayabusa,2012,576,364
+21102-1,Minecraft Micro World,2012,577,458
+21103-1,Back to the Future Delorean,2013,576,400
+21104-1,Mars Science Laboratory Curiosity Rover,2014,576,295
+21105-1,Minecraft Micro World: The Village,2013,577,465
+21106-1,Minecraft Micro World: The Nether,2013,577,469
+21107-1,Micro World - The End,2014,577,439
+21108-1,Ghostbusters,2014,576,507
+21109-1,Exo-Suit,2014,576,320
+211-1,Mother and Baby with Dog,1976,364,44
+21110-1,Research Institute,2014,576,163
+2111-1,Kai,2011,435,19
+21113-1,The Cave,2014,577,249
+21114-1,The Farm,2014,577,262
+21115-1,The First Night,2014,577,408
+21116-1,Crafting Box,2014,577,517
+21117-1,The Ender Dragon,2014,577,633
+21118-1,The Mine,2014,577,921
+21119-1,The Dungeon,2015,577,219
+211-2,Small House Set,1958,372,19
+21120-1,The Snow Hideout,2015,577,327
+2112-1,Cole,2011,435,18
+21121-1,The Desert Outpost,2015,577,518
+21122-1,The Nether Fortress,2015,577,570
+21123-1,The Iron Golem,2016,577,208
+21124-1,The End Portal,2016,577,558
+21125-1,The Jungle Tree House,2016,577,706
+21126-1,The Wither,2016,577,318
+21127-1,The Fortress,2016,577,982
+21128-1,The Village,2016,577,1596
+21129-1,The Mushroom Island,2017,577,247
+21130-1,The Nether Railway,2017,577,387
+2113-1,Zane,2011,435,19
+21131-1,The Ice Spikes,2017,577,454
+21132-1,The Jungle Temple,2017,577,598
+21133-1,The Witch Hut,2017,577,502
+21134-1,The Waterfall Base,2017,577,729
+21135-1,The Crafting Box 2.0,2017,577,717
+21136-1,The Ocean Monument,2017,577,1121
+21137-1,The Mountain Cave,2017,577,2862
+2114-1,Chopov,2011,435,20
+2115-1,Bonezai,2011,435,21
+2116-1,Krazi,2011,435,22
+211701-1,Batman,2017,484,8
+21-2,Truck,1971,433,33
+21200-1,Life of George,2011,301,144
+21201-1,Life of George II,2012,301,144
+21204-1,Town Master,2014,590,256
+21205-1,Battle Towers,2014,590,212
+21206-1,Create and Race,2014,590,222
+21208-1,Resort Designer,2014,590,262
+212-1,Small House - Left Set,1958,372,21
+2121-1,Jack in the Box Promotional Set: Stomper,1997,468,11
+212-2,Scooter,1976,364,41
+2122-1,Jack in the Box Promotional Set: Bob,1997,468,14
+2123-1,Jack in the Box Promotional Set: Spinner,1997,468,12
+2125-1,Green Bucket,1997,504,69
+2126-1,Train Cars,1997,236,382
+2127-1,Jack in the Box Promotional Set: Nanas,1997,468,13
+2129-1,Blast-Off Dragster,1997,12,63
+2130-1,Danone Promotional Set: Duck,1998,468,7
+21301-1,Birds,2015,576,579
+21302-1,The Big Bang Theory,2015,576,498
+21303-1,WALL•E [Original Version],2015,576,676
+21303-2,WALL•E [Fixed Neck Version],2015,576,675
+21304-1,Doctor Who,2015,576,623
+21305-1,Maze,2016,576,768
+21306-1,Yellow Submarine,2016,576,553
+21307-1,Caterham Seven 620R,2016,576,770
+21308-1,Adventure Time™,2016,576,496
+21309-1,LEGO Ideas NASA Apollo Saturn V,2017,576,1969
+213-1,Airplane Ride,1977,364,44
+21310-1,Old Fishing Store,2017,576,2055
+2131-1,Danone Promotional Set: Hippo,1998,468,10
+213-2,Small House - Right Set,1958,372,21
+2132-1,Danone Promotional Set: Cow,1998,468,10
+2133-1,Danone Promotional Set: Impala,1998,468,12
+2134-1,Danone Promotional Set: Bison,1998,468,10
+2135-1,Sabah Promotional Set: Aircraft,1997,468,9
+2136-1,Sabah Promotional Set: Airplane,1997,468,12
+2137-1,Sabah Promotional Set: Swamp Boat,1997,468,8
+2138-1,Sabah Promotional Set: Helicopter,1997,468,8
+2139-1,Sabah Promotional Set: Steam Liner,1998,468,12
+2140-1,ANWB Roadside Assistance Crew,1996,85,258
+214-1,Road Repair,1977,364,64
+214.10-1,"1 x 2 x 4 Glass Door in Frame, Left",1961,371,26
+214.1-1,1 x 6 x 3 Window with Frame,1961,371,12
+2141-1,Surge 2.0,2011,401,30
+214-2,"Ten Windows and Doors, Red",1958,371,10
+214.2-1,1 x 6 x 2 Triple-Pane Window in Frame,1961,371,16
+2142-1,Breez 2.0,2011,401,29
+214-3,"Ten Windows and Doors, White",1958,371,10
+214.3-1,1 x 6 x 2 Double-Pane Window in Frame w/Shutters,1961,371,16
+2143-1,Rocka 3.0,2011,401,30
+214.4-1,1 x 4 x 2 Window in Frame,1961,371,18
+2144-1,Nex 3.0,2011,401,29
+214.5-1,1 x 3 x 2 Window in Frame,1961,371,24
+2145-1,Stormer 3.0,2011,401,31
+214.6-1,1 x 2 x 2 Window in Frame,1961,371,15
+2146-1,Freestyle with Storage Case,1996,399,819
+214.7-1,1 x 1 x 2 Window Frame,1961,371,38
+2147-1,Dragon Fly,1997,68,182
+214.8-1,1 x 2 x 1 Window Frame,1961,371,38
+2148-1,LEGO Truck,1997,85,105
+2148-2,LEGO Truck [Lego Toy Fair 1998 25th Anniversary Edition],1998,85,106
+214.9-1,1 x 1 x 1 Window Frame,1961,371,40
+2149-1,Color Line Container Lorry,1997,70,184
+2150-1,Train Station,1996,236,609
+215-1,Red Indians,1977,364,81
+2151-1,Robo Raider,1997,138,137
+215-2,2 x 8 Bricks,1958,371,30
+2152-1,Robo Raptor,1997,138,222
+2153-1,Robo Stalker,1997,138,279
+2154-1,Robo Master,1997,138,362
+2155-1,Aircraft,2000,467,18
+2156-1,Car,2000,467,17
+2157-1,Boat,2000,467,16
+2158-1,Helicopter,2000,467,10
+2159-1,9V Train Track Starter Collection,2006,244,24
+2160-1,Crystal Scavenger,1997,309,112
+216-1,2 x 10 Bricks,1958,371,25
+2161-1,Aqua Dozer,1997,309,135
+2162-1,Hydro Reef Wrecker,1997,309,287
+2163-1,Sabah Promotional Set: Toucan,1997,468,9
+2164-1,Sabah Promotional Set: Whale,1997,468,9
+2165-1,Rhinocerous,1998,468,10
+2166-1,Animal,1998,468,10
+2167-1,Sabah Promotional Set: Penguin,1997,468,8
+2170-1,Cole DX,2011,435,21
+217-1,Service Station,1977,364,210
+2171-1,Zane DX,2011,435,22
+217-2,4 x 4 Corner Bricks,1958,371,30
+2172-1,Nya,2011,435,21
+2173-1,Nuckal,2011,435,26
+2174-1,Kruncha,2011,435,24
+2175-1,Wyplash,2011,435,23
+218-1,Firemen,1977,364,277
+2181-1,Infomaniac,1997,84,4
+218-2,2 x 4 Bricks,1958,371,78
+2182-1,Bulk 3.0,2011,401,30
+2183-1,Stringer 3.0,2011,401,29
+2186-1,Seaplane,1997,399,77
+2187-1,Racer,1997,399,64
+2188-1,Speedboat,1997,399,58
+219-1,2 x 3 Bricks,1958,371,90
+2191-1,Furno 3.0,2011,401,28
+2192-1,Drilldozer,2011,403,61
+2193-1,Jetbug,2011,403,63
+2194-1,Nitroblast,2011,403,57
+2199-1,Large Bulk Bucket,1997,469,466
+220-1,2 x 2 Bricks,1958,371,120
+22-1,Car,1971,433,47
+221-1,Idea Book #1,1973,497,0
+221-2,1 x 2 Bricks,1958,371,156
+222-1,Building Ideas Book,1976,501,0
+222-2,1 x 1 Bricks,1958,371,240
+2229-1,Bucketful of Fun,1998,470,201
+2230-1,Helicopter and Raft,2008,59,116
+2231-1,Waspix,2011,403,48
+223-2,1 x 1 Round Bricks,1958,371,160
+2232-1,Raw-Jaw,2011,403,52
+2233-1,Fangz,2011,403,53
+2234-1,Police Chase,1998,103,150
+2235-1,Fire Lord,2011,403,125
+2236-1,Scorpio,2011,403,104
+224-1,2 x 2 & 2 x 4 Curved Bricks,1956,371,14
+224-3,2 x 2 Curved Bricks,1958,371,120
+2250-1,Advent Calendar 2000,2000,207,240
+2250-10,Advent Calendar 2000 (Day 9) Duck,2000,217,7
+2250-11,Advent Calendar 2000 (Day 10) Plane,2000,217,9
+2250-12,Advent Calendar 2000 (Day 11) Elf,2000,217,10
+2250-13,Advent Calendar 2000 (Day 12) Duck,2000,217,7
+2250-14,Advent Calendar 2000 (Day 13) Boat,2000,217,9
+2250-15,Advent Calendar 2000 (Day 14) Rhinocerous,2000,217,10
+2250-16,Advent Calendar 2000 (Day 15) Girl,2000,217,10
+2250-17,Advent Calendar 2000 (Day 16) Plane,2000,217,10
+2250-18,Advent Calendar 2000 (Day 17) Bull,2000,217,11
+2250-19,Advent Calendar 2000 (Day 18) Hovercraft,2000,217,10
+2250-2,Advent Calendar 2000 (Day 1) Plane,2000,217,12
+2250-20,Advent Calendar 2000 (Day 19) Christmas Bunny,2000,217,7
+2250-21,Advent Calendar 2000 (Day 20) Jet,2000,217,9
+2250-22,Advent Calendar 2000 (Day 21) Parrot,2000,217,9
+2250-23,Advent Calendar 2000 (Day 22) Truck,2000,217,10
+2250-24,Advent Calendar 2000 (Day 23) Helicopter,2000,217,8
+2250-25,Advent Calendar 2000 (Day 24) Santa,2000,217,11
+2250-3,Advent Calendar 2000 (Day 2) Snowman,2000,217,11
+2250-4,Advent Calendar 2000 (Day 3) Ship,2000,217,12
+2250-5,Advent Calendar 2000 (Day 4) Boy,2000,217,10
+2250-6,Advent Calendar 2000 (Day 5) Elephant,2000,217,10
+2250-7,Advent Calendar 2000 (Day 6) Waterplane,2000,217,10
+2250-8,Advent Calendar 2000 (Day 7) Giraffe,2000,217,13
+2250-9,Advent Calendar 2000 (Day 8) Boat,2000,217,10
+225-1,1 x 6 and 1 x 8 Bricks,1958,371,54
+2254-1,Mountain Shrine,2011,435,168
+2255-1,Sensei Wu,2011,435,20
+2256-1,Lord Garmadon,2011,435,23
+2257-1,Spinjitzu Starter Set,2011,435,47
+2258-1,Ninja Ambush,2011,435,71
+2259-1,Skull Motorbike,2011,435,156
+2260-1,Ice Dragon Attack,2011,435,158
+226-1,8 Named Beams,1958,371,8
+226-2,Idea Book,1981,497,0
+2263-1,Turbo Shredder,2011,435,298
+227-1,4 x 8 Curved & 2 x 8 Plates,1958,371,5
+228-1,4 x 8 & 2 x 8 Plates,1958,371,5
+2282-1,Rocka XL,2011,401,174
+2283-1,Witch Doctor,2011,403,337
+229-1,6 x 8 & 2 x 8 Plates,1958,371,4
+229.1-1,2 x 8 Plates,1962,371,8
+230-1,Hairdressing Salon,1978,405,227
+230-2,Six Trees and Bushes,1958,371,6
+2304-1,Large Building Plate,1992,504,1
+23-1,Delivery Truck Set,1971,433,64
+231-1,Hospital,1978,405,400
+231-2,Esso Pumps/Sign,1956,371,2
+2312-1,Duplo Supplementary Bricks,1987,505,39
+232-1,Bungalow,1978,405,472
+232-2,16 Road Signs,1958,371,16
+233-1,Light Masts,1958,371,4
+234-1,Letter Bricks,1958,371,50
+235-1,Garage Plate and Door (White Base and Door Frame),1958,371,3
+235-2,Garage Plate and Door (Gray Base and Door Frame),1968,371,5
+236-1,Garage with Automatic Door (White base and door frame),1956,372,69
+236-2,Garage and Van,1957,372,69
+236-3,Garage with Automatic Door (Gray base and door frame),1968,372,59
+237-1,Number Bricks,1960,371,50
+238-1,Lego System Idea Book no. 1,1960,497,0
+238-2,Lego System Idea Book (by Samsonite),1961,497,0
+238-3,Lego System Idea Book no. 1,1962,497,0
+238-4,Lego System Ideas Book no. 2,1962,497,0
+238-5,Lego System Ideas Book no. 2,1963,497,0
+238-6,Lego System Idea Book,1963,497,0
+238-7,So Bauen Wir Mit LEGO,1963,497,0
+238-8,Lego System Ideas Book No. 3,1964,497,0
+238-9,Lego System Idea Book (by Samsonite),1964,497,0
+239-1,Wir bauen mit Lego Idea Book,1966,497,0
+239-2,Das große Lego-Buch Idea Book,1968,497,0
+240-1,"Wooden Storage Box Large, Empty",1967,383,-1
+240-2,Idea Book,1967,497,1
+24-1,Minitalia Train,1971,433,77
+241-1,4.5v Idea Book,1969,497,0
+241601-1,Miku the dragon,2016,600,12
+241602-1,Jynx cat,2016,600,26
+242-1,International Flags,1958,371,5
+242.1-1,6 International Flags -1-,1963,371,6
+242-2,5 Danish Flags,1958,371,5
+242.2-1,6 International Flags -2-,1963,371,6
+242.3-1,6 International Flags -3-,1963,371,6
+242A-1,"International Flags - Italy, Switzerland, Belgium, Germany, Netherlands",1961,371,5
+242B-1,"International Flags - Britain, France, Austria, Portugal, LEGO",1961,371,5
+242I-1,International Flags,1958,371,5
+245-1,Lighting Device Pack,1958,371,3
+245-2,Two Santas and Tree,1978,227,39
+2453-1,Large Bulk Bucket,1998,470,950
+246-2,Santa with Sleigh and Reindeer,1977,227,68
+248-2,Factory With Conveyor Belt,1971,416,208
+2490-1,Insectoids Combi Set (Woolworth's UK promo),1998,134,3
+2494-1,400-Piece Purple Bucket,1998,469,400
+250-1,Idea Book 250,1987,497,1
+250-3,Aeroplane and Pilot,1974,364,89
+2504-1,Spinjitzu Dojo,2011,435,381
+2505-1,Garmadon's Dark Fortress,2011,435,516
+2506-1,Skull Truck,2011,435,517
+2507-1,Fire Temple,2011,435,1174
+2508-1,Blacksmith Shop,2011,435,189
+2509-1,Earth Dragon Defense,2011,435,226
+251-1,Windmill with Miller and his Wife,1974,364,90
+2516-1,Ninja Training Outpost,2011,435,46
+2518-1,Nuckal's ATV,2011,435,174
+2519-1,Skeleton Bowling,2011,435,373
+2520-1,Battle Arena,2011,435,462
+252-1,Locomotive with Driver & Passenger,1974,364,115
+2521-1,Lightning Dragon Battle,2011,435,643
+2531-1,Rescue Helicopter and Jeep,1998,83,99
+253-2,Helicopter and Pilot,1975,364,49
+2532-1,Aircraft and Ground Crew,1998,68,143
+2535-1,Formula 1 Racing Car,1998,82,30
+2536-1,Divers Jet Ski,1998,86,24
+2537-1,Extreme Team Raft,1998,87,20
+2538-1,Fright Knights Fire Cart,1998,195,20
+2539-1,Fright Knights Flying Machine,1998,195,21
+2540-1,Fright Knights Catapult Cart,1998,195,26
+254-1,Family,1975,364,94
+2541-1,Adventurers Car,1998,297,24
+2542-1,Adventurers Aeroplane,1998,297,21
+2543-1,Spacecraft,1998,144,18
+2544-1,SHELL Promotional Set: TECHNIC Microbike,1998,13,27
+255-2,Farming Scene,1975,364,120
+2554-1,Formula 1 Pit Stop,1998,82,172
+2555-1,Swing Set,1998,323,53
+2556-1,Ferrari Formula 1 Racing Car,1997,278,579
+256-1,Police Officers and Motorcycle,1976,364,85
+258-1,Zoo with Baseboard,1976,364,472
+2584-1,Biker Bob,1998,85,15
+2585-1,Handcar,1998,236,27
+2586-1,Chess King,1998,186,26
+260-1,Idea Book,1990,497,1
+260-3,Complete Living Room Set,1971,405,177
+261-1,Bathroom,1979,405,179
+2613-1,Refuse Truck,1990,504,1
+261-4,Complete Kitchen Set,1971,405,157
+2617-1,Tow Truck,1989,504,4
+262-2,Complete Children's Room Set,1972,405,259
+263-1,Kitchen Set,1974,405,173
+2636-1,Tow Truck,1984,504,2
+264-1,Living Room Set,1974,405,241
+2649-1,Sea Explorer,1984,504,41
+265-1,Bathroom,1974,405,147
+266-1,Child's Bedroom,1974,405,147
+268-1,Family Room,1979,405,251
+269-1,Kitchen,1979,405,210
+2-7,Basic Set,1973,469,139
+270-2,"Grandfather Clock, Chair and Table",1973,405,46
+2707-1,Glider,2000,468,9
+2708-1,Aircraft,2000,468,12
+2709-1,Snowmobile,1996,468,8
+2710-1,Helicopter,2000,468,8
+271-1,Baby's Cot and Cabinet,1973,405,48
+271-2,Traffic Police Set,1958,372,6
+271605-1,Lava fighter,2016,605,12
+2718-1,Aircraft and Ground Crew,2001,68,143
+2719-1,Heli Monster,1999,470,9
+27-2,Train Contact Bricks,1977,456,2
+272-1,Dressing Table with Mirror,1973,405,31
+2722-1,Ship,2000,468,12
+2728-1,The Chopper,1999,470,11
+2729-1,Quattro Leg,1999,470,17
+273-1,Bureau,1973,405,23
+2734-1,Straight Track (Straight Rails),1993,504,6
+2735-1,Curved Track (Curved Rails),1993,504,6
+274-1,Colour T.V. and Chair,1974,405,45
+2742-1,Loudspeaker,1999,470,9
+2743-1,Pendulum Nose,1999,470,21
+2744-1,Propeller Man,1999,470,10
+275-1,Table and Chairs,1974,405,63
+2757-1,Bad Monkey,1999,470,9
+2759-1,Rotor Head,1999,470,14
+276-1,Doctor's Office,1977,405,94
+2769-1,Aircraft and Boat,1999,83,100
+277-1,Fireplace,1977,405,86
+2774-1,Airshow (Red Tiger),1999,68,141
+2775-1,Bathroom,1991,504,7
+278-1,Television Room,1978,405,107
+2-8,Medium House Set,1970,433,109
+280-1,"Sloping Roof Bricks, Red",1958,371,14
+280-2,"Sloping Roof Bricks, Blue",1958,371,14
+28-1,Train Contact Plate with Cables,1977,456,2
+281-1,"1 x 2 and 3 x 2 Sloping Bricks, Red",1959,371,21
+281-2,"1 x 2 and 3 x 2 Sloping Bricks, Blue",1959,371,21
+282-1,"2 x 2 Sloping Roof Bricks, Red",1958,371,22
+282-2,"2 x 2 Sloping Roof Bricks, Blue",1958,371,22
+2824-1,Advent Calendar 2010 City,2010,208,24
+2824-10,Advent Calendar 2010 City (Day 9) Toy Airplane,2010,220,11
+2824-11,Advent Calendar 2010 City (Day 10) Man with Suitcase,2010,220,5
+2824-12,Advent Calendar 2010 City (Day 11) Fireplace,2010,220,13
+2824-13,Advent Calendar 2010 City (Day 12) Sled with Wood and Axe,2010,220,14
+2824-14,Advent Calendar 2010 City (Day 13) Toy Fire Truck,2010,220,15
+2824-15,Advent Calendar 2010 City (Day 14) Woman with Bread,2010,220,5
+2824-16,Advent Calendar 2010 City (Day 15) Table with Chairs and Lamp,2010,220,13
+2824-17,Advent Calendar 2010 City (Day 16) Couch / Sofa,2010,220,9
+2824-18,Advent Calendar 2010 City (Day 17) Shower Stall,2010,220,9
+2824-19,Advent Calendar 2010 City (Day 18) Santa Claus (almost Naked) with Brush,2010,220,6
+2824-2,Advent Calendar 2010 City (Day 1) Snowman with Broom,2010,220,11
+2824-20,Advent Calendar 2010 City (Day 19) Toy Train Car Red,2010,220,15
+2824-21,Advent Calendar 2010 City (Day 20) Toy Bulldozer,2010,220,17
+2824-22,Advent Calendar 2010 City (Day 21) Toy Train Car Yellow,2010,220,15
+2824-23,Advent Calendar 2010 City (Day 22) Toy Helicopter,2010,220,7
+2824-24,Advent Calendar 2010 City (Day 23) Christmas Tree,2010,220,23
+2824-25,Advent Calendar 2010 City (Day 24) Santa Claus with Toy Train Engine,2010,220,21
+2824-3,Advent Calendar 2010 City (Day 2) Boy with Sword,2010,220,5
+2824-4,Advent Calendar 2010 City (Day 3) Skateboard with Ramp and Railing,2010,220,10
+2824-5,Advent Calendar 2010 City (Day 4) Toy Crane,2010,220,15
+2824-6,Advent Calendar 2010 City (Day 5) Drum Set,2010,220,10
+2824-7,Advent Calendar 2010 City (Day 6) Girl with Cat,2010,220,5
+2824-8,Advent Calendar 2010 City (Day 7) Piano / Organ,2010,220,10
+2824-9,Advent Calendar 2010 City (Day 8) Dog with Bowl and Sausage,2010,220,7
+283-1,"Sloping Ridge and Valley Bricks, Red",1957,371,20
+283-2,"Sloping Ridge and Valley Bricks, Blue",1957,371,20
+2840-1,Danone Promotional Set: Girl,1998,468,10
+2841-1,Danone Promotional Set: Boy,1998,468,9
+2842-1,{Basic Promotional Set},1997,468,8
+2845-1,Indian Chief,1997,477,20
+2846-1,Indian Kayak,1997,477,18
+2847-1,Flyer,1997,144,15
+2848-1,Fright Knights Flying Machine,1997,195,19
+2849-1,Helicopter,1997,68,20
+2850828-1,LEGO® Star Wars™ Darth Vader™ Watch,2011,501,0
+2850829-1,Luke Skywalker Watch,2011,501,0
+2851193-1,LEGO® Star Wars™ Darth Maul™ Watch,2009,501,0
+2852724-1,Accelerometer Sensor for Mindstorms NXT,2011,259,0
+2852725-1,Infrared Seeker for Mindstorms NXT (Version 2),2011,259,1
+2852726-1,Gyroscopic Sensor for Mindstorms NXT,2011,259,0
+2853216-1,Infrared Link Sensor for Mindstorms NXT,2011,259,1
+2853300-1,Space Police Collection,2009,141,5
+2853301-1,CITY Transport Collection,2009,63,5
+2853302-1,CITY Construction Collection,2009,56,4
+2853303-1,Bionicle Glatorian Legends Collection,2009,332,6
+2853508-1,LEGO Star Wars: The Visual Dictionary,2009,497,6
+2853590-1,Stormtrooper,2009,169,5
+2853835-1,White Boba Fett Figure,2010,158,5
+2853944-1,Astronaut,2010,598,5
+2854-1,Bungee Chopper,1998,3,70
+2855028-1,Exclusive Spaceman Magnet,2010,501,8
+2855040-1,Infrared Receiver Sensor for Mindstorms NXT,2011,259,0
+2855057-1,LEGO® Star Wars™ Stormtrooper™ Kid’s Watch,2011,501,0
+2855113-1,Brickmaster Star Wars,2011,501,251
+2855127-1,LEGO Harry Potter: Years 1-4 Video Game,2010,501,0
+2856079-1,Creationary Booster Pack,2011,502,30
+2856080-1,Storm Trooper Minifigure Clock,2010,501,0
+2856081-1,LEGO® Star Wars™ Darth Vader Minifigure Clock,2010,501,0
+2856089-1,Hero Factory 2.0 Collection,2011,401,6
+2856128-1,LEGO® Star Wars™ Anakin Skywalker™ Minifigure Watch,2011,501,0
+2856130-1,LEGO® Star Wars™ Yoda™ Minifigure Watch,2011,501,0
+2856134-1,Ninjago Card Shrine,2011,435,98
+2856195-1,LEGO Minifigure Ultimate Sticker Collection,2011,501,1
+2856197-1,Shadow ARF Trooper,2011,178,5
+2856203-1,LEGO® Star Wars™ Yoda Minifigure Clock,2011,501,0
+2856217-1,LEGO Star Wars III: The Clone Wars,2011,501,0
+2856223-1,"Magnet Set, Minifig Retro Ninja Princess - with 2 x 4 Brick Base (Bricktober Week 1)",2011,501,0
+2856224-1,"Magnet Set, Minifig Retro Forestman - with 2 x 4 Brick Base (Bricktober Week 2)",2011,501,0
+2856225-1,"Magnet Set, Minifig Retro Classic Knight - with 2 x 4 Brick Base (Bricktober Week 3)",2011,501,0
+2856226-1,"Magnet Set, Minifig Retro Classic Space Astronaut - with 2 x 4 Brick Base (Bricktober Week 4)",2011,501,3
+2856227-1,Hero Factory Fire Villains Collection,2011,403,4
+2856236-1,LEGO® Red Brick Clock,2013,501,0
+2856238-1,LEGO® Yellow Brick Clock,2015,501,0
+2856453-1,LEGO Brand Pirates of the Caribbean Video Game - PS3,2011,501,0
+2858-1,Girl with Two Cats,1999,323,5
+2866-1,Animal Playground,1998,504,28
+2870-1,Paradisa Barbeque,1997,90,21
+2871-1,Diver and Shark,1997,86,17
+2872-1,Witch and Fireplace,1997,195,19
+2873-1,Small Santa Claus,1997,227,9
+2876-1,Christmas Set,1997,227,9
+2878-1,Santa Claus,1997,227,16
+2878-2,Santa Claus Mos Burger Gift Box 1- Hawaiian Shirt Santa,2001,227,1
+2878-3,Santa Claus Mos Burger Gift Box 2 - Tuxedo Santa,2001,227,1
+2878-4,Santa Claus Mos Burger Gift Box 3 - Soccer Santa,2001,227,1
+2879-1,Desert Expedition,1998,297,195
+2880-1,Open-Top Jeep,1997,85,29
+2881-1,Parking Gate Attendant,1997,85,19
+2882-1,Speedboat,1997,77,22
+2883-1,Boat,1997,77,28
+2884-1,Microlight,1997,68,20
+2885-1,Ice Cream Seller,1997,75,27
+2886-1,Formula 1 Racing Car,1997,82,25
+2887-1,Petrol Station Attendant and Pump,1997,76,15
+2889-1,Treasure Cart,1998,190,24
+2890-1,Stone Bomber,1998,188,22
+2891-1,Wizard Trader,1998,186,18
+2892-1,Thunder Arrow Boat,1998,201,21
+290-2,Dining Suite,1973,405,113
+29-1,4.5V Motor,1977,453,1
+291-1,Blackboard and School Desk,1973,405,88
+2912-1,Radical Racer,2000,504,16
+292-1,Kitchen Sink and Cupboards,1973,405,51
+2928-1,Airline Promotional Set,2006,53,145
+2928-2,Airline Promotional Set - ANA limited edition,2008,53,137
+293-1,Piano,1973,405,89
+2933-1,Freight Train,2000,504,79
+294-1,Wall Unit,1974,405,58
+2949-1,RC Dozer,2001,504,22
+295-1,Secretary's Desk,1974,405,80
+296-1,Ladies' Hairdressers,1977,405,163
+2962-1,Res-Q Lifeguard,1998,92,69
+2963-1,Extreme Team Racer,1998,87,83
+2964-1,Space Spider,1998,134,45
+2965-1,Hornet Scout,1998,134,72
+297-1,Nursery,1978,405,168
+2981-1,Pooh's Corner,1999,504,0
+2982-1,Pooh's Birthday,1999,504,9
+2995-1,Adventurers Car & Skeleton,1998,297,69
+2996-1,Adventurers Tomb,1998,297,81
+2997-1,Small Bucket,2017,504,40
+2998-1,Stena Line Ferry,1998,471,195
+30000-1,Doctor With Car,2009,60,30
+3000-1,Trike Buggy,1999,13,30
+30001-1,Fireman's Car,2009,58,39
+30002-1,Police Boat,2009,61,30
+30003-1,Road Roller,2009,56,31
+30004-1,Battle Droid on STAP,2009,165,23
+30005-1,Imperial Speeder Bike,2009,169,33
+30006-1,Clone Walker,2009,165,31
+30008-1,Snowman,2009,206,44
+30009-1,Christmas Tree,2009,206,47
+300-1,T-Junction Road Plates,1978,84,2
+30010-1,Fire Chief,2010,58,31
+3001-1,Kabaya Promotional Set: Propeller Buggy,1999,11,29
+30011-1,Police Dinghy,2010,61,16
+30012-1,Mini Airplane,2010,53,34
+30013-1,Police Quad,2010,61,34
+30014-1,Police Helicopter,2011,61,32
+30015-1,Jet Ski,2011,59,24
+30016-1,Small Satellite,2011,52,34
+30017-1,Police Boat,2012,61,35
+30018-1,Police Plane,2012,61,32
+30019-1,Fire Helicopter,2012,58,37
+30020-1,Jet,2010,23,43
+30021-1,Parrot,2010,23,48
+30022-1,Bee,2011,22,23
+30023-1,Lighthouse,2011,22,25
+30024-1,Truck,2011,22,56
+30025-1,Clown Fish,2011,22,59
+30026-1,Panda,2011,23,61
+30027-1,Reindeer,2011,22,66
+30028-1,Wreath,2011,227,50
+30029-1,LEGO Pudsey Bear,2011,301,95
+30030-1,Racing Car,2010,120,29
+3003-1,Motorbike,1999,13,28
+30031-1,World Race Powerboat,2010,123,27
+30032-1,World Race Buggy,2010,123,35
+30033-1,Racing Truck,2010,120,40
+30034-1,Racing Tow Truck,2010,120,34
+30035-1,Racing Car,2010,120,30
+30036-1,Buggy Racer,2011,120,26
+30040-1,Octopus,2010,315,42
+30041-1,Piranha,2010,315,45
+30042-1,Mini Sub,2010,315,37
+30050-1,Republic Attack Shuttle - Mini,2010,160,54
+3005-1,Kabaya Promotional Set: Car,1999,12,26
+30051-1,X-wing Fighter - Mini,2010,163,61
+30052-1,AAT - Mini,2011,161,46
+30053-1,Republic Attack Cruiser - Mini,2011,162,41
+30054-1,AT-ST - Mini,2011,163,46
+30055-1,Vulture Droid - Mini,2011,162,42
+30056-1,Star Destroyer,2012,163,38
+30057-1,Anakin's Pod Racer,2012,164,38
+30058-1,STAP,2012,158,19
+30059-1,MTT,2012,158,51
+30061-1,Attack Wagon,2010,196,36
+30062-1,Target Practice,2010,196,31
+30066-1,Circus Clown Polybag,2013,504,3
+30066-2,Circus Ringmaster Polybag,2013,504,3
+30066-4,Circus Tiger Polybag,2013,504,3
+30066-5,Circus Rabbit Polybag,2013,504,3
+30067-1,Duplo Farm Polybag (farmer),2014,504,5
+30067-2,Duplo Farm Polybag (calf),2014,504,5
+30067-3,Duplo Farm Polybag (goat),2014,504,5
+30067-4,Duplo Farm Polybag (cat),2014,504,5
+30068-1,Food,2014,504,6
+30070-1,Alien Space Ship,2010,275,29
+30071-1,Army Jeep,2010,275,37
+30072-1,Woody's Camp Out,2010,275,15
+30073-1,Buzz's Mini Ship,2010,275,20
+30080-1,Ninja Glider,2011,435,26
+30081-1,Skeleton Chopper,2011,435,41
+30082-1,Enemy Training,2011,435,32
+30083-1,Dragon Fight,2011,435,32
+30084-1,Ninjago Promotional Set,2011,435,5
+30085-1,Snake Battle,2012,435,42
+30086-1,Hidden Sword,2012,435,39
+30087-1,Cole ZX's Car,2012,435,27
+30088-1,Rattla,2012,435,5
+30090-1,Desert Glider,2011,437,29
+30091-1,Desert Rover,2011,437,31
+30-1,Universal Building Set,1976,469,200
+30100-1,Andrea on the Beach,2012,494,28
+30101-1,Skate Boarder,2012,494,28
+30102-1,Desk,2012,494,28
+30103-1,Car,2012,494,32
+30105-1,Stephanie and Mailbox,2012,494,41
+30106-1,Ice Cream Stand,2013,494,34
+30107-1,Birthday Party,2013,494,39
+30108-1,Summer Picnic,2013,494,33
+301-1,Curved Road Plates,1978,84,2
+30110-1,Trolley,2011,246,22
+30111-1,The Lab,2011,246,34
+30112-1,Emma's Flower Stand,2014,494,35
+30113-1,Stephanie's Bakery Stand,2014,494,28
+30114-1,Andrea's Beach Lounge,2014,494,29
+30115-1,Jungle Boat,2014,495,31
+30116-1,Rapunzel's Market Visit,2014,579,37
+30120-1,Guido,2011,269,34
+3012-1,Space Hover,1999,144,20
+30121-1,Grem,2011,269,52
+30130-1,Mini Black Pearl,2011,263,47
+3013-1,Space Jet,1999,142,23
+30131-1,Jacks Boat,2011,263,21
+30132-1,Voodoo Jack,2011,263,4
+30133-1,Jack Sparrow,2011,263,4
+30140-1,ADU Walker,2011,127,34
+3014-1,Ice Planet Scooter,1999,133,19
+30141-1,ADU Jetpack,2011,127,19
+30150-1,Race Car,2012,63,35
+3015-1,Space Police Car,1999,140,23
+30151-1,Mining Dozer,2012,56,33
+30152-1,Mining Quad,2012,56,40
+30160-1,Bat Jetski,2012,484,40
+3016-1,Boss with Cannon,1998,434,24
+30161-1,Batmobile,2012,484,45
+30162-1,Quinjet,2012,487,33
+30163-1,Thor and the Cosmic Cube,2012,487,25
+30164-1,Lex Luthor,2012,484,17
+30165-1,Hawkeye with Equipment,2012,487,24
+30166-1,Robin and Redbird Cycle,2013,484,40
+30167-1,Iron Man vs. Fighting Drone,2013,490,24
+30168-1,Gun Mounting System,2013,490,16
+30170-1,Ganrash,2012,502,56
+3017-1,Water Spider,1998,434,25
+30180-1,Twin Prop,2012,22,45
+3018-1,Go! LEGO Shogun,1998,434,25
+30181-1,Helicopter,2012,22,53
+30182-1,Santa,2012,228,57
+30183-1,Little Car,2013,30,50
+30184-1,Little Helicopter,2013,22,56
+30185-1,Little Eagle,2013,22,48
+30186-1,Christmas Tree,2013,228,51
+30187-1,Fast Car,2014,23,56
+30188-1,Cute Kitten,2014,22,54
+30189-1,Transport Plane,2014,22,49
+30190-1,Ferrari 150° Italia,2012,114,33
+3019-1,Big Bat,1998,434,23
+30191-1,Scuderia Ferrari Truck,2012,114,40
+30192-1,Ferrari F40,2012,114,47
+30193-1,250 GT Berlinetta,2012,114,24
+30194-1,458 Italia,2012,114,32
+30195-1,FXX,2012,114,52
+30196-1,Shell F1 Team,2012,114,47
+30197-1,Snowman,2014,22,60
+30-2,Small Ship Set,1973,433,26
+30200-1,Zombie Chauffeur Coffin Car,2012,558,32
+3020-1,Raft of Johnse,1998,297,18
+30201-1,Ghost,2012,558,33
+30202-1,Smoothie Stand,2015,494,37
+30203-1,Mini Golf,2015,494,26
+30204-1,Wish Fountain,2015,494,44
+30205-1,Pop Star,2015,494,33
+302-1,Straight Road Plates (without crosswalk),1983,84,2
+30210-1,Frodo with Cooking Corner,2012,566,35
+3021-1,King Pharaoh the Third,1998,297,17
+30211-1,Uruk Hai with Ballista,2012,566,21
+30212-1,Mirkwood Elf Guard,2012,563,27
+30213-1,Gandalf at Dol Guldur,2012,563,31
+30215-1,Legolas Greenleaf,2013,564,33
+30216-1,Lake-town Guard,2013,564,31
+30217-1,Forest Polybag : Squirrel,2015,504,4
+30217-2,Forest Polybag : Rabbit,2015,504,4
+30217-3,Forest Polybag : Deer Fawn,2015,504,4
+30217-4,Forest Polybag : Black Bear Cub,2015,504,4
+30218-1,Snail,2015,504,6
+302-2,Straight Road Plates (with crosswalk),1978,84,2
+30220-1,Fire Speedboat,2013,58,40
+3022-1,Plane of Hurrykain,1998,297,23
+30221-1,Fire Car,2013,58,36
+30222-1,Police Helicopter,2013,61,33
+30224-1,Lawn Mower,2013,52,41
+30225-1,Seaplane,2013,55,37
+30226-1,Police Helicopter ,2014,61,48
+30227-1,Police Watercraft,2014,61,36
+30228-1,Police ATV,2014,61,42
+30229-1,Repair Lift,2014,56,40
+30230-1,Mini Mech,2013,146,28
+3023-1,Slyboot Car,1998,297,23
+30231-1,Space Insectoid,2013,146,27
+30240-1,Z-95 Headhunter,2013,160,54
+30241-1,Mandalorian Fighter,2013,160,49
+30242-1,Republic Frigate,2013,164,45
+30243-1,Umbaran MHC,2013,160,49
+30244-1,Anakin's Jedi Intercepter,2014,159,45
+30246-1,Imperial Shuttle,2014,158,57
+30247-1,ARC-170 Starfighter,2014,158,54
+30250-1,Ewar's Acro-Fighter,2013,571,33
+3025-1,25th Anniversary Silver Bucket,1998,469,601
+30251-1,Winzar's Pack Patrol,2013,571,38
+30252-1,Crug's Swamp Jet,2013,571,23
+30253-1,Leonidas' Jungle Dragster,2013,571,30
+30254-1,Razcal's Double-Crosser,2013,571,36
+30255-1,Crawley,2013,571,11
+30256-1,Ice Bear Mech,2015,571,39
+30259-1,Azari’s Magic Fire,2015,600,27
+30260-1,Lone Ranger’s Pump Car,2013,575,24
+3026-1,25th Anniversary Silver Tub,1998,469,1201
+30261-1,Tonto's Campfire,2013,575,20
+30262-1,Gorzan's Walker ,2014,571,34
+30263-1,Spider Crawler,2014,571,40
+30264-1,Frax' Phoenix Flyer,2014,571,32
+30265-1,Worriz' Fire Bike,2014,571,31
+30266-1,Sykor's Ice Cruiser,2014,571,25
+30270-1,Kraang's Turtle Target Practice,2013,570,36
+3027-1,25th Anniversary Silver Bucket,1998,399,418
+30271-1,Mikey's Mini-Shellraiser,2014,570,46
+30272-1,A-Wing Starfighter,2015,159,58
+30274-1,AT-DP,2015,159,65
+30275-1,TIE Advanced Prototype,2015,159,47
+30276-1,First Order Special Forces TIE Fighter Set,2015,158,41
+30277-1,First Order Star Destroyer,2016,184,56
+30278-1,Poe's X-wing Fighter,2015,159,64
+30279-1,Kylo Ren's Command Shuttle,2016,184,43
+30280-1,The Piece of Resistance,2014,578,33
+3028-1,25th Anniversary Silver Tub,1998,399,843
+30281-1,Micro Manager Battle,2014,578,27
+30282-1,Super Secret Police Enforcer,2014,578,40
+30283-1,Off-Road,2015,30,43
+30284-1,Tractor,2015,23,51
+30285-1,Tiger,2015,31,73
+30286-1,Christmas Tree,2015,227,65
+30291-1,Anacondrai Battle Mech,2015,435,43
+30292-1,Jay Nano Mech,2015,435,54
+30293-1,Kai Drifter,2015,435,43
+30294-1,The Cowler Dragon,2015,435,45
+30300-1,The Batman Tumbler,2014,484,57
+30301-1,Batwing,2014,484,45
+30302-1,Spider-Man,2014,488,45
+30303-1,The Joker Bumper Car,2015,484,47
+30304-1,The Avengers Quinjet,2015,487,56
+30305-1,Spider-Man Super Jumper,2015,488,38
+303-1,Basic Building Set,1987,467,33
+30310-1,Arctic Scout,2014,65,39
+30311-1,Swamp Police Helicopter,2015,61,51
+30312-1,Demolition Driller,2015,56,40
+30313-1,Garbage Truck,2015,63,48
+30314-1,Go-Kart Racer,2015,63,45
+30315-1,Space Utility Vehicle,2015,93,39
+303-2,Aeroplane,1964,374,46
+30320-1,Gallimimus Trap,2015,602,29
+3032-1,Medium Bucket,1999,469,600
+30321-1,Duck,2016,504,4
+30324-1,My Town Polybag : Female,2017,504,3
+30324-2,My Town Polybag : Policeman,2017,504,3
+30324-3,My Town Polybag : Girl,2017,504,3
+30324-4,My Town Polybag : Cat,2017,504,3
+30324-5,My Town Polybag : Male,2017,504,3
+3033-1,Basic Bulk Tub (American Version),1998,473,1200
+3033-2,Basic Bulk Tub (Overseas Version),2002,473,1200
+30338-1,Fire Car,2017,295,32
+30346-1,Prison Island Helicopter,2016,61,46
+30347-1,Fire Car,2016,58,53
+30348-1,Mini Dumper,2016,56,45
+30349-1,Sports Car,2016,52,47
+30350-1,Volcano Jackhammer,2016,52,53
+30351-1,Police Helicopter,2017,61,44
+30352-1,Police Car,2017,61,50
+30354-1,Hot Rod,2017,52,37
+30355-1,Jungle ATV,2017,614,36
+30371-1,Knight's Cycle,2016,605,41
+30372-1,Robin's Mini Fortrex,2016,605,45
+30373-1,Knighton Hyper Cannon,2016,605,47
+30374-1,The Lava Slinger,2016,605,39
+30375-1,Sira's Adventurous Airglider,2016,600,24
+30376-1,Knighton Rider,2017,605,42
+30377-1,Motor Horse polybag,2017,605,52
+30378-1,Shrunken Headquarters,2017,605,48
+3038-1,Spider Slayer,1998,3,367
+3039-1,Adventurers Plane,1999,297,23
+30396-1,Cupcake Stall,2016,494,28
+30397-1,Olaf's Summertime Fun,2016,579,48
+30398-1,Adventure Camp Bridge,2016,494,37
+30399-1,Bowling Alley,2016,494,51
+30400-1,Gymnastic Bar,2017,494,26
+3040-1,Challenger Set 200,1998,470,155
+30401-1,Emma's Pool Slide,2017,494,45
+30402-1,Snowboard Tricks,2017,494,27
+304-1,Basic Building Set,1985,467,31
+3041-1,Big Bucket of Fun,1998,470,468
+304-2,Tractor & Trailer,1964,375,82
+30421-1,Skybound Plane,2016,435,30
+30422-1,Kai's Mini Dragon,2016,435,40
+30423-1,Anchor-Jet,2016,435,38
+30424-1,WU-CRU Training Dojo,2016,435,43
+30426-1,Stealthy Swamp Airboat,2017,435,43
+30427,Zane's Ice Tank - Polybag,2017,616,71
+30428-1,Green Ninja Mech Dragon,2017,616,60
+30446-1,The Batmobile,2016,484,63
+30447-1,Captain America's Motorcycle,2016,493,25
+30448-1,Spider-Man vs. The Venom Symbiote,2016,488,49
+30449-1,The Milano,2017,493,64
+3047-1,Halloween Bucket,1998,230,256
+30471-1,Helicopter,2016,22,47
+30472-1,Parrot,2016,22,43
+30473-1,Racer,2016,591,30
+30474-1,Reindeer,2016,227,77
+30475-1,Off Roader,2017,30,33
+30476-1,Turtle,2017,31,33
+30477-1,Chameleon,2017,31,53
+30478-1,Santa Claus,2017,228,74
+30496-1,U-Wing Fighter,2017,185,55
+30497-1,First Order Heavy Assault Walker - Mini,2017,159,54
+3050-1,Shanghai Surprise,1999,434,108
+305-1,Two Crater Plates,1979,143,2
+3051-1,Blaze Attack,1999,434,144
+305-2,Fire Engine,1964,376,170
+3052-1,Ninja Fire Fortress,1999,434,173
+30521-1,The Mini Batmobile,2017,484,68
+30522-1,Batman in the Phantom Zone polybag,2016,484,59
+30523-1,The Joker Battle Training,2017,484,49
+30524-1,The Mini Batwing,2017,484,80
+3053-1,Emperor's Stronghold,1999,434,335
+3054-1,Kelloggs Promotional Set: TECHNIC Motorcycle,1998,13,30
+30546-1,Krypto Saves the Day,2017,482,55
+3055-1,Adventurers Car,1998,297,21
+3056-1,Go-Kart,1998,82,23
+3057-1,Create 'n' Race - Master Builders,2000,12,106
+3058-1,Busy City - Master Builders (Masterbuilders),2000,97,73
+3059-1,Mars Mission - Master Builders (Masterbuilders),2000,93,90
+30601-1,Scooby-Doo,2016,603,2
+30602-1,First Order Stormtrooper,2016,158,7
+30603-1,Batman Classic TV Series - Mr. Freeze,2016,484,16
+30604-1,Cosmic Boy,2016,482,7
+30605-1,Finn (FN-2187),2016,184,5
+30606-1,Nightwing,2016,482,6
+30607-1,Disco Batman - Tears of Batman,2017,484,13
+306-1,Two Lunar Landing Plates,1979,143,2
+3061-1,City Park Café,2012,494,247
+30611-1,R2-D2,2017,158,70
+30612-1,Batgirl,2017,484,11
+306-2,VW Garage,1958,372,45
+3063-1,Heartlake Flying Club,2012,494,197
+3065-1,Olivia’s Tree House,2012,494,214
+3066-1,Cosmos Glider,1999,93,19
+3066-3,Circus Acrobat Polybag,2013,504,3
+3067-1,Test Shuttle,1999,93,21
+3068-1,Radar Buggy,1999,93,25
+3069-1,Cosmic Wing,1999,93,23
+3070-1,Mosquito,1999,134,21
+3071-1,Light Flyer,1999,134,19
+307-2,VW Auto Showroom,1958,372,51
+3072-1,Mega Tack,1999,134,23
+3073-1,Booster,1999,134,21
+3074-1,Red Ninja's Dragon Glider,1999,434,20
+3075-1,Ninja Master's Boat,1999,434,21
+3076-1,White Ninja's Attack Cart,1999,434,23
+3077-1,Ninja Shogun's Small Fort,1999,434,21
+3078-1,Kellogg's Promotional Set: Car,1998,468,17
+3079-1,Kellogg's Promotional Set: Duck,1998,468,14
+3080-1,Kellogg's Promotional Set: Plane,1998,468,16
+308-1,Bracelet Sympathy,1979,404,38
+3081-1,Kellogg's Promotional Set: Helicopter,1998,468,16
+308-2,Basic Building Set,1985,467,34
+308-3,Fire Station,1958,372,109
+309-1,Bracelet Spring,1979,404,38
+309-2,Church,1958,372,149
+3093-1,Fun Playground,2001,504,31
+309314-1,Lego City - Police on Alert!,2011,497,19
+31000-1,Mini Speeder,2013,22,65
+31001-1,Mini Skyfighter,2013,22,62
+31002-1,Super Racer,2013,22,121
+31003-1,Red Rotors,2013,42,145
+31004-1,Fierce Flyer,2013,22,166
+31005-1,Construction Hauler,2013,22,256
+31006-1,Highway Speedster,2013,39,286
+31007-1,Power Mech,2013,22,223
+31008-1,Thunder Wings,2013,22,235
+31009-1,Small Cottage,2013,43,271
+31010-1,Treehouse,2013,43,356
+31011-1,Aviation Adventures,2013,42,619
+31012-1,Family House,2013,43,755
+31013-1,Red Thunder,2014,22,66
+31014-1,Power Digger,2014,22,63
+31015-1,Emerald Express,2014,22,56
+31017-1,Sunset Speeder,2014,22,119
+31018-1,Highway Cruiser,2014,22,129
+31019-1,Forest Animals,2014,22,272
+31020-1,Twinblade Adventures,2014,22,216
+31021-1,Furry Creatures,2014,22,285
+31022-1,Turbo Quad,2014,39,186
+31023-1,Yellow Racers,2014,22,328
+31024-1,Roaring Power,2014,22,374
+31025-1,Mountain Hut,2014,22,550
+31026-1,Bike Shop & Cafe,2014,22,1022
+31027-1,Blue Racer,2015,23,67
+31028-1,Sea Plane,2015,23,53
+31029-1,Cargo Heli,2015,23,132
+310-3,Tug,1973,363,45
+31030-1,Red Go-Kart,2015,23,106
+31031-1,Rainforest Animals,2015,40,215
+31032-1,Red Creatures,2015,40,221
+31033-1,Vehicle Transporter,2015,23,264
+31034-1,Future Flyer,2015,32,237
+31035-1,Beach Hut,2015,43,286
+31036-1,Toy & Grocery Shop,2015,43,465
+31037-1,Adventure Vehicles,2015,22,282
+31038-1,Changing Seasons,2015,22,535
+31039-1,Blue Power Jet,2015,22,607
+310-4,Basic Building Set,1985,467,46
+31040-1,Desert Racers,2016,22,65
+31041-1,Construction Vehicles,2016,22,64
+31042-1,Super Soarer,2016,22,100
+31043-1,Chopper transporter,2016,22,124
+31044-1,Park Animals,2016,22,202
+31045-1,Ocean Explorer,2016,22,213
+31046-1,Fast Car,2016,22,222
+31047-1,Propeller Plane,2016,22,230
+31048-1,Lakeside Lodge,2016,22,371
+31049-1,Twin Spin Helicopter,2016,22,326
+310-5,ESSO Filling Station,1958,372,96
+31050-1,Corner Deli,2016,22,467
+31051-1,Lighthouse Point,2016,22,527
+31052-1,Vacation Getaways,2016,22,791
+31053-1,Treehouse Adventures,2016,22,387
+31054-1,Blue Express,2017,22,71
+31055-1,Red Racer,2017,22,72
+31056-1,Green Cruiser,2016,22,122
+31057-1,Air Blazer,2016,22,102
+31058-1,Mighty Dinosaurs,2017,22,174
+31059-1,Sunset Street Bike,2016,22,194
+31060-1,Airshow Aces,2016,22,246
+31062-1,Robo Explorer 1,2017,22,205
+31063-1,Beachside Vacation,2017,22,275
+31064-1,Seaplane Adventures,2017,22,359
+31065-1,Park Street Townhouse,2017,22,565
+31066-1,Space Shuttle Explorer,2017,22,285
+31067-1,Modular Poolside Holiday,2017,22,356
+31068-1,Modular Modern Home,2017,22,386
+31069-1,Modular Family Villa,2017,22,728
+31070-1,Turbo Track Racer,2017,22,664
+31-1,Medium Ship Set,1973,433,0
+311-1,Ferry,1973,363,82
+311-3,Basic Set,1984,469,34
+311-4,Airplanes,1961,374,79
+31-2,Universal Joint / Connectors,1973,453,21
+312-3,Tanker,1973,363,111
+312-4,Boats,1961,377,107
+313-1,London Bus,1966,378,140
+31313-1,Mindstorms EV3,2013,262,600
+314-1,Police Boat,1976,363,52
+314-2,Large & Small Wheels & Turn-Table,1963,379,35
+3146-1,Carry and Shopping Accessories,1999,451,12
+315-1,Basic Building Set,1990,467,62
+315-2,Container Transport,1976,363,84
+315-3,European Taxie,1963,378,48
+316-1,Fire Fighter Ship,1978,363,141
+316-2,Farm Tractor,1963,375,49
+317-1,Truck,1963,378,125
+317-2,Basic Building Set,1987,467,68
+3177-1,Small Car,2010,63,43
+3178-1,Seaplane,2010,59,101
+3179-1,Repair Truck,2010,63,122
+3180-1,Tank Truck,2010,50,221
+318-1,Windmill Set,1963,367,153
+3181-1,Passenger Plane,2010,53,308
+3181-2,Passenger Plane - ANA Version,2010,53,296
+3182-1,Airport,2010,53,704
+3183-1,Stephanie’s Cool Convertible,2012,494,149
+3184-1,Adventure Camper,2012,494,324
+3185-1,Summer Riding Camp,2012,494,1160
+3186-1,Emma's Horse Trailer,2012,494,233
+3187-1,Butterfly Beauty Shop,2012,494,241
+3188-1,Heartlake Vet,2012,494,371
+3189-1,Heartlake Stables,2012,494,424
+319-1,Truck with Trailer,1965,378,74
+3194-1,Clikits Bracelet Heart,2004,500,9
+3195-1,Clikits Bracelet Daisy,2004,500,9
+3196-1,Clikits Bracelet Star,2004,500,9
+3197-1,Small Aircraft,2001,466,15
+320-1,Basic Building Set,1985,467,78
+320-2,Airplane,1965,374,120
+321-1,Clowns,1965,366,223
+3219-1,TIE Fighter - Mini,2003,159,12
+32-2,Large Ship Set,1973,433,57
+322-1,Basic Set,1981,469,82
+3221-1,LEGO® City Truck,2010,63,277
+322-2,Town House,1964,367,171
+3222-1,Helicopter and Limousine,2010,53,250
+322-3,Basic Building Set + Storage Case,1983,469,2
+3223-1,Orange Fish,2003,204,43
+3225-1,Classic Train,1998,236,281
+3226-1,Cars and Planes,1998,399,311
+323-1,Train,1964,380,253
+3233-1,Fantasy Bird,1998,399,28
+3234-1,Fantasy Boat,1998,399,27
+324-1,Ricky Racoon on his Scooter,1979,390,2
+324-2,House with Garage,1964,367,174
+3243-1,Scala Kitchen,1997,301,13
+325-1,Basic Building Set,1990,467,109
+325-2,Percy Pig's Wheelbarrow,1979,390,4
+325-3,Shell Service Station,1966,367,101
+3259-1,Kanoka Launcher And Disc,2004,346,2
+326-1,Small Cottage,1965,367,63
+327-1,Basic Building Set,1987,467,107
+328-1,Moe Mouse's Roadster,1979,390,23
+328-2,Biplane,1967,374,44
+3287-1,Takutanuva,2004,347,2
+329-1,Antique Car,1967,378,111
+329-2,Bernard Bear and Pickup Truck,1979,390,27
+3300000-1,"The Brick Apple (LEGO Store Grand Opening Set, Rockefeller Center, New York, NY)",2010,408,133
+3300001-1,Brickley,2011,22,197
+3300002-1,Holiday Set 2 of 2,2011,227,117
+3300003-1,Lego Brand Retail Store,2012,408,279
+3300005-1,"LEGO Store Grand Opening Exclusive Set, Copenhagen (København), Denmark",2011,408,56
+3300006-1,"The Routemaster Bus (LEGO Store Grand Opening Set, Westfield, London, UK)",2011,408,117
+3300014-1,Holiday Set 2012,2012,227,109
+3300020-1,Holiday Set 1 of 2,2011,227,98
+3300-1,Harold the Helicopter,2006,504,6
+330-1,Basic Building Set,1985,467,158
+330-2,Gas Station,1978,364,211
+3302-1,Soccer Field,1998,462,2
+330-3,Jeep,1968,378,65
+3303-1,Field Accessories,1998,462,50
+3304-1,Dutch National Player,1998,462,4
+3305-1,World Team Player,1998,462,4
+3305-2,World Team Player - Limited Edition (England),1998,462,4
+3305-3,World Team Player - Limited Edition (Netherlands),1998,462,4
+3306-1,Soccer Goalies,1998,462,8
+3308-1,Tribune,1998,462,85
+3309-1,Head Tribune,1998,462,95
+3310-1,Commentator and Press Box,1998,462,94
+331-1,Dump Truck,1967,381,45
+3311-1,Camera Tower,1998,462,100
+3312-1,Medic's Station,1998,462,78
+3313-1,Light Poles,1998,462,101
+3314-1,Stadium Security,1998,462,143
+3315-1,Olivia’s House,2012,494,733
+3316-1,"Advent Calender 2012, Friends",2012,216,24
+3316-10,"Advent Calendar 2012, Friends (Day 9) - Breakfast",2012,226,8
+3316-11,"Advent Calendar 2012, Friends (Day 10) - Sled Trailer #1",2012,226,10
+3316-12,"Advent Calendar 2012, Friends (Day 11) - Present for Dog",2012,226,8
+3316-13,"Advent Calendar 2012, Friends (Day 12) - Dog",2012,226,1
+3316-14,"Advent Calendar 2012, Friends (Day 13) - Stool and Plate with Candies",2012,226,9
+3316-15,"Advent Calendar 2012, Friends (Day 14) - Dog Basket with Bone",2012,226,9
+3316-16,"Advent Calendar 2012, Friends (Day 15) - Sled Trailer #2",2012,226,8
+3316-17,"Advent Calendar 2012, Friends (Day 16) - Basket with Broom and Snow Balls",2012,226,6
+3316-18,"Advent Calendar 2012, Friends (Day 17) - Mailbox with Letter",2012,226,8
+3316-19,"Advent Calendar 2012, Friends (Day 18) - Lime/White Present With Letter",2012,226,8
+3316-2,"Advent Calendar 2012, Friends (Day 1) - Olivia, Long Sleeve Chrismas Top",2012,226,4
+3316-20,"Advent Calendar 2012, Friends (Day 19) - Handbag",2012,226,1
+3316-21,"Advent Calendar 2012, Friends (Day 20) - Flower Arrangement",2012,226,8
+3316-22,"Advent Calendar 2012, Friends (Day 21) - Fireplace",2012,226,21
+3316-23,"Advent Calendar 2012, Friends (Day 22) - Christmas Tree",2012,226,18
+3316-24,"Advent Calendar 2012, Friends (Day 23) - Medium Blue/White Present with Letter",2012,226,11
+3316-25,"Advent Calendar 2012, Friends (Day 24) - Corner Table with Beauty Accessories",2012,226,11
+3316-3,"Advent Calendar 2012, Friends (Day 2) - Sled",2012,226,9
+3316-4,"Advent Calendar 2012, Friends (Day 3) - Street Light with Garland",2012,226,12
+3316-5,"Advent Calendar 2012, Friends (Day 4) - Skis and Ski Poles",2012,226,4
+3316-6,"Advent Calendar 2012, Friends (Day 5) - Snowman",2012,226,7
+3316-7,"Advent Calendar 2012, Friends (Day 6) - Christina, Red Christmas Outfit",2012,226,4
+3316-8,"Advent Calendar 2012, Friends (Day 7) - Friends Accessories",2012,226,20
+3316-9,"Advent Calendar 2012, Friends (Day 8) - Table with Stool",2012,226,9
+3317-1,German National Player,1998,462,4
+3318-1,English Player,1998,462,4
+3320-1,Austrian Player,1998,462,4
+332-1,Tow Truck,1967,378,56
+3323-1,Kaufhof Promotional Set: German National Player and Ball,1998,462,5
+3324-1,Kaufhof Promotional Set: World Team Player and Ball,1998,462,5
+3330-1,Racing Car,1998,468,17
+333-1,Basic Set,1981,469,100
+3331-1,Bird,1998,468,14
+333-2,Delivery Truck,1967,382,68
+3332-1,Plane,1998,468,18
+3333-1,Helicopter,1998,468,17
+3340-1,Star Wars #1 - Sith Minifig Pack,2000,166,30
+334-1,Truck with Flatbed,1967,382,72
+3341-1,Star Wars #2 - Luke/Han/Boba Minifig Pack,2000,169,25
+3342-1,Star Wars #3 - Troopers/Chewie Minifig Pack,2000,169,25
+3343-1,Star Wars #4 - Battle Droid Minifig Pack,2000,166,33
+3344-1,One Minifig Pack - Ninja #1,2000,434,10
+3345-1,Three Minifig Pack - Ninja #2,2000,434,24
+3346-1,Three Minifig Pack - Ninja #3,2000,434,26
+3347-1,One Minifig Pack - Rock Raiders #1,2000,442,8
+3348-1,Three Minifig Pack - Rock Raiders #2,2000,442,23
+3349-1,Three Minifig Pack - Rock Raiders #3,2000,442,29
+3350-1,City #1,2000,50,27
+335-1,Basic Building Set,1990,467,245
+3351-1,Three Minifig Pack - City #2,2000,50,24
+335-2,Transport Truck,1967,382,99
+336-1,Fire Engine,1968,376,76
+3365-1,Moon Buggy,2011,52,37
+3366-1,Satellite Launcher,2011,52,164
+3367-1,Space Shuttle,2011,52,230
+3368-1,Rocket Launch Center,2011,52,498
+337-1,Basic Building Set,1987,467,225
+337-2,Truck with Crane and Caterpillar Track,1969,381,92
+3380-1,Johnny Thunder Chupa Chups Promotional,2003,300,5
+338-1,Ambulance,1970,420,74
+3381-1,Lord Sam Sinister Chupa Chups Promotional,2003,300,5
+338-2,Blondi the Pig and Taxi Station,1979,390,35
+3382-1,Jing Lee the Wanderer Chupa Chups Promotional,2003,300,4
+3383-1,Chef,2003,109,6
+3384-1,Train Worker Chupa Chups Promotional,2003,239,4
+3385-1,Conductor Charlie,2003,239,6
+3386-1,Xtreme Stunts Pepper Roni Chupa Chups Promotional,2003,407,4
+3387-1,Xtreme Stunts Brickster Chupa Chups Promotional,2003,407,4
+3388-1,Xtreme Stunts Snap Lockitt Chupa Chups Promotional,2003,407,4
+3389-1,Skateboarder Bill Chupa Chups Promotional,2003,460,7
+3390-1,Basketball Street Player Chupa Chups Promotional,2003,459,5
+3391-1,"Dash, Mission Deep Sea, Chupa Chups Promotional",2003,305,9
+3-4,Basic Set,1973,469,191
+340-1,Basic Building Set,1985,467,220
+3401-1,Shoot 'n' Score - without ZIDANE / Adidas Minifig,2000,462,24
+3401-2,Shoot 'n' Score - with ZIDANE / Adidas Minifig,2000,462,24
+340-2,Fire Trucks,1978,364,277
+3402-1,Grandstand with Lights,2000,462,60
+340-3,Railroad Control Tower,1968,367,74
+3403-1,Fans' Grandstand with Scoreboard,2000,462,80
+3404-1,Black Bus,2000,462,130
+3405-1,Blue Bus,2000,462,130
+3406-1,Americas Bus,2000,462,130
+3407-1,Red Bus,2000,462,130
+3408-1,Super Sports Coverage,2000,462,224
+3409-1,Championship Challenge,2000,462,293
+3409-2,Championship Challenge - Special Edition with Orange Players,2000,462,1
+3409-3,Championship Challenge,2000,462,295
+3410-1,Field Expander,2000,462,52
+341-1,Warehouse,1968,367,123
+3411-1,Team Transport Bus,2000,462,131
+341-2,Cathy Cat's & Morty Mouse's Cottage,1979,390,114
+3412-1,Point Shooting,2000,462,24
+3413-1,Goal Keeper,2000,462,27
+3414-1,Precision Shooting,2000,462,22
+3416-1,Women's Team,2001,462,67
+3418-1,Point Shooting,2001,462,24
+3419-1,Precision Shooting,2001,462,23
+3420-1,Championship Challenge II,2002,462,387
+3420-2,Championship Challenge II - FC Bayern Promo Edition,2003,462,387
+3420-3,Championship Challenge II - L'Equipe de France Promo Edition,2002,462,387
+3420-4,Championship Challenge II - Sports Edition,2004,462,387
+342-1,Station,1968,367,191
+3421-1,3 v 3 Shootout,2002,462,224
+3422-1,Shoot 'N Save (non-promo),2002,462,110
+3422-2,Shoot 'N Save (FC Bayern Promo Edition),2003,462,114
+3423-1,Freekick Frenzy,2002,462,52
+3424-1,Target Practice,2002,462,36
+3425-1,Grand Championship Cup - U.S. Men's Team Cup Edition,2002,462,568
+3425-2,Grand Championship Cup,2002,462,568
+3426-1,Team Transport Bus Adidas Edition,2002,462,131
+3427-1,NBA Slam Dunk,2003,459,55
+3428-1,One vs One Action,2003,459,39
+3429-1,Ultimate Defense,2003,459,82
+3430-1,Spin & Shoot,2002,459,70
+343-1,Train Ferry,1968,377,147
+3431-1,Streetball 2 vs 2,2003,459,186
+3432-1,NBA Challenge,2003,459,450
+3433-1,NBA Ultimate Arena,2003,459,490
+3438-1,McDonald's Restaurant,1999,75,93
+3439-1,Spy Runner,2000,68,105
+3440-1,NBA Jam Session Co-Pack,2003,459,71
+344-1,Bungalow,1969,413,77
+344-2,Service Station,1979,390,85
+3442-1,"Legoland California Truck, Limited Edition",1998,85,104
+3444-1,2 x 4 Ridge Roof Tiles Steep Sloped Black,2000,254,25
+3445-1,2 x 4 Ridge Roof Tiles Steep Sloped Red,2000,254,25
+3446-1,2 x 2 Window White,2000,254,25
+3447-1,1 x 3 x 4 Wall Element Transparent Blue (Train Window),2000,254,25
+3448-1,1 x 4 x 5 Black Window Frames with Clear Panes,2000,254,20
+3449-1,1 x 4 x 6 Black Door Frame with Transparent Blue Panes,2000,254,10
+3450-1,Statue of Liberty,2000,276,2899
+345-1,House with Mini Wheel Car,1969,413,132
+3451-1,Sopwith Camel,2001,276,575
+345-2,Small Bucket for Her,1993,467,135
+3453-1,2 x 2 Black Bricks,2000,254,100
+3454-1,2 x 2 Light Gray Bricks,2003,254,100
+3455-1,2 x 2 White Bricks,2003,254,100
+3456-1,2 x 2 Dark Green Bricks,2000,254,100
+3457-1,2 x 2 Red Bricks,2000,254,100
+3458-1,2 x 4 Black Bricks,2000,254,50
+3459-1,2 x 4 Light Gray Bricks,2003,254,50
+3460-1,2 x 4 White Bricks,2003,254,50
+346-1,Jumbo Jet,1970,412,117
+3461-1,2 x 4 Dark Green Bricks,2000,254,50
+346-2,House with Car,1969,413,167
+3462-1,2 x 4 Red Bricks,2000,254,50
+3463-1,2 x 8 Black Bricks,2000,254,25
+3464-1,2 x 8 Light Gray Bricks,2003,254,25
+3465-1,2 x 8 White Bricks,2003,254,25
+3466-1,2 x 8 Dark Green Bricks,2000,254,25
+3467-1,2 x 8 Red Bricks,2000,254,25
+3468-1,1 x 4 Black Bricks,2000,254,50
+3469-1,1 x 4 Light Gray Bricks,2003,254,50
+3470-1,1 x 4 White Bricks,2003,254,50
+347-1,Fire Station with Mini Cars,1970,417,205
+3471-1,1 x 4 Dark Green Bricks,2000,254,50
+347-2,Basic Building Set,1987,467,330
+3472-1,1 x 4 Red Bricks,2000,254,50
+347-3,Doc David's Hospital,1979,391,105
+3473-1,1 x 6 Black Bricks,2000,254,50
+3474-1,1 x 6 Light Gray Bricks,2000,254,50
+3475-1,1 x 6 White Bricks,2000,254,50
+3476-1,1 x 6 Dark Green Bricks,2000,254,50
+3477-1,1 x 6 Red Bricks,2000,254,50
+3478-1,1 x 8 Black Bricks,2000,254,25
+3479-1,1 x 8 Light Grey Bricks,2000,254,25
+3480-1,1 x 8 White Bricks,2003,254,25
+348-1,Garage with Automatic Doors,1971,413,38
+3481-1,1 x 8 Dark Green Bricks,2000,254,25
+3482-1,1 x 8 Red Bricks,2000,254,25
+3483-1,2 x 4 Black Plates,2000,254,100
+3484-1,2 x 4 White Plates,2000,254,100
+3485-1,2 x 4 Red Plates,2000,254,100
+3486-1,1 x 6 Black Plates,2000,254,50
+3487-1,1 x 6 White Plates,2000,254,50
+3488-1,1 x 6 Red Plates,2000,254,50
+3489-1,2 x 8 Black Plates,2000,254,25
+3490-1,2 x 8 White Plates,2000,254,25
+349-1,Swiss Chalet,1971,413,81
+3491-1,2 x 8 Red Plates,2000,254,25
+3492-1,2 x 2 Black Smooth Tiles,2000,254,100
+3493-1,2 x 2 White Smooth Tiles,2000,254,100
+3494-1,2 x 2 Red Smooth Tiles,2000,254,100
+3495-1,2 x 2 Roof Tiles Steep Sloped Black,2003,254,100
+3496-1,2 x 2 Roof Tiles Steep Sloped Red,2003,254,100
+3497-1,2 x 4 Roof Tile Black,2003,254,50
+3498-1,2 x 4 Roof Tile Red,2000,254,50
+3499-1,Small Spruce Trees,2000,254,25
+3500-1,Kobe Bryant,2003,459,4
+350-1,Spanish Villa,1971,413,126
+3501-1,Jet-Car,1998,480,26
+350-2,Basic Building Set,1985,467,315
+3502-1,Bi-Wing,1998,480,24
+350-3,Town Hall with Leonard Lion & Friends,1979,390,134
+3503-1,Mini-Sonic,1998,480,22
+3504-1,Hook-Truck,1998,480,30
+3505-1,Aeroplane,1999,480,23
+3506-1,Motorbike,1999,480,26
+3507-1,1 x 4 x 3 Wall Element Clear,2001,254,25
+3508-1,1 x 4 x 5 Black Window Frame with Blue Pane,2001,254,20
+35-1,Screws for Motor Case,1977,443,2
+3510-1,Polybag,1998,480,25
+351-1,Loader Hopper with Truck,1971,416,170
+3520-1,Forklift,1999,480,39
+352-1,Windmill and Lorry,1972,413,142
+3521-1,Racer,1999,480,35
+3529-1,Pau Gasol,2003,459,4
+3530-1,Tony Parker,2003,459,4
+353-1,Terrace House with Car and Garage,1972,413,153
+3531-1,Tri-Bike,1998,480,29
+3532-1,Jet-Ski,1998,480,27
+3535-1,Skateboard Street Park,2003,460,68
+3536-1,Snowboard Big Air Comp,2003,460,81
+3537-1,Skateboard Vert Park Challenge,2003,460,91
+3538-1,Snowboard Boarder Cross Race,2003,460,196
+3540-1,Puck Passer,2003,461,45
+354-1,Police Heliport,1972,421,173
+3541-1,Slap Shot,2003,461,46
+3542-1,Flip Shot,2003,461,47
+3543-1,Slammer Goalie,2003,461,46
+3544-1,Hockey Game Set,2003,461,153
+3545-1,Hockey Puck Feeder,2003,461,151
+3548-1,Slam Dunk Trainer,2003,459,19
+3548-2,Slam Dunk Trainer (Kabaya Promotional),2003,459,19
+3549-1,Practice Shooting,2003,459,17
+3549-2,Practice Shooting (Kabaya Promotional),2003,459,17
+3550-1,Jump and Shoot,2003,459,17
+3550-2,Jump and Shoot (Kabaya Promotional),2003,459,17
+355-1,Town Center Set with Roadways,1972,413,332
+3551-1,Dino-Jet,1998,480,80
+355-2,Basic Set,1981,469,160
+3552-1,Hover Sub with motor,1998,480,126
+3554-1,Helicopter,1999,480,79
+3555-1,Jeep,1999,480,262
+3557-1,Blue Player & Goal,2004,461,33
+3558-1,Red Player & Goal,2004,461,33
+3559-1,Red & Blue Player,2004,461,40
+3560-1,NBA Collectors #1,2003,459,15
+356-1,Swiss Villa,1973,413,150
+3561-1,NBA Collectors #2,2003,459,15
+356-2,Basic Building Set with Storage Case,1987,467,331
+3562-1,NBA Collectors #3,2003,459,16
+3563-1,NBA Collectors #4,2003,459,15
+3564-1,NBA Collectors #5,2003,459,15
+3565-1,NBA Collectors #6,2003,459,15
+3566-1,NBA Collectors #7,2003,459,15
+3567-1,NBA Collectors #8,2003,459,15
+3568-1,Soccer Target Practice,2006,462,24
+3569-1,Grand Soccer Stadium,2006,462,382
+3570-1,Street Soccer,2006,462,199
+357-1,Fire Station,1973,417,236
+3571-1,Blackmobile with motor,1998,480,143
+3573-1,Superstar Figure ,2007,462,9
+3578-1,NHL Championship Challenge,2004,461,395
+3579-1,Street Hockey,2004,461,119
+358-1,Rocket Base,1973,422,276
+3581-1,Formula Z Car in Storage Case,1998,480,172
+3582-1,Ant,1999,480,258
+3584-1,Rapid Return,2003,459,47
+3585-1,Snowboard Super Pipe,2003,460,224
+359-1,Environment Plate,1972,473,1
+3591-1,Heli-Transport (Rota-Beast),1998,480,265
+3594-1,Bob's Workshop,2009,504,14
+3598-1,XXL 2000 Canister,2005,37,2000
+3599-1,XXL 250 Canister,2005,505,250
+3-6,Medium House Set,1970,433,158
+3600-1,Build Your Own House Tub,2005,37,1201
+360-1,Gravel Quarry,1974,416,211
+3601-1,Elton Elephant,1981,390,7
+3602-1,Bianca Lamb and Stroller,1980,390,4
+3603-1,Boris Bulldog and Mailbox,1981,392,4
+3604-1,Marc Monkey and Wheelbarrow,1980,390,4
+3605-1,Ricky Racoon and his Scooter,1980,390,2
+361-1,Tea Garden Cafe with Baker's Van,1974,413,214
+361-2,Garage,1979,85,79
+3612-1,Wild Animals,2002,504,32
+3615-1,Percy Pig's Wheelbarrow,1981,390,4
+362-1,Windmill,1975,413,211
+3622-1,Rowboat,1988,393,14
+3623-1,Beauty Salon,1988,390,25
+3624-1,Flower Car,1985,390,27
+3625-1,Aeroplane,1985,394,9
+3626-1,Roger Raccoon's Sports Car,1983,390,17
+3627-1,Bonnie Rabbit's Flower Truck,1983,390,25
+3628-1,Perry Panda & Chester Chimp,1981,390,5
+3629-1,Barney Bear,1981,390,17
+3630-1,Sports Airplane,1984,394,9
+363-1,Hospital with Figures,1975,420,229
+3631-1,Orchestra,1985,390,27
+3633-1,Motor Boat,1986,393,14
+3634-1,Charlie Crow's Carry-All,1980,390,18
+3635-1,Bonnie Bunny's Camper,1981,390,31
+3636-1,Bedroom,1987,390,21
+3637-1,Gertrude Goat's Painter's Truck,1983,390,15
+3638-1,Buster Bulldog's Fire Engine,1983,395,17
+3639-1,Police Car,1984,396,12
+364-1,Harbour Scene,1975,419,515
+3641-1,Car & Camper,1985,390,25
+3642-1,Fire Engine,1985,395,18
+3643-1,Police Car,1985,396,12
+3644-1,Mayor's Car,1986,390,11
+3645-1,Classroom,1987,390,26
+3646-1,Kitchen,1988,390,54
+3647-1,School Room,1989,390,44
+3648-1,Police Chase,2011,61,172
+365-1,Wild West Scene,1975,397,591
+365-2,Build-N-Store Chest,1990,467,337
+3654-1,Country Cottage,1982,390,44
+3658-1,Police Helicopter,2011,61,236
+3659-1,Play Ground,1987,390,17
+3660-1,Fisherman's Cottage,1985,390,28
+366-1,Basic Set,1981,469,184
+3661-1,Bank & Money Transfer,2011,61,408
+3662-1,Bus,1987,390,33
+3663-1,Max Mouse's Carousel,1989,390,22
+3664-1,Police Station,1984,396,63
+3665-1,Ice Cream with Scooter,1980,390,38
+3666-1,Petrol Station,1982,390,29
+3667-1,Bakery,1982,390,63
+3668-1,Merry-Go-Round,1986,390,48
+3669-1,Fire & Police Station,1982,390,33
+3670-1,Service Station,1984,390,54
+367-1,Moon Landing,1975,422,363
+3671-1,Airport,1984,394,55
+3672-1,Hotel / Restaurant,1982,390,63
+3673-1,Steamboat,1985,393,64
+3674-1,Bonnie Bunny's New House,1987,390,41
+3675-1,General Store,1987,390,106
+3676-1,Catherine Cat's Fun Park,1989,390,42
+3677-1,Red Cargo Train,2011,240,826
+3678-1,The Fabuland House,1982,390,114
+3679-1,Mill with Shop,1986,390,80
+3680-1,Camping Caravan,1988,390,24
+368-1,Taxi Station,1976,413,157
+3681-1,Amusement Park,1985,390,104
+3682-1,Fire Station,1987,395,153
+3683-1,Amusement Park,1988,390,91
+369-1,Coast Guard Station,1976,415,273
+370-1,Police Headquarters,1976,421,300
+3701-1,Fisherman Cornelius Cat,1982,390,3
+3703-1,Peter Pig the Cook,1982,390,3
+3704-1,Marjorie Mouse,1982,390,3
+3706-1,Elmer Elephant,1982,390,3
+3707-1,Clover Cow,1982,390,3
+3708-1,Rufus Rabbit,1982,390,4
+3709-1,"Henry Horse, Carpenter",1983,390,3
+3710-1,Peter Panda Takes a Bath,1983,390,3
+371-1,Tipper Truck,1971,416,47
+3711-1,Pierre Pig and His Tuba,1984,390,5
+371-2,Motorized Truck Set,1967,301,314
+3712-1,Robby Rabbit and Accordion,1984,390,5
+371-3,Seaplane,1977,412,115
+3713-1,Drummer Gabriel Monkey,1984,390,8
+3714-1,Bricklayer Oscar Orangutan,1985,390,7
+3715-1,Flower Stand,1985,390,20
+3716-1,Office,1985,390,9
+3717-1,Fisherman,1985,390,10
+3718-1,Small Cafe,1986,390,5
+3719-1,Bus Stop,1987,390,5
+372-1,Texas Rangers,1977,397,248
+3721-1,Clive Crocodile on Skateboard,1988,390,11
+372-2,Tow Truck,1971,397,53
+3722-1,"Treasure Tomb, TRU exclusive",1998,297,164
+3723-1,Lego Minifigure,2000,276,1849
+3724-1,Lego Dragon,2001,276,1538
+3725-1,1 x 2 Brick Light Gray,2003,254,100
+3726-1,1 x 2 Brick Dark Gray,2003,254,100
+3727-1,1 x 2 Brick Tan,2000,254,100
+3729-1,2 x 4 Dark Gray Bricks,2000,254,50
+3730-1,2 x 4 Tan Bricks,2000,254,50
+373-1,Offshore Rig with Fuel Tanker,1977,418,459
+3731-1,Pumpkin Pack,2000,230,87
+373-2,Ambulance,1971,420,65
+3732-1,Castle Expander Pack,2000,255,24
+3733-1,Gray Windows with Clear Panes,2000,254,20
+3734-1,Train Windows with Panes Blue,2000,254,20
+3735-1,Grey Train Doors with Panes,2000,257,20
+3736-1,Blue Train Doors with Panes,2000,257,20
+3737-1,Train Accessories,2000,257,15
+3738-1,Large Spruce Trees,2000,254,10
+3739-1,Blacksmith Shop,2002,200,629
+3740-1,Small Locomotive,2001,238,66
+374-1,Fire Station,1978,74,334
+3741-1,Large Locomotive (base unit without color trim elements),2001,238,91
+374-2,Fire Engine,1971,417,73
+3742-1,Tender Basis (without color trim elements),2001,238,41
+3743-1,Locomotive Blue Bricks,2001,238,106
+3744-1,Locomotive Green Bricks,2001,238,106
+3745-1,Locomotive Black Bricks,2001,238,106
+3746-1,Locomotive Brown Bricks,2001,238,106
+3747-1,Locomotive Gray Bricks,2001,238,106
+3748-1,Light Unit for Train,2001,456,4
+3750-1,Life on Mars Accessories,2001,452,48
+3751-1,1 x 2 Brown Bricks,2003,254,100
+375-2,Castle,1978,189,776
+3752-1,1 x 6 Brown Bricks,2002,254,50
+375-3,Refrigerator Truck and Trailer,1971,397,127
+3753-1,2 x 2 Brown Bricks,2003,254,100
+3754-1,2 x 4 Brown Bricks,2003,254,50
+3755-1,2 x 4 Roof Tile Brown,2003,254,50
+3756-1,2 x 4 Brown Ridge Roof Tiles Steep Sloped,2003,254,25
+3758-1,35th Anniversary Bucket,1998,469,600
+3759-1,35th Anniversary Tub,1998,469,1200
+3760-1,35th Anniversary Bucket,1998,399,417
+376-1,Low-Loader with Excavator,1971,416,91
+3761-1,35th Anniversary Tub,1998,399,842
+376-2,Town House with Garden,1978,69,244
+377-1,Shell Service Station,1978,76,190
+377-2,Crane with Float Truck,1971,416,90
+3774-1,Bridge,2005,388,26
+3775-1,Points,2005,504,2
+378-1,Tractor,1972,397,36
+3781-1,Maximillian Mouse,1982,390,5
+3782-1,Photographer Patrick Parrot,1982,390,5
+3784-1,Hugo Hog the Tinker,1982,390,5
+3786-1,Buzzy Bulldog the Postman,1982,392,7
+3787-1,"Hannah Hippopotamus, Gardener",1983,390,13
+3788-1,Paulette Poodle's Living Room,1983,390,15
+3789-1,Police Motorcycle,1984,396,7
+379-1,Bus Station,1979,85,177
+3791-1,William Walrus,1984,390,7
+379-2,Car and Caravan,1972,397,93
+3792-1,Bedroom,1985,390,16
+3793-1,Buzzy Bulldog's Mailbox,1985,392,11
+3794-1,Police Motorcycle,1985,396,16
+3795-1,Kitchen,1985,390,26
+3796-1,Small Bakery,1986,390,31
+3797-1,Fire Chief Barty Bulldog,1987,395,9
+3798-1,Hanna's Garden,1988,390,25
+3-8,Mini-Wheel Model Maker No. 3,1971,423,65
+3800-1,Ultimate Builders Set,2001,260,322
+380-1,Village Set,1971,413,7
+3801-1,Ultimate Accessories,2000,260,45
+3803-1,Robotics Invention System Upgrade Kit (1.5),1999,260,69
+3804-1,"Robotics Invention System, Version 2.0",2001,260,720
+3805-1,Robotics Invention System Upgrade Kit (2.0),2002,260,1
+3806-1,Gigamesh G60,2002,463,286
+3807-1,Snaptrax S45,2002,463,203
+3808-1,Shadowstrike S70,2002,463,236
+3809-1,Technojaw T55,2002,463,262
+381-1,Lorry and Fork Lift Truck,1973,416,86
+381-2,Police Headquarters,1979,80,372
+3815-1,Heroic Heroes of the Deep,2011,272,95
+3816-1,Glove World,2011,272,168
+3817-1,The Flying Dutchman,2012,272,242
+3818-1,Bikini Bottom Undersea Party,2012,272,469
+382-1,Breakdown Truck and Car,1973,397,91
+3825-1,Krusty Krab,2006,272,297
+3826-1,Build-A-Bob,2006,272,445
+3827-1,Adventures in Bikini Bottom,2006,272,576
+3828-1,Air Temple,2006,317,400
+3829-1,Fire Nation Ship,2006,317,724
+3830-1,The Bikini Bottom Express,2008,272,209
+383-1,Truck with Excavator,1973,416,102
+3831-1,Rocket Ride,2008,272,276
+383-2,Knight's Tournament,1979,189,210
+3832-1,The Emergency Room,2008,272,235
+3833-1,Krusty Krab Adventures,2009,272,208
+3834-1,Good Neighbors at Bikini Bottom,2009,272,423
+3835-1,Robo Champ,2009,502,119
+3836-1,Magikus,2009,502,109
+3837-1,Monster 4,2009,502,142
+3838-1,Lava Dragon,2009,502,136
+3839-1,Race 3000,2009,502,167
+3840-1,Pirate Code,2009,502,278
+384-1,London Bus,1973,397,110
+3841-1,Minotaurus,2009,502,223
+3842-1,Lunar Command,2009,502,277
+3843-1,Ramses Pyramid,2009,502,231
+3844-1,Creationary,2009,502,341
+3845-1,Shave a Sheep,2010,502,118
+3846-1,UFO Attack,2010,502,88
+3847-1,Magma Monster,2010,502,95
+3848-1,Pirate Plank,2010,502,122
+3849-1,Orient Bazaar,2010,502,216
+3850031-1,Puffin,2017,410,50
+3850033-1,Guardsman,2017,410,44
+3850-1,Meteor Strike,2010,502,185
+385-1,Jeep CJ-5,1976,397,58
+3851-1,Atlantis Treasure,2010,502,280
+385-2,Build-N-Store Chest,1990,467,450
+3852-1,Sunblock,2011,502,80
+3853-1,Banana Balance,2011,502,49
+3854-1,Frog Rush,2011,502,107
+3855-1,Ramses Return,2011,502,99
+3856-1,Ninjago,2011,502,247
+3857-1,Draida Bay,2011,502,101
+3858-1,Waldurk Forest,2011,502,231
+3859-1,Caverns of Nathuz,2011,502,223
+3860-1,Castle Fortaan,2011,502,312
+386-1,Helicopter and Ambulance,1976,420,142
+3861-1,LEGO Champion,2011,502,216
+3862-1,Hogwarts,2010,502,332
+3863-1,Kokoriko,2012,502,115
+3864-1,Mini Taurus,2012,502,165
+3865-1,City Alarm,2012,502,246
+3866-1,Star Wars Battle of Hoth,2012,502,305
+3870-1,Takeshi Walker 1,2007,389,29
+387-1,Excavator and Dumper,1976,416,159
+3871-1,Ha-Ya-To Walker,2007,389,21
+3872-1,Robo Chopper,2007,389,29
+3874-1,Ilrion,2012,502,245
+3885-1,Hikaru Little Flyer,2007,389,22
+3885-2,Hikaru Little Flyer - Boxed Version,2007,389,22
+3885-3,Hikaru Little Flyer - Duracell 12 pack AA Battery Promotion,2007,389,1
+3886-1,Ryo Walker,2007,389,19
+3886-2,Ryo Walker - Boxed Version,2007,389,19
+3886-3,Ryo Walker - Duracell 12 pack AA Battery Promotion,2007,389,1
+3888-1,Three Eights,1998,399,182
+3900-1,Bracelet,2000,451,20
+390-1,Helicopter,1986,467,24
+390-2,1913 Cadillac,1975,404,199
+39-1,Motor Gearbox,1977,443,1
+391-1,1926 Renault,1975,404,236
+3911-1,Astronaut Key Chain,2000,503,0
+391-2,Police Car,1986,467,22
+3913-1,Darth Vader Key Chain,2000,503,0
+391407-1,Fire Spinner,2014,571,21
+3914-1,Luke Skywalker Key Chain,2000,503,0
+3915-1,Race Car Driver Key Chain,2000,503,0
+3916-1,Rock Raider Key Chain,2000,503,0
+3917-1,2 x 4 Brick - Red Key Chain,2001,503,0
+3918-1,Coast Guard Female Key Chain,2002,503,0
+3920-1,The Hobbit,2012,502,394
+392-1,Formula 1,1975,404,196
+392-2,Fire Engine,1986,467,30
+3922-1,Darth Maul Key Chain,2000,503,0
+3923-1,King Leo Key Chain,2000,503,0
+3924-1,Director Key Chain,2001,503,0
+3925-1,Brickster Key Chain,2002,503,0
+3926-1,Life on Mars Martian Key Chain,2002,503,0
+3928-1,Sandy Moondust Mars Rover Mission Astrobot Female,2002,126,5
+3929-1,Biff Starling Mars Rover Mission Astrobot Male,2002,126,5
+3930-1,Stephanie's Outdoor Bakery,2012,494,45
+393-1,Norton Motorcycle,1976,404,133
+3931-1,Emma's Splash Pool,2012,494,43
+393-2,Tow Truck,1986,467,29
+3932-1,Andrea’s Stage,2012,494,83
+3933-1,Olivia's Invention Workshop,2012,494,86
+3934-1,Mia’s Puppy House,2012,494,83
+3935-1,Stephanie’s Pet Patrol,2012,494,73
+3936-1,Emma’s Fashion Design Studio,2012,494,77
+3937-1,Olivia's Speedboat,2012,494,64
+3938-1,Andrea's Bunny House,2012,494,64
+3939-1,Mia's Bedroom,2012,494,86
+394-1,Harley-Davidson 1000cc,1976,404,142
+3942-1,Heartlake Dog Show,2012,494,202
+3948-1,Stormtrooper Key Chain,2001,503,0
+395-1,1909 Rolls-Royce,1976,404,283
+396-1,Thatcher Perkins Locomotive,1976,404,433
+3961-1,Johnny Thunder Key Chain,1998,503,0
+398-1,U.S.S. Constellation,1978,404,973
+3983-1,Captain Roger Key Chain,2002,503,0
+4000001-1,Moulding Machines,2011,408,794
+4000002-1,LOM Moulding 2011,2011,301,174
+4000005-1,Kornmarken Factory 2012,2012,301,315
+4000006-1,Production Kladno Campus 2012,2012,301,278
+4000007-1,Ole Kirk's House,2012,301,909
+4000008-1,LEGO Inside Tour Exclusive 2013 Edition – Villy Thomsen Truck,2013,301,366
+4000009-1,HMV 2013 Production,2013,408,285
+40000-1,Santa Claus in the Snow,2009,227,159
+4000010-1,LEGO House,2014,408,250
+4000011-1,Nyiregyhaza Factory,2014,408,327
+4000012-1,LEGO Inside Tour (LIT) Exclusive 2012 Edition - Piper Airplane,2012,301,618
+4000013-1,A LEGO Christmas Tale,2013,408,394
+4000014-1,The LEGOLAND Train,2014,408,545
+4000015-1,LOM Building B,2014,408,215
+4000016-1,Billund Airport,2014,408,281
+40001-1,Santa Claus,2009,227,42
+40002-1,Christmas Tree,2009,227,61
+40003-1,Snowman,2009,227,44
+40004-1,Heart 2010,2010,232,26
+40005-1,Bunny,2010,229,81
+40008-1,Snowman Building Set,2010,227,64
+40009-1,Holiday Building Set,2010,227,85
+400-1,Universal Building Set,1977,469,317
+40010-1,Santa with Sleigh Building Set,2010,227,71
+40011-1,Thanksgiving Turkey,2010,231,52
+40012-1,Halloween Pumpkin,2010,230,18
+40013-1,Halloween Ghost,2010,230,18
+40014-1,Halloween Bat,2010,230,25
+40015-1,Heart Book,2011,206,51
+40016-1,Valentine Letter Set,2011,232,41
+40017-1,Easter Basket,2011,229,86
+40018-1,Easter Bunny with Eggs,2011,229,95
+40019-1,Brickley,2011,22,59
+40020-1,Halloween Set,2011,230,71
+4002014-1,LEGO HUB Birds,2015,301,466
+4002015-1,Borkum Riffgrund 1,2015,598,558
+4002016-1,50 Years On Track,2016,301,1142
+4002-1,Riptide Racer,1996,363,53
+40021-1,Spiders Set,2011,230,54
+40022-1,Mini Santa Set,2011,227,72
+40023-1,Holiday Stocking,2011,227,76
+40024-1,Christmas Tree,2011,227,77
+40025-1,{Yellow Cab},2012,22,43
+40026-1,"Statue of Liberty (LEGO Store, Rockefeller Center, New York, NY)",2012,408,38
+40028-1,Mini Hogwarts Express,2011,246,64
+40029-1,Heart 2012,2012,206,51
+400-3,Small Wheels with Axles (The Building Toy),1966,371,12
+40030-1,Duck with Ducklings,2012,229,51
+40031-1,Bunny and Chick,2012,229,52
+40032-1,Witch,2012,230,71
+40033-1,Turkey,2012,231,52
+40034-1,Christmas Train,2012,227,82
+40035-1,Rocking Horse,2012,227,49
+40036-1,Monthly Mini Model Build January 2012 - Cobra,2012,409,37
+40037-1,Monthly Mini Model Build February 2012 - Hockey Player,2012,409,43
+40038-1,Monthly Mini Model Build March 2012 - Garden and Earthworm,2012,409,33
+40039-1,Monthly Mini Model Build May 2012 - Tulip,2012,409,16
+400-4,Small Wheels with Axles (System),1963,371,12
+40040-1,Monthly Mini Model Build July 2012 - Olympic Flame,2012,409,15
+40041-1,Monthly Mini Model Build December 2012 - Moose,2012,409,27
+40042-1,Monthly Mini Model Build October 2012 - Cat,2012,409,25
+40043-1,Monthly Mini Model Build April 2012 - Duck,2012,409,24
+40044-1,Monthly Mini Model Build June 2012 - Lawnmower,2012,409,25
+40045-1,Monthly Mini Model Build August 2012 - Shark,2012,409,27
+40045-2,"Monthly Mini Model Build Set - 2013 August, Shark [Europe]",2013,409,27
+40047-1,Monthly Mini Model Build September 2012 - Owl,2012,409,41
+40048-1,Birthday Cake,2012,206,24
+40049-1,Mini Sopwith Camel,2012,22,65
+4005-1,Tug Boat,1982,363,65
+40051-1,Valentine’s Day Heart Box,2013,232,54
+40052-1,Springtime Scene,2013,206,88
+40053-1,Easter Bunny with Basket,2013,229,96
+40054-1,Summer Scene,2013,206,40
+40055-1,Pumpkin,2013,230,52
+40056-1,Thanksgiving Feast,2013,206,46
+40057-1,Fall Scene,2013,206,72
+40058-1,Decorating The Tree,2013,228,110
+40059-1,Santa's Sleigh,2013,228,77
+40061-1,Monthly Mini Model Build January 2013 - Igloo,2013,409,40
+40062-1,Monthly Mini Model Build Set February 2013 - Log Cabin,2013,409,59
+40063-1,Monthly Mini Model Build March 2013 - Turtle,2013,409,33
+40064-1,Monthly Mini Model Build Set April 2013 - Lamb and Sheep,2013,409,32
+40065-1,Monthly Mini Model Build May 2013 - Kingfisher,2013,409,21
+40066-1,Monthly Mini Model Build June 2013 - Fisherman,2013,409,38
+40067-1,Monthly Mini Model Build July 2013 - Crab,2013,409,37
+40068-1,Monthly Mini Model Build August 2013 - Flamingo,2013,409,31
+40069-1,Monthly Mini Model Build September 2013 - Pirate,2013,409,44
+40070-1,Monthly Mini Model Build October 2013 - Witch,2013,409,22
+40071-1,Monthly Mini Model Build November 2013 - Tractor,2013,409,44
+40072,Monthly Mini Model Build December 2013 - Rocking Horse,2013,409,32
+40073-1,Panda,2013,31,70
+40076-1,Zombie Car,2012,558,60
+40077-1,Geoffrey,2013,22,90
+40078-1,Hot Dog Cart,2013,22,39
+40079-1,Mini VW T1 Camper Van,2013,22,75
+40080-1,Friends Pencil Holder,2013,501,142
+40081-1,LEGOLAND Picture Frame - Florida Edition,2013,411,121
+40081-2,LEGOLAND Picture Frame - Deutschland Edition,2013,411,121
+40081-3,LEGOLAND Picture Frame - Billund Edition,2013,411,121
+40081-4,LEGOLAND Picture Frame - Malaysia Edition,2013,411,121
+40081-5,LEGOLAND Picture Frame - Windsor Edition,2013,411,121
+40082-1,Christmas Tree Stand,2013,228,115
+40083-1,Christmas Tree Truck,2013,228,118
+40084-1,Hero Factory Weapon Pack,2013,400,6
+40085-1,LEGO Valentine,2014,232,127
+40086-1,LEGO Easter Bunny,2014,229,106
+40090-1,Halloween Bat,2014,230,156
+40091-1,Turkey,2014,231,125
+40092-1,Reindeer,2014,227,139
+40093-1,Snowman,2014,227,140
+40094-1,Monthly Mini Model Build January 2014 - Snowplough,2014,409,44
+40095-1,Monthly Mini Model Build February 2014 - Micro Manager,2014,409,50
+40096-1,Monthly Mini Model Build March 2014 - Spring Tree,2014,409,62
+40097-1,Monthly Mini Model Build April 2014 - Helicopter,2014,409,44
+40098-1,Monthly Mini Model Build May 2014 - Dragon,2014,409,43
+40099-1,Monthly Mini Model Build June 2014 - Jet-Ski,2014,409,33
+40-1,Universal Building Set,1976,469,293
+40100-1,Monthly Mini Model Build July 2014 - Surf Van,2014,409,46
+4010-1,Police Rescue Boat,1987,363,82
+40101-1,Monthly Mini Model Build August 2014 - Monkey,2014,409,46
+40102-1,Monthly Mini Model Build September 2014 - Aircraft,2014,409,37
+40103-1,Monthly Mini Model Build November 2014 - Rocket,2014,409,48
+40104-1,Monthly Mini Model October 2014 - Monster,2014,409,36
+40105-1,Monthly Mini Model Build December 2014 - Gingerbread House,2014,409,54
+40106-1,Elves' Workshop,2014,227,115
+40107-1,Ice Skating,2014,228,129
+40108-1,Balloon Cart,2014,22,66
+40109-1,MINI Cooper Mini Model,2014,22,59
+40110-1,Coin Bank,2014,61,121
+4011-1,Cabin Cruiser,1991,363,90
+40112-1,Model Catwalk,2014,494,143
+40114-1,LEGO Friends Buildable Jewelry Box,2014,494,201
+40115-1,LEGOLAND Entrance with Family,2014,425,271
+40116-1,Hero Factory Promo,2014,400,31
+40117-1,Hero Factory Villain Promo,2014,403,28
+40118-1,Buildable Brick Box 2x2,2014,408,204
+401-2,Large Wheels with Axles (The Building Toy),1966,371,7
+40120-1,Valentine's Day Dinner,2015,232,114
+4012-1,Wave Cops,1996,363,99
+40121-1,Painting Easter Eggs,2015,229,157
+40122-1,Trick or Treat,2015,230,133
+40123-1,Thanksgiving Feast,2015,231,158
+40124-1,Winter Fun,2015,227,107
+40125-1,Santa's Visit,2015,227,167
+40126-1,Monthly Mini Model Build January 2015 - Alien and Space Dog,2015,409,55
+40127-1,Monthly Mini Model Build February 2015 - Space Shuttle,2015,409,39
+40128-1,Monthly Mini Model Build March 2015 - Robot,2015,409,50
+40129-1,Monthly Mini Model Build April 2015 – UFO,2015,409,39
+401-3,Large Wheels with Axles (System),1964,371,7
+40130-1,Monthly Mini Model Build May 2015 - Koala,2015,409,65
+4013-1,Create and Imagine,2003,37,1000
+40131-1,Monthly Mini Model Build June 2015 - Parrot,2015,409,55
+40132-1,Whale July 2015,2015,409,31
+40133-1,Monthly Mini Model Build August 2015 - Kangaroo,2015,409,49
+40134-1,Monthly Mini Model Build September 2015 - Scuba Diver,2015,409,45
+40135-1,Monthly Mini Model Build October 2015 - Angler Fish,2015,409,29
+40136-1,Monthly Mini Model Build November 2015 - Shark,2015,409,31
+40137-1,Monthly Mini Model Build December 2015 - Submarine,2015,409,28
+40138-1,Christmas Train,2015,227,233
+40139-1,Gingerbread House,2015,26,277
+40140-1,Flower Cart,2015,23,75
+4014-1,Creator Exclusive,2003,37,500
+40141-1,Bricktober Hotel,2015,157,203
+40142-1,Bricktober Train Station,2015,157,180
+40143-1,Bricktober Bakery,2015,157,234
+40144-1,Bricktober Toys R Us Store,2015,157,164
+40145-1,LEGO Brand Store Opening Set,2015,408,412
+40146-1,Lufthansa Plane,2015,598,65
+40148-1,Year Of The Sheep,2015,31,99
+4015-1,Freighter,1982,363,80
+40153-1,Birthday Cake,2015,301,120
+40154-1,Pencil Holder,2015,301,176
+40155-1,Piggy Coin Bank,2015,301,148
+40156-1,Organiser,2015,494,171
+40158-1,Pirates Chess Set,2015,154,855
+4016-1,Racer,2001,22,21
+40161-1,What Am I?,2016,301,536
+40165-1,Minifigure Wedding Favor Set,2016,408,90
+40166-1,LEGOLAND Train,2016,425,210
+40170-1,Build My City Accessory Set,2017,62,101
+4017-1,Sea Helicopter,2001,22,13
+40171-1,Hedgehog Storage,2017,494,248
+40172-1,Brick Calendar,2017,501,278
+40174-1,Iconic Chess Set,2017,502,1449
+40179-1,Personalised Mosaic Portrait,2016,277,4501
+40180-1,Bricktober Theater,2014,157,164
+4018-1,Ship,2001,22,12
+40181-1,Bricktober Pizza Place,2014,157,139
+40182-1,Bricktober Fire Station,2014,157,175
+40183-1,Bricktober Town Hall,2014,157,186
+40190-1,Ferrari F138,2014,598,41
+4019-1,Aeroplane,2001,24,17
+40191-1,Ferrari F12 Berlinetta,2014,598,44
+40192-1,Ferrari 250 GTO,2014,598,46
+40193-1,Ferrari 512 S,2014,598,49
+40194-1,Finish Line & Podium,2014,598,63
+40195-1,Shell Station,2014,598,79
+40196-1,Shell Tanker,2014,598,93
+4020-1,Fire Fighting Boat,1987,363,206
+40201-1,Valentines Cupid Dog,2016,232,150
+40202-1,Easter Chick,2016,229,111
+40203-1,Vampire and Bat,2016,230,150
+40204-1,Pilgrim's Feast,2016,231,163
+40205-1,Elves' Workshop,2016,206,238
+40206-1,Santa,2016,227,155
+40207-1,Year Of The Monkey,2016,22,165
+40208-1,Monthly Mini Model Build January 2016 - Polar Bear,2016,409,40
+40209-1,Monthly Mini Model Build February 2016 - Snow Scooter,2016,409,26
+402-1,Universal Building Set,1977,469,401
+40210-1,Monthly Mini Model Build March 2016 - Bunny,2016,409,49
+4021-1,Police Patrol,1991,363,195
+40211-1,Monthly Mini Model Build April 2016 - Bee,2016,409,34
+40212-1,Monthly Mini Model Build May 2016 - Hedgehog,2016,409,39
+40213-1,Monthly Mini Model Build June 2016 - Sea Plane,2016,409,24
+40214-1,Monthly Mini Model Build July 2016 - Frog,2016,409,60
+40215-1,Monthly Mini Model Build August 2016 - Apple,2016,409,58
+40216-1,Monthly Mini Build September 2016 - School Bus,2016,409,65
+40217-1,Monthly Mini Build October 2016 - Werewolf,2016,409,52
+40218-1,Monthly Mini Model Build November 2016 - Fox,2016,409,39
+40219-1,Monthly Mini Model Build December 2016 - Christmas Present,2016,409,55
+402-2,White Turntables,1964,371,5
+40220-1,London Bus,2016,22,117
+4022-1,C26 Sea Cutter,1996,363,193
+40221-1,Fountain,2016,22,105
+40222-1,24-in-1 Holiday Countdown,2016,207,250
+40223-1,Christmas Ornament,2016,206,215
+40225-1,RIO 2016 MASCOTS,2016,598,196
+40226-1,Birthday Buddy,2016,22,133
+40227-1,MSC Ship,2016,598,181
+40228-1,Geoffrey & Friends,2016,598,133
+402-3,White Turntables,1966,371,5
+4023-1,Fun and Adventure,2003,37,55
+40236-1,Romantic Valentine Picnic,2017,232,126
+40237-1,Easter Egg Hunt -2017,2017,229,145
+40239-1,Monthly Mini Model Build January 2017 - Narwhal,2017,409,45
+40240-1,Monthly Mini Model Build February 2017 - Raccoon,2017,409,47
+4024-1,Advent Calendar 2003 Creator,2003,214,24
+4024-10,Advent Calendar 2003 Creator (Day 9) Airplane,2003,223,13
+4024-11,Advent Calendar 2003 Creator (Day 10) Sailboat,2003,223,16
+40241-1,Monthly Mini Model Build March 2017 - Platypus,2017,409,36
+4024-12,Advent Calendar 2003 Creator (Day 11) Snowplow,2003,223,21
+4024-13,Advent Calendar 2003 Creator (Day 12) Snail,2003,223,9
+4024-14,Advent Calendar 2003 Creator (Day 13) Robot,2003,223,14
+4024-15,Advent Calendar 2003 Creator (Day 14) Heart,2003,223,11
+4024-16,Advent Calendar 2003 Creator (Day 15) Truck,2003,223,21
+4024-17,Advent Calendar 2003 Creator (Day 16) Reindeer,2003,223,13
+4024-18,Advent Calendar 2003 Creator (Day 17) Bird,2003,223,10
+4024-19,Advent Calendar 2003 Creator (Day 18) Present,2003,223,9
+4024-2,Advent Calendar 2003 Creator (Day 1) Snowman,2003,223,19
+4024-20,Advent Calendar 2003 Creator (Day 19) Fireplace,2003,223,17
+4024-21,Advent Calendar 2003 Creator (Day 20) Santa,2003,223,13
+40242-1,Monthly Mini Model Build April 2017 - Chick,2017,409,54
+4024-22,Advent Calendar 2003 Creator (Day 21) Robot,2003,223,16
+4024-23,Advent Calendar 2003 Creator (Day 22) Race Car,2003,223,17
+4024-24,Advent Calendar 2003 Creator (Day 23) Helicopter,2003,223,16
+4024-25,Advent Calendar 2003 Creator (Day 24) Tree,2003,223,13
+4024-3,Advent Calendar 2003 Creator (Day 2) Little Girl,2003,223,9
+40243-1,Monthly Mini Model Build May 2017 - Racecar,2017,409,52
+4024-4,Advent Calendar 2003 Creator (Day 3) Penguin,2003,223,12
+40244-1,Monthly Mini Model Build June 2017 - Dragonfly,2017,409,37
+4024-5,Advent Calendar 2003 Creator (Day 4) Sheep,2003,223,13
+40245-1,Monthly Mini Model Build June 2017 - Octopus,2017,409,49
+4024-6,Advent Calendar 2003 Creator (Day 5) Little Boy,2003,223,9
+40246-1,Monthly Mini Model Build August 2017 - Rainbow Fish,2017,409,32
+4024-7,Advent Calendar 2003 Creator (Day 6) Stocking,2003,223,8
+40247-1,Monthly Mini Model Build September 2017 - Dinosaur,2017,409,43
+4024-8,Advent Calendar 2003 Creator (Day 7) Spaceship,2003,223,10
+4024-9,Advent Calendar 2003 Creator (Day 8) Parrot,2003,223,9
+4025-1,Fire Boat,1982,363,150
+40251-1,Mini Piggy Bank,2017,22,248
+40252-1,Mini VW Beetle,2017,22,141
+40260-1,Halloween Haunt,2017,230,145
+4026-1,"Create Your Dreams {Canister, blue top}",2003,37,100
+40264-1,Build My Heartlake City Accessory Set,2017,494,121
+40265-1,Friends Tic-Tac-Toe,2017,494,58
+40267-1,Find A Pair Pack,2017,504,20
+4027-1,"Build and Imagine {canister, red top}",2003,37,100
+4028-1,World of Bricks {Blue Bucket},2003,37,500
+4029-1,Build with Bricks Bucket {Red Bucket},2003,37,500
+4030-1,Cargo Carrier,1987,363,323
+4031-1,Fire Rescue,1991,363,363
+403-2,Train Couplers and Wheels (The Building Toy),1967,371,12
+4032-1,Passenger Plane,2003,106,161
+4032-10,Passenger Plane - Austrian Air Version,2004,106,137
+4032-11,Passenger Plane - KLM Version,2006,106,137
+4032-12,Passenger Plane - Malaysian Air Version,2005,106,137
+4032-13,Passenger Plane - Aeroflot Version,2006,106,161
+4032-2,Passenger Plane - SAS Version,2003,106,140
+4032-3,Passenger Plane - EL AL Version,2004,106,137
+4032-4,Passenger Plane - Iberia Version,2004,106,139
+4032-5,Passenger Plane - JAL Version,2004,106,137
+4032-6,Passenger Plane - Lauda Air Version,2004,106,137
+4032-7,Passenger Plane - ANA Air Version,2004,106,138
+4032-8,Passenger Plane - SWISS Version,2005,106,161
+4032-9,Passenger Plane - Snowflake Version,2004,106,137
+403-3,Train Couplers and Wheels (System),1966,371,12
+4037-1,Helicopter,2004,23,9
+4038-1,Airplane,2003,466,33
+404-1,Universal Building Set,1977,469,471
+4042-1,"Jens, McDonald's #2",2002,301,4
+404-3,Wheels for Motor (The Building Toy),1967,371,12
+404-4,Wheels for the Motor (System),1967,371,12
+4047-1,Ultimate Wheels (Kohl's Exclusive),2003,204,517
+4048-1,Mech Lab (Kohl's Exclusive),2003,204,2
+4049-1,"Nesquik Promotional Set: Quicky the Bunny, Director, Cameraman and Car",2001,273,28
+4051-1,Quicky the Bunny (Nesquik Promotional),2001,273,4
+4052-1,Director (Nesquik Promotional),2001,273,4
+4053-1,Cameraman (Nesquik Promotional),2001,273,5
+4055-1,Medium Bucket,1997,399,329
+4056-1,Color Light,2001,273,13
+4057-1,Spot Light,2001,273,10
+4058-1,Cameraman 1,2001,273,4
+4059-1,Director,2001,273,4
+4060-1,Grip,2001,273,4
+4061-1,Assistant,2001,273,4
+4062-1,Actress,2001,273,4
+4063-1,Cameraman 2,2001,273,4
+4064-1,Actor 2,2001,273,4
+4065-1,Actor 3,2001,273,4
+4066-1,Actor 1,2001,273,4
+4067-1,Buggy,2001,273,15
+4068-1,Handy Camera,2001,273,6
+4069-1,Katinco & Megaphone,2001,273,4
+4070-1,Stand Camera,2001,273,7
+4071-1,Bottles,2001,273,7
+4072-1,Skeleton,2001,273,6
+4073-1,Tree 1,2001,273,6
+4074-1,Tree 3,2001,273,14
+4075-1,Tree 2,2001,273,13
+4076-1,Pteranodon,2001,273,17
+4077-1,Plesiosaur,2001,273,13
+4078-1,T-Rex,2001,273,18
+4079-1,Mini Rex,2001,273,4
+4090-1,Motion Madness,2003,406,244
+409-1,38 Slimbricks Assorted Sizes (The Building Toy),1965,371,114
+4093-1,Wild Windup,2003,406,319
+4094-1,Motor Movers,2003,406,256
+4095-1,Record and Play,2003,406,345
+4096-1,Micro Wheels,2003,204,216
+4097-1,Mini Robots,2003,204,229
+4098-1,High Flyers,2003,204,197
+4099-1,Robobots,2003,204,326
+41000-1,Water Scooter Fun,2013,494,28
+4100-1,Maximum Wheels,2003,204,293
+41001-1,Mia's Magic Tricks,2013,494,92
+41002-1,Emma's Karate Course,2013,494,92
+41003-1,Olivia's Newborn Foal,2013,494,85
+41004-1,Rehearsal Stage,2013,494,199
+41005-1,Heartlake High,2013,494,490
+41006-1,Downtown Bakery,2013,494,268
+41007-1,Heartlake Pet Salon,2013,494,265
+41008-1,Heartlake City Pool,2013,494,442
+41009-1,Andrea's Bedroom,2013,494,94
+410-1,Payloader,1973,416,28
+41010-1,Olivia’s Beach Buggy,2013,494,94
+4101-1,Wild Collection,2003,204,487
+41011-1,Stephanie's Soccer Practice,2013,494,82
+41013-1,Emma's Sports Car,2013,494,163
+41015-1,Dolphin Cruiser,2013,494,631
+41016-1,"Advent Calender 2013, Friends",2013,216,24
+41016-10,"Advent Calendar 2013, Friends (Day 9) - Basket",2013,226,19
+41016-11,"Advent Calendar 2013, Friends (Day 10) - Friends Accessories",2013,226,20
+41016-12,"Advent Calendar 2013, Friends (Day 11) - Basket with Money",2013,226,3
+41016-13,"Advent Calendar 2013, Friends (Day 12) - Presents",2013,226,8
+41016-14,"Advent Calendar 2013, Friends (Day 13) - Sled",2013,226,8
+41016-15,"Advent Calendar 2013, Friends (Day 14) - Fountain",2013,226,6
+41016-16,"Advent Calendar 2013, Friends (Day 15) - Bench",2013,226,11
+41016-17,"Advent Calendar 2013, Friends (Day 16) - Skates with Flower in Snow",2013,226,15
+41016-18,"Advent Calendar 2013, Friends (Day 17) - Cell Phone /Music Player Docking Station",2013,226,8
+41016-19,"Advent Calendar 2013, Friends (Day 18) - Snowman",2013,226,8
+41016-2,"Advent Calendar 2013, Friends (Day 1) - Stephanie",2013,226,4
+41016-20,"Advent Calendar 2013, Friends (Day 19) - Flame",2013,226,4
+41016-21,"Advent Calendar 2013, Friends (Day 20) - Christmas Tree",2013,226,18
+41016-22,"Advent Calendar 2013, Friends (Day 21) - Musical Score",2013,226,7
+41016-23,"Advent Calendar 2013, Friends (Day 22) - Basket with Leaf",2013,226,8
+41016-24,"Advent Calendar 2013, Friends (Day 23) - Squirrel",2013,226,2
+41016-25,"Advent Calendar 2013, Friends (Day 24) - Present with Letter",2013,226,12
+41016-3,"Advent Calendar 2013, Friends (Day 2) - Snowmobile",2013,226,11
+41016-4,"Advent Calendar 2013, Friends (Day 3) - Lamp Post",2013,226,10
+41016-5,"Advent Calendar 2013, Friends (Day 4) - Lily, Christmas Outfit",2013,226,4
+41016-6,"Advent Calendar 2013, Friends (Day 5) - Stand #1",2013,226,17
+41016-7,"Advent Calendar 2013, Friends (Day 6) - Perfume Bottles",2013,226,8
+41016-8,"Advent Calendar 2013, Friends (Day 7) - Stand #2",2013,226,14
+41016-9,"Advent Calendar 2013, Friends (Day 8) - Cups, Milk and Cookies",2013,226,8
+41017-1,Squirrel's Tree House,2013,496,41
+41018-1,Cat's Playground,2013,496,31
+41019-1,Turtle's Little Oasis,2013,496,33
+41020-1,Hedgehog's Hideaway,2013,496,34
+41021-1,Poodle's Little Palace,2013,496,46
+41022-1,Bunny's Hutch,2013,496,37
+41023-1,Fawn's Forest,2013,496,35
+41024-1,Parrot's Perch,2013,496,32
+41025-1,Puppy's Playhouse,2013,496,39
+41026-1,Sunshine Harvest,2014,494,236
+41027-1,Mia's Lemonade Stand,2014,494,114
+41028-1,Emma's Lifeguard Post,2014,494,78
+41029-1,Stephanie's New Born Lamb,2014,494,93
+41030-1,Olivia's Ice Cream Bike,2014,494,98
+4103-1,Fun with Bricks {small red bucket},2002,37,200
+41031-1,Andrea's Mountain Hut,2014,494,119
+4103-2,Fun with Bricks (4293364) - with Minifigs,2006,37,204
+41032-1,First Aid Jungle Bike,2014,495,156
+41033-1,Jungle Falls Rescue,2014,495,186
+41034-1,Summer Caravan,2014,494,312
+41035-1,Heartlake Juice Bar,2014,494,276
+41036-1,Jungle Bridge Rescue,2014,495,365
+41037-1,Stephanie's Beach House,2014,494,388
+41038-1,Jungle Rescue Base,2014,495,498
+41039-1,Sunshine Ranch,2014,494,753
+41040-1,Advent Calendar 2014 Friends,2014,216,24
+41040-10,"Advent Calendar 2014, Friends (Day 9) - Holiday Candle",2014,226,6
+41040-11,"Advent Calendar 2014, Friends (Day 10) - Friends Kitchen Accessories",2014,226,17
+41040-12,"Advent Calendar 2014, Friends (Day 11) - Stove",2014,226,13
+41040-13,"Advent Calendar 2014, Friends (Day 12) - Sweets and Saucepan",2014,226,7
+41040-14,"Advent Calendar 2014, Friends (Day 13) - Sideboard",2014,226,13
+41040-15,"Advent Calendar 2014, Friends (Day 14) - Goblets and Food",2014,226,12
+41040-16,"Advent Calendar 2014, Friends (Day 15) - Sink",2014,226,12
+41040-17,"Advent Calendar 2014, Friends (Day 16) - Cake and Cups",2014,226,6
+41040-18,"Advent Calendar 2014, Friends (Day 17) - Holiday Fireplace",2014,226,17
+41040-19,"Advent Calendar 2014, Friends (Day 18) - End Table and Book",2014,226,11
+41040-2,"Advent Calendar 2014, Friends (Day 1) - Mia",2014,226,4
+41040-20,"Advent Calendar 2014, Friends (Day 19) - Sofa",2014,226,10
+41040-21,"Advent Calendar 2014, Friends (Day 20) - White Cat",2014,226,3
+41040-22,"Advent Calendar 2014, Friends (Day 21) - Radio and Cell Phone",2014,226,8
+41040-23,"Advent Calendar 2014, Friends (Day 22) - Large Present",2014,226,8
+41040-24,"Advent Calendar 2014, Friends (Day 23) - Christmas Tree",2014,226,18
+41040-25,"Advent Calendar 2014, Friends (Day 24) - Present with Skates, Camera",2014,226,17
+41040-3,"Advent Calendar 2014, Friends (Day 2) - Sled",2014,226,11
+41040-4,"Advent Calendar 2014, Friends (Day 3) - Gift and Basket",2014,226,4
+41040-5,"Advent Calendar 2014, Friends (Day 4) - Deer and Tree",2014,226,4
+41040-6,"Advent Calendar 2014, Friends (Day 5) - Holiday Window Scene",2014,226,13
+41040-7,"Advent Calendar 2014, Friends (Day 6) - Ewa, Christmas Outfit",2014,226,4
+41040-8,"Advent Calendar 2014, Friends (Day 7) - Table",2014,226,11
+41040-9,"Advent Calendar 2014, Friends (Day 8) - Chairs",2014,226,14
+4104-1,Small Creator Bucket,2002,37,200
+41041-1,Turtle's Little Paradise,2014,496,43
+41042-1,Tiger's Beautiful Temple,2014,496,42
+41043-1,Penguin's Playground,2014,496,46
+41044-1,Macaw's Fountain,2014,496,39
+41045-1,Orangutan's Banana Tree,2014,496,37
+41046-1,Brown Bear's River,2014,496,37
+41047-1,Seal's Little Rock,2014,496,37
+41048-1,Lion Cub's Savannah,2014,496,43
+41049-1,Panda's Bamboo,2014,496,47
+41050-1,Ariel’s Amazing Treasures,2014,579,77
+4105-1,Imagine and Build,2002,37,500
+41051-1,Merida’s Highland Games,2014,579,144
+4105-2,50th Anniversary Bucket,2005,37,500
+41052-1,Ariel’s Magical Kiss,2014,579,249
+4105-3,Red Bucket,2005,37,483
+41053-1,Cinderella’s Dream Carriage,2014,579,274
+41054-1,Rapunzel’s Creativity Tower,2014,579,297
+41055-1,Cinderella’s Romantic Castle,2014,579,643
+41056-1,Heartlake News Van,2014,494,276
+41057-1,Heartlake Horse Show,2014,494,373
+41058-1,Heartlake Shopping Mall,2014,494,1165
+41059-1,Jungle Tree Sanctuary,2014,495,319
+41060-1,Sleeping Beauty's Royal Bedroom,2015,579,95
+4106-1,Large red bucket,2002,37,500
+41061-1,Jasmine's Exotic Palace,2015,579,142
+41062-1,Elsa's Sparkling Ice Castle,2015,579,291
+41063-1,Ariel’s Undersea Palace,2015,579,376
+41065-1,Rapunzel's Best Day Ever,2016,579,144
+41066-1,Anna & Kristoff's Sleigh Adventure,2016,579,173
+41067-1,Belle’s Enchanted Castle,2016,579,372
+41068-1,Arendelle Castle Celebration,2016,579,475
+41069-1,Treasure's Day at the Pool,2016,579,70
+4107-1,Build Your Dreams,2002,37,1000
+41071-1,Aira's Creative Workshop,2015,600,98
+41072-1,Naida's Spa Secret,2015,600,248
+41073-1,Naida's Epic Adventure Ship,2015,600,312
+41074-1,Azari and the Magical Bakery,2015,600,324
+41075-1,The Elves’ Treetop Hideaway,2015,600,516
+41076-1,Farran and the Crystal Hollow,2015,600,178
+41077-1,Aira's Pegasus Sleigh,2015,600,319
+41078-1,Skyra’s Mysterious Sky Castle,2015,600,813
+4108-1,T-Junction Road Plates,2002,289,2
+41085-1,Vet Clinic,2015,494,200
+41086-1,Vet Ambulance,2015,494,88
+41087-1,Bunny and Babies,2015,494,47
+41088-1,Puppy Training,2015,494,65
+41089-1,Little Foal,2015,494,43
+41090-1,Olivia's Garden Pool,2015,494,82
+4109-1,Curved Road Plates,2002,289,2
+41091-1,Mia's Roadster,2015,494,194
+41092-1,Stephanie's Pizzeria,2015,494,87
+41093-1,Heartlake Hair Salon,2015,494,334
+41094-1,Heartlake Lighthouse,2015,494,473
+41095-1,Emma’s House,2015,494,727
+41097-1,Heartlake Hot Air Balloon,2015,494,254
+41098-1,Emma's Tourist Kiosk,2015,494,98
+41099-1,Heartlake Skate Park,2015,494,199
+41-1,Train Wagon Wheels in Red,1977,456,4
+41100-1,Heartlake Private Jet,2015,494,230
+4110-1,Straight Road Plates,2002,289,2
+41101-1,Heartlake Grand Hotel ,2015,494,1573
+41102-1,Advent Calendar 2015 Friends,2015,216,249
+41103-1,Pop Star Recording Studio,2015,494,171
+41104-1,Pop Star Dressing Room,2015,494,297
+41105-1,Pop Star Show Stage,2015,494,446
+41106-1,Pop Star Tour Bus,2015,494,680
+41107-1,Pop Star Limousine,2015,494,263
+41108-1,Heartlake Food Market,2015,494,391
+41109-1,Heartlake City Airport,2015,494,691
+41110-1,Birthday Party,2016,494,191
+4111-1,Cross Road Plates,2002,289,2
+41111-1,Party Train,2016,494,109
+41112-1,Party Cakes,2016,494,50
+41113-1,Party Gift Shop,2016,494,52
+41114-1,Party Styling,2016,494,53
+41115-1,Emma's Creative Workshop,2016,494,107
+41116-1,Olivia's Exploration Car,2016,494,185
+41117-1,Pop Star TV Studio,2016,494,195
+41118-1,Heartlake Supermarket,2016,494,316
+41119-1,Heartlake Cupcake Cafe,2016,494,443
+41120-1,Adventure Camp Archery,2016,494,114
+41121-1,Adventure Camp Rafting,2016,494,320
+41122-1,Adventure Camp Tree House,2016,494,724
+41123-1,Foal's Washing Station,2016,494,85
+41124-1,Heartlake Puppy Daycare,2016,494,286
+41125-1,Horse Vet Trailer,2016,494,379
+41126-1,Heartlake Riding Club,2016,494,582
+41127-1,Amusement Park Arcade,2016,494,173
+41128-1,Amusement Park Space Ride,2016,494,194
+41129-1,Amusement Park Hot Dog Van,2016,494,243
+41130-1,Amusement Park Roller Coaster,2016,494,1122
+4113-1,Brick Adventures Small Bucket,2002,37,124
+41131-1,Advent Calendar 2016 Friends,2016,216,218
+41132-1,Heartlake Party Shop,2016,494,176
+41133-1,Amusement Park Bumper Cars,2016,494,423
+41134-1,Heartlake Performance School,2016,494,772
+41135-1,Livi’s Pop Star House,2016,494,596
+41140-1,Daisy’s Beauty Salon,2016,579,97
+41141-1,Pumpkin’s Royal Carriage,2016,579,79
+41142-1,Palace Pets Royal Castle,2016,579,185
+41143-1,Berry's Kitchen,2017,579,61
+41144-1,Petite's Royal Stable,2017,579,75
+41145-1,Ariel and the Magical Spell,2017,579,222
+41146-1,Cinderella's Enchanted Evening,2017,579,347
+41147-1,Anna's Snow Adventure,2017,579,153
+41148-1,Elsa's Magical Ice Palace,2017,579,700
+41149-1,Moana's Island Adventure,2016,579,205
+41150-1,Moana's Ocean Voyage,2016,579,307
+4115-1,All That Drives Bucket,2001,37,166
+4116-1,Animal Adventures Bucket,2001,37,211
+4117-1,Fantastic Flyers & Cool Cars Bucket,2001,37,266
+41171-1,Emily Jones & the Baby Wind Dragon,2016,600,80
+41172-1,The Water Dragon Adventure,2016,600,212
+41173-1,Elvendale School of Dragons,2016,600,230
+41174-1,The Starlight Inn,2016,600,347
+4117463-1,Cyber Saucer TRU 50 Years Forever Fun Bundle,1997,144,2
+41175-1,Fire Dragon's Lava Cave,2016,600,441
+41176-1,The Secret Market Place,2016,600,700
+41177-1,The Precious Crystal Mine,2016,600,272
+41178-1,The Dragon Sanctuary,2016,600,585
+41179-1,Queen Dragon’s Rescue,2016,600,832
+41180-1,Ragana’s Magic Shadow Castle,2016,600,1013
+4118-1,"Buildings, Mansions and Shops",2001,37,364
+41181-1,Naida's Gondola & the Goblin Thief,2017,600,67
+41182-1,The Capture of Sophie Jones,2017,600,226
+41183-1,The Goblin King's Evil Dragon,2017,600,338
+41184-1,Aira's Airship & the Amulet Chase,2017,600,343
+41185-1,Magic Rescue from the Goblin Village,2017,600,637
+41186-1,Azari & the Goblin Forest Escape,2017,600,145
+41187-1,Rosalyn's Healing Hideout,2017,600,457
+41188-1,Breakout from the Goblin King's Fortress,2017,600,694
+4119-1,Regular & Transparent Bricks Bucket,2001,37,234
+4120-1,Fun and Cool Transportation,2001,37,608
+4121-1,All Kinds of Animals / Lap Table,2001,37,174
+4122-1,Basic Building Set,2000,470,201
+41230-1,Batgirl Batjet Chase,2017,617,206
+41231-1,Harley Quinn to the rescue,2016,617,217
+41232-1,Super Hero High School,2017,617,711
+41233-1,"Lashina"" Tank",2017,482,142
+41234-1,Bumblebee Helicopter,2017,482,141
+41235-1,Wonder Woman Dorm,2017,617,186
+41236-1,"Harley Quinn"" Dorm",2017,617,175
+41237-1,"Batgirl"" Secret Bunker",2017,617,350
+41238-1,"Lena Luthor"" Kryptomite"" Factory",2017,617,430
+41239-1,"Eclipso"" Dark Palace",2017,617,1073
+4124-1,"Advent Calendar 2001, Creator",2001,214,24
+4124-10,"Advent Calendar 2001, Creator (Day 9) Space Buggy",2001,217,18
+4124-11,"Advent Calendar 2001, Creator (Day 10) Dinosaur",2001,217,8
+4124-12,"Advent Calendar 2001, Creator (Day 11) Speedboat",2001,217,10
+4124-13,"Advent Calendar 2001, Creator (Day 12) Reindeer",2001,217,10
+4124-14,"Advent Calendar 2001, Creator (Day 13) Snowman",2001,217,15
+4124-15,"Advent Calendar 2001, Creator (Day 14) Jet Ski",2001,217,11
+4124-16,"Advent Calendar 2001, Creator (Day 15) Dog",2001,217,10
+4124-17,"Advent Calendar 2001, Creator (Day 16) Police Boat",2001,217,9
+4124-18,"Advent Calendar 2001, Creator (Day 17) Whale",2001,217,9
+4124-19,"Advent Calendar 2001, Creator (Day 18) Space Shuttle",2001,217,10
+4124-2,"Advent Calendar 2001, Creator (Day 1) Cat",2001,217,10
+4124-20,"Advent Calendar 2001, Creator (Day 19) Parrot",2001,217,9
+4124-21,"Advent Calendar 2001, Creator (Day 20) Steamship",2001,217,10
+4124-22,"Advent Calendar 2001, Creator (Day 21) Church",2001,217,11
+4124-23,"Advent Calendar 2001, Creator (Day 22) Helicopter",2001,217,11
+4124-24,"Advent Calendar 2001, Creator (Day 23) Christmas Tree",2001,217,10
+4124-25,"Advent Calendar 2001, Creator (Day 24) Present",2001,217,8
+4124-3,"Advent Calendar 2001, Creator (Day 2) Max",2001,217,1
+4124-4,"Advent Calendar 2001, Creator (Day 3) Fireplace",2001,217,11
+4124-5,"Advent Calendar 2001, Creator (Day 4) Santa",2001,217,10
+4124-6,"Advent Calendar 2001, Creator (Day 5) Ambulance",2001,217,15
+4124-7,"Advent Calendar 2001, Creator (Day 6) Penguin",2001,217,10
+4124-8,"Advent Calendar 2001, Creator (Day 7) Tina",2001,217,1
+4124-9,"Advent Calendar 2001, Creator (Day 8) Frog with Hat",2001,217,11
+4128-1,XL Freestyle Bucket,1997,399,657
+41300-1,Puppy Championship,2017,494,200
+4130-1,Freestyle Building Set,1995,399,37
+41301-1,Puppy Parade,2017,494,145
+41302-1,Puppy Pampering,2017,496,45
+41303-1,Puppy Playground,2017,496,62
+41304-1,Puppy Treats & Tricks,2017,496,45
+41305-1,Emma's Photo Studio,2017,494,95
+41306-1,Mia's Beach Scooter,2017,494,79
+41307-1,Olivia's Creative Lab,2017,494,99
+41308-1,Stephanie's Friendship Cakes,2017,494,94
+41309-1,Andrea's Musical Duet,2017,494,86
+41310-1,Heartlake Gift Delivery,2017,494,185
+4131-1,Freestyle Building Set,1995,399,71
+41311-1,Heartlake Pizzeria,2017,494,288
+41312-1,Heartlake Sports Center,2017,494,328
+41313-1,Heartlake Summer Pool,2017,494,589
+41314-1,Stephanie's House,2017,494,624
+41315-1,Heartlake Surf Shop,2017,494,186
+41316-1,Andrea's Speedboat Transporter,2017,494,309
+41317-1,Sunshine Catamaran,2017,494,602
+41318-1,Heartlake Hospital,2017,494,880
+41319-1,Snow Resort Hot Chocolate Van,2017,494,245
+41320-1,Heartlake Frozen Yogurt Shop,2017,494,369
+4132-1,Freestyle Building Set,1995,399,122
+41321-1,Snow Resort Off-Roader,2017,494,141
+41322-1,Snow Resort Ice Rink,2017,494,300
+41323-1,Snow Resort Chalet,2017,494,397
+41324-1,Snow Resort Ski Lift,2017,494,584
+41325-1,Heartlake City Playground,2017,494,325
+41326-1,Friends Advent Calendar,2017,216,217
+4133-1,Small Freestyle Bucket,1995,399,135
+4134-1,Large Freestyle Bucket,1995,399,252
+4135-1,Freestyle Garden Friends,1996,399,121
+4137-1,Small Freestyle Clearpack,1997,399,127
+4139-1,Freestyle Bucket,1997,399,249
+4142-1,Freestyle Building Set,1995,399,98
+414-3,"Windows Parts Pack, Red (The Building Toy)",1966,371,10
+4143-1,Freestyle Building Set,1995,399,196
+414-4,"Windows Parts Pack, White (The Building Toy)",1966,371,10
+4144-1,Freestyle Brick Vac Bus,1995,399,142
+414-5,"Windows Parts Pack, Red (System)",1966,371,10
+4145-1,Freestyle Playcase,1995,399,254
+414-6,"Windows Parts Pack, White (System)",1966,371,10
+4146-1,Extra Large Freestyle Bucket,1995,399,410
+4147-1,Freestyle Elefant Villa,1996,399,191
+41491-1,Batman & The Joker,2016,610,203
+41492-1,Iron Man & Cpt. America,2016,610,174
+41493-1,Black Panther & Dr. Strange,2016,610,167
+41496-1,Supergirl & Martian Manhunter,2017,610,231
+41497-1,Spider-Man & Venom,2017,610,144
+41500-1,Flain,2014,581,58
+4150-1,Freestyle Building Set,1995,399,91
+41501-1,Vulk,2014,581,69
+41502-1,Zorch,2014,581,45
+41503-1,Krader,2014,581,66
+41504-1,Siesmo,2014,581,50
+41505-1,Shuff,2014,581,51
+41506-1,Teslo,2014,581,54
+41507-1,Zaptor,2014,581,61
+41508-1,Volectro,2014,581,70
+41509-1,Slumbo,2014,582,61
+415-1,5 Sixteens and 4 Twenties (System),1966,371,27
+41510-1,Lunk,2014,582,51
+4151-1,Girl's Freestyle Set,1995,399,274
+41511-1,Flurr,2014,582,46
+41512-1,Chomly,2014,582,68
+4151270-1,Star Wars Co-Pack of 7121 and 7111,2000,166,2
+41513-1,Gobba,2014,582,57
+41514-1,Jawg,2014,582,61
+41515-1,Kraw,2014,582,70
+41516-1,Tentro,2014,582,69
+41517-1,Balk,2014,582,68
+41518-1,Glomp,2014,583,64
+41519-1,Glurt,2014,583,62
+41520-1,Torts,2014,583,48
+4152-1,Large Freestyle Bucket,1995,399,409
+41521-1,Footi,2014,583,72
+41522-1,Scorpi,2014,583,70
+41523-1,Hoogi,2014,583,69
+41524-1,Mesmo,2014,583,64
+41525-1,Magnifo,2014,583,61
+41526-1,Wizwuz,2014,583,70
+41527-1,Rokit,2015,584,66
+41528-1,Niksput,2015,584,62
+41529-1,Nurp-Naut,2015,584,52
+41530-1,Meltus,2015,584,66
+4153-1,Large Freestyle Playcase,1995,399,698
+41531-1,Flamzer,2015,584,60
+41532-1,Burnard,2015,584,59
+41533-1,Globert,2015,584,45
+41534-1,Vampos,2015,584,59
+41535-1,Boogly,2015,584,52
+41536-1,Gox,2015,585,62
+41537-1,Jinky,2015,585,59
+41538-1,Kamzo,2015,585,58
+41539-1,Krog,2015,585,60
+41540-1,Chilbo,2015,585,65
+41541-1,Snoof,2015,585,54
+41542-1,Spugg,2015,585,51
+41543-1,Turg,2015,585,56
+41544-1,Tungster,2015,585,60
+41545-1,Kramm,2015,586,68
+41546-1,Forx,2015,586,65
+41547-1,Wuzzo,2015,586,74
+41548-1,Dribbal,2015,586,52
+41549-1,Gurggle,2015,586,66
+41550-1,Slusho,2015,586,53
+41551-1,Snax,2015,586,51
+41552-1,Berp,2015,586,68
+41553-1,Vaka-Waka,2015,586,69
+41554-1,Kuffs,2016,587,63
+41555-1,Busto,2016,587,69
+41556-1,Tiketz,2016,587,62
+41557-1,Camillot,2016,587,64
+41558-1,Mixadel,2016,587,63
+41559-1,Paladum,2016,587,64
+41560-1,Jamzy,2016,587,70
+41561-1,Tapsy,2016,587,57
+41562-1,Trumpsy,2016,587,54
+41563-1,Splasho,2016,588,67
+41564-1,Aquad,2016,588,70
+41565-1,Hydro,2016,588,70
+41566-1,Sharx,2016,588,55
+41567-1,Skulzy,2016,588,66
+41568-1,Lewt,2016,588,62
+41569-1,Surgeo,2016,588,63
+41570-1,Skrubz,2016,588,68
+4157-1,Freestyle Trial Size,1997,399,36
+41571-1,Tuth,2016,588,67
+41572-1,Gobbol,2016,589,62
+41573-1,Sweepz,2016,589,61
+41574-1,Compax,2016,589,66
+41575-1,Cobrax,2016,589,64
+41576-1,Spinza,2016,589,60
+41577-1,Mysto,2016,589,64
+41578-1,Screeno,2016,589,73
+41579-1,Camsta,2016,589,62
+41580-1,Myke,2016,589,63
+4158-1,Small Freestyle Box,1997,399,132
+41585-1,Batman,2017,610,91
+41586-1,Batgirl,2017,610,99
+41587-1,Robin,2017,610,101
+41588-1,The Joker,2017,610,151
+41589-1,Captain America,2017,610,79
+41590-1,Iron Man,2017,610,96
+41591-1,Black Widow,2017,610,143
+41592-1,The Hulk,2017,610,93
+41593-1,Captain Jack Sparrow,2017,610,109
+41594-1,Captain Armando Salazar,2017,610,118
+41595-1,Belle,2017,610,139
+41596-1,Beast,2017,610,116
+416-1,4 Sixteens 2 Twenties (The Building Toy),1966,371,18
+4161-1,Girl's Freestyle Suitcase,1995,399,293
+4162-1,Freestyle Multibox,1995,399,600
+4163-1,Electric Freestyle Set,1995,399,350
+4164-1,Mickey's Fire Engine,2000,388,27
+4165-1,Minnie's Birthday Party,2000,388,85
+4166-1,Mickey's Car Garage,2000,388,90
+4167-1,Mickey's Mansion,2000,388,123
+4169306a-1,Christmas Tree Ornament,2005,227,46
+4169306b-1,Snowman Ornament,2005,227,36
+4169306c-1,Santa Claus Ornament,2005,227,36
+4171-1,Spot & Friends,2001,37,53
+4172-1,Tina's House,2001,37,44
+417-3,Cornerbricks (The Building Toy),1966,371,10
+4173-1,Max's Pitstop,2001,37,59
+417-4,Cornerbricks (System),1966,371,20
+4174-1,Max Goes Flying,2001,37,173
+4175-1,Adventures with Max & Tina,2001,37,219
+4176-1,The Race of the Year,2001,37,326
+4177-1,Building Stories w/NaNa Bird,2001,37,382
+4178-1,Mickey's Fishing Adventure,2000,388,107
+4179-1,Large Creator Box,2002,37,500
+4180878,"Bionicle Poster 2002, Bohrok front Krana back, 420 x 295 mm",2002,501,0
+4181-1,Isla De Muerta,2011,263,160
+418-2,2 x 4 Bricks (The Building Toy),1966,371,65
+4182-1,The Cannibal Escape,2011,263,279
+418-3,2 x 4 Bricks (System),1966,371,126
+4183-1,The Mill,2011,263,366
+4184-1,Black Pearl,2011,263,808
+4184912-1,Black Bus with Ball (Mannschaftsbus + Ball),2002,462,2
+4186868-1,"Large Train Engine with Tender Black (Motorizable, sets 4534, 4535)",2002,238,203
+4186870-1,Open Freight Wagon (White Box),2002,238,121
+4186872-1,Passenger Wagon Green (White Box),2002,238,194
+4186874-1,Caboose (White Box),2002,238,170
+4186875-1,9V Platform and Mini-Figures,2002,238,47
+4186876-1,Passenger Wagon Blue (White Box),2002,238,192
+4189224-1,"Dragon Sculpture, Ollie, the little dragon from Castleland (Legoland Billund)",2002,425,47
+4191-1,The Captain’s Cabin,2011,263,94
+419-2,2 x 3 Bricks (The Building Toy),1966,371,75
+4192-1,Fountain of Youth,2011,263,127
+419-3,2 x 3 Bricks (System),1966,371,150
+4193-1,The London Escape,2011,263,466
+4194-1,Whitecap Bay,2011,263,748
+4195-1,Queen Anne’s Revenge,2011,263,1094
+4195641-1,Star Wars Co-Pack of 7142 and 7152,2002,169,2
+41999-1,"4 x 4 Crawler Exclusive Edition ""BOSS Crawler"" [Co-Creation Model]",2013,1,1583
+42000-1,Grand Prix Racer,2013,12,1139
+4200-1,Mining 4 x 4,2012,56,101
+42001-1,Mini Off-Roader,2013,1,100
+42002-1,Hovercraft,2013,1,169
+42004-1,Mini Backhoe Loader,2013,7,246
+42005-1,Monster Truck,2013,1,328
+42006-1,Excavator,2013,1,719
+42007-1,Moto Cross Bike,2013,1,253
+42008-1,Service Truck,2013,1,1275
+42009-1,Mobile Crane MK II,2013,7,2606
+420-1,Police Car,1973,421,19
+42010-1,Off-Road Racer,2013,1,159
+4201-1,Loader and Tipper,2012,56,138
+42011-1,Race Car,2013,1,157
+42020-1,Twin Rotor Helicopter,2014,1,145
+4202-1,Mining Truck,2012,52,269
+42021-1,Snowmobile,2014,1,185
+42022-1,Hot Rod,2014,1,413
+42023-1,Construction Crew,2014,1,833
+42024-1,Container Truck,2014,1,947
+42025-1,Cargo Plane,2014,6,1295
+42026-1,Black Champion Racer,2014,1,136
+42026-2,Black Champion Racer,2014,1,137
+42027-1,Desert Racer,2014,1,148
+42028-1,Bulldozer,2014,7,614
+42029-1,Customized Pick up Truck,2014,1,1062
+420-3,2 x 2 Bricks (The Building Toy),1966,371,100
+42030-1,Remote-Controlled Volvo L350F Wheel Loader,2014,7,1634
+4203-1,Excavator Transporter,2012,56,304
+42031-1,Cherry Picker,2015,15,155
+42032-1,Compact Tracked Loader,2015,7,251
+42033-1,Record Breaker,2015,12,124
+42034-1,Quad Bike,2015,11,148
+42035-1,Mining Truck,2015,7,361
+42036-1,Street Motorcycle,2015,13,374
+42037-1,Formula Off-Roader,2015,11,493
+42038-1,Arctic Truck,2015,11,912
+42039-1,24 Hours Race Car,2015,12,1218
+420-4,2 x 2 Bricks (System),1966,371,198
+42040-1,Fire Plane,2015,9,577
+4204-1,The Mine,2012,56,751
+42041-1,Race Truck,2015,12,608
+42042-1,Crawler Crane,2015,1,1399
+42043-1,Mercedes Benz Arocs 3245,2015,1,2792
+42044-1,Display Team Jet,2016,1,113
+42045-1,Hydroplane Racer,2016,1,180
+42046-1,Getaway Racer,2016,1,170
+42047-1,Police Interceptor,2016,1,185
+42048-1,Race Kart,2016,1,344
+42049-1,Mine Loader,2016,1,475
+42050-1,Drag Racer,2016,1,646
+4205-1,Off Road Command Center,2012,61,388
+42052-1,Heavy Lift Helicopter,2016,1,1041
+42053-1,Volvo EW 160E,2016,1,1166
+42054-1,Claas Xerion 5000 Trac VC,2016,1,1975
+42055-1,Bucket Wheel Excavator,2016,7,3928
+42056-1,Porsche 911 GT3 RS,2016,1,2704
+42057-1,Ultralight Helicopter,2017,1,199
+42058-1,Stunt Bike,2017,1,140
+42059-1,Stunt Truck,2017,1,141
+42060-1,Roadwork Crew,2017,1,365
+4206-1,9V Train Switching Track Collection,2006,244,28
+42061-1,Telehandler,2017,1,261
+4206-2,Recycling Truck,2012,63,296
+42062-1,Container Yard,2017,1,630
+42063-1,BMW R 1200 GS Adventure,2017,1,593
+42063-40,Technic 40 year anniversary model (42057 + 42061 + 42063),2017,1,568
+42064-1,Ocean Explorer,2017,1,1326
+42065-1,RC Tracked Racer,2017,1,369
+42066-1,Air Race Jet,2017,1,1150
+42068-1,Airport Rescue Vehicle,2017,1,1093
+42069-1,Extreme Adventure,2017,1,2381
+42070-1,6x6 All Terrain Tow Truck,2017,1,1860
+4207-1,City Garage,2012,63,932
+4207901-1,Star Wars MINI Bonus Pack,2003,159,4
+4208-1,4 × 4 Fire Truck,2012,58,242
+4209-1,Fire Plane,2012,58,507
+42-1,Motor Case / Lower Part,1977,443,1
+4210-1,Coast Guard Platform,2008,55,450
+421-1,1 x 2 Bricks,1966,371,176
+4211-1,Starter Set 100,1998,470,53
+421-2,2 eights 2 sixes 2 fours 8 twos 6 ones (The Building Toy),1966,371,20
+4212-1,Starter Set 200,1998,470,95
+4212838-1,LEGO Stores Easter Chick for 2004,2004,229,62
+4212847-1,LEGO Stores Easter Chick in egg for 2004,2004,229,99
+4212852-1,LEGO Stores Easter Opening Egg for 2004 - Blue,2004,229,178
+4213-1,Super Set 200,1998,470,519
+4214-1,Medium Bucket,1998,470,264
+4215-1,Starter Set 300,1998,470,264
+4216-1,Super Set 100,1998,470,509
+4217-1,Playdesk and Bricks,1998,470,215
+4219-1,Brick Pack 100,1998,470,288
+4220-1,Large Box of Bricks,1998,470,428
+422-1,"1 x 1, 1 x 2, 1 x 4, 1 x 6, 1 x 8 Bricks",1966,371,28
+4221-1,Challenger Set 100,1998,470,65
+4222-1,Challenger Set 300,1998,470,363
+4223-1,Challenger Set 400 with Motor,1999,470,548
+4224-1,Medium Bucket,1998,470,363
+4225-1,Challenger Set 350,1998,470,244
+4228383-1,Vakama Promotional Set (Woolworth's Exclusive),2003,356,3
+4229-1,Brick Pack 300,1998,470,812
+4232-1,Freestyle Set,1998,399,30
+423-3,Curved and Round Bricks (The Building Toy),1966,371,84
+4239-1,Freestyle Set,1998,399,38
+4243532-1,Stunt Pack,2004,119,35
+4243534-1,Racers Hazard Kit,2004,119,35
+4244-1,Large Bulk Bucket,1998,399,420
+425-1,Fork Lift,1976,416,21
+4254-1,Freestyle Playdesk,1998,399,309
+4258-1,Big Box Play Scape,1998,399,1009
+426-1,7 Named Beams (The Building Toy),1966,371,7
+4267-1,Large Bucket,1998,399,468
+427-1,8 Plates 2 x 8 (The Building Toy),1966,371,8
+4271-1,FreeStyle Box,1998,399,180
+4274-1,Freestyle Playdesk,1998,399,508
+4277206-1,Letters and Keyring,2005,500,72
+4277678-1,LEGO Games Knights Kingdom Chess,2005,502,184
+4278-1,Blue Tub,2003,37,1000
+4279-1,CREATOR Strata Red {Red Tub},2003,37,1002
+4280-1,Freestyle Trial Size,1998,399,39
+428-1,5 Plates 4 x 8 (The Building Toy),1966,371,5
+4281-1,Classic Trial Size,1999,470,25
+4282-1,Classic Trial Size,1999,470,37
+4283-1,Classic Trial Box,2000,470,53
+4284-1,Classic Trial Size,1999,470,123
+4285-1,Small Bucket,1999,470,256
+4285968-1,Transformation Kit Dirt Crusher (Red),2005,119,47
+4285969-1,Transformation Kit Dirt Crusher (Blue),2005,119,47
+4285970-1,Transformation Kit Dirt Crusher (Green),2005,119,47
+4286013-1,Big Wheels Pack Dirt Crusher (Red),2005,119,10
+4286024-1,Big Wheels Pack Dirt Crusher (Blue),2005,119,10
+4286025-1,Big Wheels Pack Dirt Crusher (Green),2005,119,10
+4286784-1,Dirt Crusher Gearbox with Light,2005,119,6
+4287082-1,Antenna Pack for Dirt Crusher,2005,119,10
+4287744-1,City Value Pack - 7241 7246 - shrinkwrapped Target Country in Australia,2005,52,0
+4288-1,Large Bucket,1999,470,404
+429-1,4 Plates 6 x 8 (The Building Toy),1966,371,4
+4291-1,Classic Build & Store Tub,1999,470,770
+4293-1,Classic Value Pack,1999,470,817
+4294-1,Helicopter ANA Promotional Set,2002,466,16
+4297-1,Lightning Streak,2002,113,19
+4298-1,Blue Power,2002,113,22
+4299-1,Nesquik Quicky Racer,2002,113,17
+4-3,Basic Set,1973,469,234
+4300-1,Green Racer,2003,113,21
+430-1,Biplane,1975,412,18
+4301-1,Blue Racer,2003,113,24
+430-2,Six Trees and Bushes (The Building Toy),1966,371,6
+4304-1,Chopper Cop,1998,100,24
+4305-1,Xcyber,1997,144,36
+4306-1,Rings,1980,404,15
+4308-1,Racing Car,2004,113,28
+4309-1,Blue Racer,2004,113,31
+4310-1,Orange Racer,2004,113,24
+431-1,Gas Station (The Building Toy),1966,371,13
+432-1,Road Signs (The Building Toy),1966,371,8
+433-1,6 Street Lamps with Curved Top (The Building Toy),1966,371,6
+4335-1,Black Robots Pod,2004,478,50
+4336-1,Picture Frame and Mirror,1980,279,48
+4337-1,Dragon Pod,2005,478,52
+4338-1,Monster Pod,2005,478,49
+4339-1,Aqua Pod,2005,478,56
+434-1,50 lettered bricks (The Building Toy),1966,371,50
+4346-1,Robo Pod,2004,478,50
+4346-2,Robo Pod (Polybag),2004,478,47
+4346-3,Robo Pod (Toy Fair Nuernberg Promotion),2004,478,50
+4347-1,Auto Pod,2004,478,40
+4347-2,Auto Pod (Polybag),2004,478,37
+4347-3,Auto Pod (Toy Fair Nuernberg Promotion),2004,478,40
+4348-1,Aero Pod,2004,478,36
+4348-2,Aero Pod (Polybag),2004,478,33
+4348-3,Aero Pod (Toy Fair Nuernberg Promotion),2004,478,36
+4349-1,Wild Pod,2004,478,44
+4349-2,Wild Pod (polybag),2004,478,41
+4349-3,Wild Pod (Toy Fair Nuernberg Promotion),2004,478,44
+435-1,Tipper Truck,1976,416,23
+435-2,Garage Plate and Door (The Building Toy),1966,371,3
+437-1,50 numbered bricks (The Building Toy),1966,371,50
+4-4,Large House Set,1970,433,218
+44000-1,Furno XL,2013,401,103
+4400-1,Creations and Bricks {Red Tub},2003,37,705
+44001-1,Pyrox,2013,403,50
+44002-1,Rocka,2013,401,43
+44003-1,Scarox,2013,403,46
+44004-1,Bulk,2013,401,50
+44005-1,Bruizer,2013,403,62
+44006-1,Breez,2013,401,49
+44007-1,Ogrum,2013,403,59
+44008-1,Surge,2013,401,66
+44009-1,Dragon Bolt,2013,403,151
+44010-1,Stormer,2013,401,69
+4401-1,Little Creations,2003,204,110
+44011-1,Frost Beast,2013,403,60
+44012-1,Evo,2013,401,51
+44013-1,Aquagon,2013,403,43
+44014-1,Jet Rocka,2013,401,289
+44015-1,EVO Walker,2014,400,50
+44016-1,JAW Beast vs. STORMER,2014,400,49
+44017-1,STORMER Freeze Machine,2014,400,87
+44018-1,FURNO Jet Machine,2014,400,78
+44019-1,ROCKA Stealth Machine,2014,400,88
+44020-1,FLYER Beast vs. BREEZ,2014,400,91
+4402-1,Sea Riders,2003,204,549
+44021-1,SPLITTER Beast vs. FURNO & EVO,2014,400,108
+44022-1,EVO XL Machine,2014,400,192
+44023-1,ROCKA Crawler,2014,401,49
+44024-1,TUNNELER Beast vs. SURGE,2014,400,59
+44025-1,BULK Drill Machine,2014,401,111
+44026-1,CRYSTAL Beast vs. BULK,2014,400,83
+44027-1,BREEZ Flea Machine,2014,401,101
+44028-1,SURGE & ROCKA Combat Machine,2014,401,187
+44029-1,"QUEEN Beast vs. FURNO, EVO & STORMER",2014,400,216
+4403-1,Air Blazers,2003,204,705
+4404-1,Land Busters,2003,204,769
+4405-1,Large Creator Bucket,2003,37,1305
+4406-1,Buildings,2004,22,506
+4407-1,Transportation,2004,22,302
+4408-1,Animals,2004,22,202
+4410-1,Build and Create,2004,37,500
+4411-1,Blue Strata XXL,2004,37,1200
+4412-1,Einfallsreiches Bauen [Imaginative Building],2004,37,200
+4413-1,Arachno Pod,2005,478,57
+4414-1,LEGO Creator Bucket,2004,37,500
+4415-1,Auto Pod,2006,479,56
+4416-1,Robo Pod,2006,479,64
+4417-1,Aero Pod,2006,479,60
+4418-1,Dino Pod,2006,479,55
+442-1,Space Shuttle,1979,130,39
+4421-1,Box of Bricks,2005,48,1000
+4423-1,LEGO Creator Handy Box,2005,48,800
+4425-1,Better Building More Fun,2004,37,2000
+4427-1,Fire ATV,2012,58,50
+4428-1,"Advent Calendar 2012, City",2012,208,24
+4428-10,"Advent Calendar 2012, City (Day 9) Mechanic with Wrench",2012,217,5
+4428-11,"Advent Calendar 2012, City (Day 10) Wheel Dolly with Wheels",2012,217,10
+4428-12,"Advent Calendar 2012, City (Day 11) Firefighter's ATV without Wheels",2012,217,13
+4428-13,"Advent Calendar 2012, City (Day 12) Female Firefighter",2012,217,5
+4428-14,"Advent Calendar 2012, City (Day 13) Desk with Computer and Chair",2012,217,8
+4428-15,"Advent Calendar 2012, City (Day 14) Box with Burning Logs",2012,217,5
+4428-16,"Advent Calendar 2012, City (Day 15) Wall with Safety Equipment",2012,217,16
+4428-17,"Advent Calendar 2012, City (Day 16) Girl with Snowball",2012,217,5
+4428-18,"Advent Calendar 2012, City (Day 17) Catapult",2012,217,15
+4428-19,"Advent Calendar 2012, City (Day 18) Dog and Hydrant",2012,217,6
+4428-2,"Advent Calendar 2012, City (Day 1) Fireman with Loudhailer",2012,217,5
+4428-20,"Advent Calendar 2012, City (Day 19) Firefighter with Cup",2012,217,5
+4428-21,"Advent Calendar 2012, City (Day 20) Wheelbarrow with Spade and Snow",2012,217,7
+4428-22,"Advent Calendar 2012, City (Day 21) Warning Lights and Sign",2012,217,9
+4428-23,"Advent Calendar 2012, City (Day 22) Santa's Sled",2012,217,8
+4428-24,"Advent Calendar 2012, City (Day 23) Wrapped Gifts",2012,217,16
+4428-25,"Advent Calendar 2012, City (Day 24) Santa on Snowmobile",2012,217,13
+4428-3,"Advent Calendar 2012, City (Day 2) Chainsaw with Logs",2012,217,8
+4428-4,"Advent Calendar 2012, City (Day 3) Christmas Tree",2012,217,16
+4428-5,"Advent Calendar 2012, City (Day 4) Stairs and Star for Tree",2012,217,8
+4428-6,"Advent Calendar 2012, City (Day 5) Wall with Fireman Equipment",2012,217,17
+4428-7,"Advent Calendar 2012, City (Day 6) Boy with Snowball",2012,217,5
+4428-8,"Advent Calendar 2012, City (Day 7) Toy Fire Engine with Remote",2012,217,17
+4428-9,"Advent Calendar 2012, City (Day 8) Wall with Ski Equipment",2012,217,24
+4429-1,Helicopter Rescue,2012,60,425
+442A-1,6 International Flags (The Building Toy),1971,371,6
+442B-1,6 International Flags (The Building Toy),1971,371,6
+4430-1,Mobile Fire Command Center,2012,58,520
+4431-1,Ambulance,2012,60,198
+4432-1,Garbage Truck,2012,63,211
+4433-1,Dirt Bike Transporter,2012,64,205
+4434-1,Tipper Truck,2012,56,221
+4435-1,Car and Caravan,2012,63,217
+4436-1,Patrol Car,2012,61,96
+4437-1,Police Pursuit,2012,61,129
+4438-1,Robbers' Hideout,2012,61,316
+4439-1,Heavy-Duty Helicopter,2012,61,392
+4440-1,Forest Police Station,2012,61,632
+4441-1,Police Dog Van,2012,61,312
+4442-1,Glider,2012,53,101
+4443-1,Coca-Cola Defender 1,2002,462,4
+4444-1,Coca-Cola Defender 2,2002,462,4
+4445-1,Coca-Cola Middle Fielder 1,2002,462,4
+4446-1,Coca-Cola Forward 1,2002,462,4
+4447-1,Coca-Cola Forward 2,2002,462,4
+4448-1,Coca-Cola Defender 3,2002,462,4
+4449-1,Coca-Cola Defender 4,2002,462,4
+4450-1,Coca-Cola Middle Fielder 2,2002,462,4
+445062-1,Star Wars Co-Pack of 4500 and 4504,2004,169,2
+445-1,Police Units,1976,421,49
+4451-1,Coca-Cola Forward 3,2002,462,4
+445-2,Lighting Device Pack (The Building Toy),1966,371,3
+4452-1,Coca-Cola Forward 4,2002,462,4
+4453-1,Coca-Cola Goal Keeper,2002,462,4
+4454-1,Coca-Cola Referee,2002,462,6
+4455-1,Coca-Cola Hotdog Girl,2002,462,6
+4456-1,Coca-Cola Doctor,2002,462,5
+4457-1,Coca-Cola TV Cameraman,2002,462,4
+4458-1,Coca-Cola TV Camera,2002,462,11
+4459-1,Coca-Cola PK Kicker,2002,462,4
+445A-1,Lighting Device Pack with Improved Plugs (The Building Toy),1970,371,8
+4460-1,Coca-Cola Goal,2002,462,7
+4461-1,Coca-Cola Bench,2002,462,7
+4462-1,Coca-Cola Hotdog Trolley,2002,462,18
+4463-1,Coca-Cola Light,2002,462,16
+4464-1,Coca-Cola Bottle Case,2002,462,7
+4465-1,Coca-Cola Vending Machine,2002,462,6
+4466-1,Coca-Cola Sign Board,2002,462,3
+4467-1,Coca-Cola Stretcher,2002,462,3
+4468-1,Coca-Cola Stand,2002,462,9
+4469-1,Coca-Cola Drink Stand,2002,462,8
+4470-1,Coca-Cola Ball,2002,462,2
+4471-1,Coca-Cola Secret A,2002,462,4
+4472-1,Coca-Cola Secret B,2002,462,4
+4473-1,Police Helicopter,2013,61,106
+4475-1,Jabba's Message,2003,169,46
+4476-1,Jabba's Prize,2003,169,40
+4477-1,T-16 Skyhopper,2003,169,98
+4478-1,"Geonosian Fighter, Black Box",2003,167,171
+4478-2,Geonosian Fighter Blue Box,2004,167,153
+4479-1,TIE Bomber,2003,169,229
+4480-1,Jabba's Palace,2003,169,234
+4481-1,Hailfire Droid,2003,158,680
+4482-1,AT-TE,2003,167,650
+4483-1,"AT-AT, black box",2003,169,1070
+4483-2,"AT-AT, blue box",2004,169,1070
+4484-1,X-wing Fighter & TIE Advanced - Mini,2003,159,72
+4485-1,Sebulba's Podracer & Anakin's Podracer - Mini,2003,159,72
+4486-1,AT-ST & Snowspeeder - Mini,2003,159,76
+4487-1,Jedi Starfighter & Slave I - Mini,2003,159,53
+4488-1,Millennium Falcon - Mini,2003,159,87
+4489-1,AT-AT - Mini,2003,159,98
+4490-1,Republic Gunship - Mini,2003,159,102
+4491-1,Trade Federation MTT - Mini,2003,159,99
+4492-1,Imperial Star Destroyer - Mini,2004,159,87
+4493-1,Sith Infiltrator - Mini,2004,159,55
+4494-1,Imperial Shuttle - Mini,2004,159,82
+4495-1,AT-TE - Mini,2004,159,63
+4495173-1,LEGO Creative Building Set,2006,37,705
+4496-1,Fun with Building Tub,2004,37,1000
+4496-2,50th Anniversary Tub,2005,37,1000
+4496-3,Fun with Building Tub - Reissue,2006,37,798
+4497-1,Pretend and Create,2004,37,1000
+4499536-1,Offre Speciale 4 Boites (7236 7238 7235 7241),2007,52,0
+45000-1,Creative Builder,2013,507,120
+4500-1,Rebel Snowspeeder [Redesign] - Blue box,2003,169,216
+45001-1,Playground,2013,507,104
+4500-2,"Rebel Snowspeeder (redesign), Original Trilogy Edition box",2004,169,211
+45002-1,Tech Machines Set,2013,507,92
+45003-1,LEGO Soft Bricks Set,2013,526,84
+45007-1,Large Farm,2014,504,152
+450-1,Fork Lift,1973,416,42
+4501-1,"Mos Eisley Cantina, Blue box",2003,169,197
+45011-1,Duplo World People,2015,504,16
+4501-2,"Mos Eisley Cantina, Original Trilogy Edition box",2004,169,194
+45020-1,Creative Lego Brick Set,2016,507,998
+4502-1,"X-wing Fighter (Dagobah), Blue box",2003,169,566
+4502-2,"X-wing Fighter (Dagobah), Original Trilogy Edition box",2004,169,565
+4504-1,"Millennium Falcon (Redesign), Blue box",2003,169,996
+4504-2,"Millennium Falcon (Redesign), Original Trilogy Edition box",2003,169,979
+4505-1,Sea Machines,2004,204,168
+4506-1,Deep Sea Predators,2004,204,353
+4507-1,Prehistoric Creatures,2004,204,726
+4508-1,Titan XP,2004,204,784
+45100-1,Story Starter Core Set,2013,507,1145
+45103-1,StoryStarter Expansion Pack: Community,2015,507,200
+451-1,"1 x 6 x 3 Window, Red or White",1966,371,12
+45110-1,BuildToExpress Set,2013,507,204
+4511-1,High Speed Train,2003,239,335
+45120-1,LearnToLearn Core set,2014,528,2016
+4512-1,Cargo Train,2003,239,546
+4513-1,Grand Central Station,2003,239,350
+4514-1,Cargo Crane,2003,239,176
+4515-1,Straight Rails,1991,244,8
+4518-1,Creator Set,2004,37,805
+4519-1,Rail Crossing,1999,244,1
+4520-1,Curved Rails,1991,244,8
+452-1,Mobile Ground Tracking Station,1979,130,79
+4521221-1,Gold chrome plated C-3PO,2007,501,3
+452-2,"1 x 6 x 2 Window, Red or White",1966,371,16
+4524081-1,Mindstorms NXT CD,2007,258,0
+4524-1,Advent Calendar 2002 Creator,2002,214,24
+4524-10,Advent Calendar 2002 Creator (Day 9) Space Buggy,2002,223,18
+4524-11,Advent Calendar 2002 Creator (Day 10) Dinosaur,2002,223,8
+4524-12,Advent Calendar 2002 Creator (Day 11) Speedboat,2002,223,10
+4524-13,Advent Calendar 2002 Creator (Day 12) Reindeer,2002,223,10
+4524-14,Advent Calendar 2002 Creator (Day 13) Snowman,2002,223,15
+4524-15,Advent Calendar 2002 Creator (Day 14) Jet Ski,2002,223,11
+4524-16,Advent Calendar 2002 Creator (Day 15) Duck,2002,223,10
+4524-17,Advent Calendar 2002 Creator (Day 16) Police Boat,2002,223,9
+4524-18,Advent Calendar 2002 Creator (Day 17) Whale,2002,223,9
+4524-19,Advent Calendar 2002 Creator (Day 18) Space Shuttle,2002,223,11
+4524-2,Advent Calendar 2002 Creator (Day 1) Squirrel,2002,223,10
+4524-20,Advent Calendar 2002 Creator (Day 19) Parrot,2002,223,9
+4524-21,Advent Calendar 2002 Creator (Day 20) Steamship,2002,223,10
+4524-22,Advent Calendar 2002 Creator (Day 21) Building,2002,223,10
+4524-23,Advent Calendar 2002 Creator (Day 22) Helicopter,2002,223,11
+4524-24,Advent Calendar 2002 Creator (Day 23) Tree,2002,223,11
+4524-25,Advent Calendar 2002 Creator (Day 24) Present,2002,223,8
+4524-3,Advent Calendar 2002 Creator (Day 2) Boy,2002,223,1
+4524-4,Advent Calendar 2002 Creator (Day 3) Fireplace,2002,223,11
+4524-5,Advent Calendar 2002 Creator (Day 4) Santa,2002,223,10
+4524-6,Advent Calendar 2002 Creator (Day 5) Car,2002,223,15
+4524-7,Advent Calendar 2002 Creator (Day 6) Penguin,2002,223,10
+4524-8,Advent Calendar 2002 Creator (Day 7) Girl,2002,223,1
+4524-9,Advent Calendar 2002 Creator (Day 8) Dog with hat,2002,223,11
+4525-1,Road and Rail Repair,1994,236,84
+4526-1,Batman,2012,492,40
+4527-1,The Joker,2012,492,57
+4528-1,Green Lantern,2012,492,38
+4529-1,Iron Man,2012,492,44
+45300-1,WeDo Core Set,2016,521,279
+4530-1,The Hulk,2012,492,39
+45301-1,WeDo 2.0 Smart Hub,2016,521,1
+45302-1,WeDo 2.0 Smarthub Rechargeable Battery,2016,521,1
+45303-1,WeDo 2.0 Medium Motor,2016,521,1
+45304-1,WeDo 2.0 Motion Sensor,2016,521,1
+45305-1,WeDo 2.0 Tilt Sensor,2016,521,1
+453-1,Two Crater Plates,1979,143,2
+4531-1,Manual Points,1991,244,6
+453-2,"1 x 6 x 2 Shuttered Windows, Red or White",1966,371,16
+4532-1,Manual Level Crossing,1996,236,135
+4533-1,Train Track Snow Remover,1999,236,57
+4534-1,LEGO Express,2002,238,34
+4535-1,LEGO Express Deluxe,2002,238,754
+4536-1,Blue Hopper Car,1991,236,165
+4537-1,Octan Twin Tank Rail Tanker,1993,236,173
+4538-1,Special Edition,2004,37,200
+4539-1,Manual Level Crossing,1991,236,115
+4540315-1,LEGO Creative Bucket (TRU Exclusive),2009,37,480
+454-1,Two Lunar Landing Plates,1979,143,2
+4541-1,Rail and Road Service Truck,1999,236,126
+454-2,"1 x 4 x 2 Window, Red or White",1966,371,18
+4543-1,Railroad Tractor Flatbed,1991,236,179
+4544-1,Car Transport Wagon with Car,1994,236,142
+4546-1,Road and Rail Maintenance,1991,236,76
+4547-1,Club Car,1993,236,292
+4547551-1,Darth Vader 10 Year Anniversary Promotional Minifigure,2009,158,7
+4548-1,Transformer and Speed Regulator,1991,244,3
+4548431-1,Brick Tub 'Die Lego Show' - Limited Edition,2008,37,701
+4549-1,Container Double Stack,1993,236,450
+45500-1,EV3 Intelligent Brick,2013,262,1
+45501-1,EV3 Rechargeable DC Battery,2013,262,1
+45502-1,EV3 Large Servo Motor,2013,262,1
+45503-1,EV3 Medium Servo Motor,2013,262,1
+45504-1,EV3 Ultrasonic Sensor,2013,262,1
+45505-1,EV3 Gyro Sensor,2013,262,1
+45506-1,EV3 Color Sensor,2013,262,1
+45507-1,EV3 Touch Sensor,2013,262,1
+45508-1,EV3 Infrared Beacon,2013,262,1
+45509-1,EV3 Infrared Sensor,2013,262,1
+455-1,Lear Jet,1976,412,45
+4551-1,Crocodile Locomotive,1991,236,313
+45514-1,EV3 Cable Pack,2013,262,7
+45517-1,Transformer 10V DC,2016,518,1
+455-2,"1 x 3 x 2 Window, Red or White",1966,371,24
+4552-1,Cargo Crane,1995,236,281
+4553-1,Train Wash,1999,236,189
+4554-1,Metro Station,1991,236,605
+45544-1,EV3 Core Set,2013,262,546
+4555-1,Cargo Station,1995,236,393
+45560-1,EV3 Expansion Set,2013,262,853
+4556-1,Train Station,1999,236,232
+45570-1,Space Challenge Set,2014,518,1368
+4557-1,Freight Loading Station,1999,236,215
+4558-1,Metroliner,1991,236,786
+4559-1,Cargo Railway,1996,236,845
+4559288-1,Power Miners Promotional Polybag,2009,439,4
+4559385-1,{Power Miners Promotional Polybag},2009,439,4
+4559387-1,{Power Miners Promotional Polybag},2009,439,4
+4560-1,Railway Express,1999,236,672
+456-1,Spirit of St. Louis,1977,412,49
+4561-1,Railway Express with Transformer and Speed Regulator,1999,236,673
+456-2,"1 x 2 x 2 Window, Red or White",1966,371,30
+4562-1,Creator Box,2004,37,200
+4563-1,Load and Haul Railroad,1991,236,479
+4564-1,Freight Rail Runner,1994,236,591
+4565-1,Freight and Crane Railway,1996,236,915
+4566-1,Gear,2001,125,7
+4567-1,Surfer,2001,125,7
+4568-1,Loopin,2001,125,7
+4569-1,Warrior,2001,125,8
+4570-1,Shredd,2001,125,7
+457-1,"1 x 1 x 2 Window, Red or White",1966,371,38
+4571-1,Spiky,2001,125,7
+4572-1,Scratch,2001,125,7
+4573-1,Lightor,2001,125,7
+4574-1,Rip,2001,125,7
+4575-1,Pulse,2001,125,7
+4576-1,Duster,2001,125,7
+4577-1,Snake,2001,125,7
+4578-1,Ghost,2001,125,7
+4579-1,Ice Ramp Racers,2001,125,112
+45800-1,FIRST LEGO League Challenge 2014 - World Class,2014,398,2098
+45801-1,Trash Trek (FLL),2015,398,1992
+45802-1,Animal Allies,2016,398,2165
+458-1,"1 x 2 x 1 Window, Red or White",1966,371,38
+4582-1,Red Bullet,2002,113,29
+4583-1,Maverick Storm,2002,113,31
+4584-1,Hot Scorcher,2002,113,58
+4585-1,Nitro Pulverizer,2002,113,61
+4586-1,Stunt Race Track,2002,121,168
+4586940-1,Basic Set Limited Edition,2010,37,480
+4587-1,Duel Racers,2002,113,193
+4588-1,Off Road Race Track,2002,121,364
+4589-1,RC-Nitro Flash,2002,117,135
+4590-1,Flash Turbo,2002,113,28
+459-1,"1 x 1 x 1 Window, Red or White",1966,371,40
+4591-1,Star Burst/Star Strike,2002,113,28
+4591715-1,Golden Die [TRU Exclusive],2009,502,7
+4591726-1,Stormtrooper,2009,169,1
+4592-1,Red Monster,2002,113,25
+4593-1,Zero Hurricane & Red Blizzard,2002,113,74
+4594-1,Maverick Sprinter & Hot Arrow,2002,113,66
+4595-1,Zero Tornado & Hot Rock,2002,113,71
+4595400-1,Rocket Kit,2010,124,26
+4596-1,Storming Cobra,2002,113,76
+4597068-1,Boba Fett,2010,170,5
+4597-1,Captain America,2012,492,44
+4599605-1,Easter Chicks,2010,229,15
+4600-1,Police Cruiser,2001,281,23
+460-1,Rescue Units,1973,420,36
+4601-1,Fire Cruiser,2001,283,22
+460-2,"1 x 2 x 3 Door, Red or White",1966,371,26
+4603-1,Res-Q Wrecker,2001,284,30
+4604-1,Police Copter,2001,281,16
+4605-1,Fire Response SUV,2001,283,30
+4606-1,Aqua Res-Q Transport,2001,284,40
+4607-1,Copter Transport,2001,284,66
+4608-1,Bank Breakout,2001,281,68
+4609-1,Fire Attack Team,2001,283,95
+4610-1,Aqua Res-Q Super Station,2001,284,92
+4611-1,Police HQ,2001,281,137
+4612-1,Super Glider,2002,282,7
+4613-1,Turbo Chopper,2002,282,13
+4613985-1,Build a Bullseye Target Gift Card Promotional,2010,227,32
+4614-1,Ultralight Flyer,2002,282,16
+4615-1,Red Recon Flyer,2002,282,21
+4616-1,Rapid Response Tanker,2002,285,35
+4617-1,Dual Turbo Prop,2002,282,32
+4618-1,Twin Rotor Cargo,2002,282,44
+4619-1,A.I.R. Patrol Jet,2002,282,65
+4620-1,A.I.R. Operations HQ,2002,282,174
+462-1,Mobile Rocket Launcher,1979,130,77
+4621-1,Jack Stone Red Flash Station,2002,283,32
+462-2,"2 x 8 Plates, White",1966,371,16
+4622-1,Res-Q Digger,2002,284,67
+4623-1,DUPLO Pink Brick Box,2012,504,30
+4624-1,DUPLO Brick Box,2012,504,31
+4625-1,LEGO Pink Brick Box,2012,23,219
+4626-1,Farm Brick Box,2012,37,231
+4627-1,Fun With Bricks,2012,504,85
+4628-1,Fun with Bricks,2012,22,600
+4629-1,Build and Play Box,2012,504,149
+4630-1,Build and Play Box,2012,37,1000
+463-1,"4 x 8 Plates, White",1966,371,8
+4631-1,My First Build,2012,504,61
+4632-1,Building Plates,2012,504,3
+4635-1,Fun with Vehicles,2012,22,525
+4636-1,Police Building Set,2012,22,130
+4636204-1,Ninjago Promotional Giveaway,2011,435,11
+4637-1,Safari Building Set,2012,22,152
+464-1,"6 x 8 Plates, White",1966,371,6
+4641-1,Speed Boat,2011,59,34
+4642-1,Fishing Boat,2011,59,63
+4643-1,Power Boat Transporter,2011,59,245
+4644-1,Marina,2011,59,272
+4645-1,Harbor,2011,59,550
+4648933-1,Hero Factory Accessories,2011,400,6
+4648939-1,Golden Die with 1-6 dot tiles,2011,502,8
+4649858-1,Shadow ARF Trooper Promotional Polybag,2011,165,5
+4651-1,Police Motorcycle,2003,291,12
+4652-1,Tow Truck,2003,292,26
+4653-1,Dump Truck,2003,293,28
+4654-1,Tanker Truck,2003,294,43
+4655-1,Quick Fix Station,2003,294,103
+4657-1,Fire Squad HQ,2003,295,147
+4659018-1,Master Builder Academy: Kits 2-6 Subscription,2011,432,5
+4659-1,Duplo Garbage Truck,2005,504,13
+4659597-1,Friends - Bracelets,2012,501,4
+4659602-1,Display Stand,2012,494,17
+4659607-1,Hero Factory Booster Pack,2012,400,6
+4659612-1,Spinner Ring,2012,435,1
+4659758-1,Build a Bullseye 3 in 1 Target Gift Card Promotional,2011,227,50
+4660865-1,Target Lego Gift Card 2011 3 in 1 Set,2011,227,51
+4662-1,Duplo Post Office,2005,504,17
+4665-1,Big Farm,2005,504,69
+4666-1,Speedy Police Car,2003,291,25
+4667-1,Loadin' Digger,2003,293,30
+4668-1,Outrigger Construction Crane,2003,293,67
+4669-1,Turbo-Charged Police Boat,2003,291,54
+4677-1,Name Letter Pack,2004,301,67
+4679-1,Bricks and Creations Tub,2004,37,2
+4679-2,Bricks and Creations Tub - (TRU Exclusive),2005,37,2
+4679a-1,Bricks and Creations Tub (Bottom Tub and its contents only),2004,37,1000
+4679a-2,Bricks and Creations Tub - (TRU Exclusive) (Bottom Tub and its contents only),2005,37,1000
+4679b-2,Free 500 LEGO Bricks (Bonus box and its contents only),2005,48,500
+4695-1,Knight Bus - Mini,2004,246,58
+4696-1,Blue Bucket,2004,37,200
+470-1,"1 x 1, 1 x 2, 2 x 2, 2 x 3, 2 x 4 Plates (System)",1966,371,273
+4701-1,Sorting Hat,2001,251,50
+4702-1,The Final Challenge,2001,251,61
+4704-1,The Chamber of the Winged Keys,2001,251,180
+4705-1,Snape's Class,2001,251,167
+4706-1,Forbidden Corridor,2001,251,239
+4707-1,Hagrid's Hut,2001,251,298
+4708-1,Hogwarts Express,2001,246,412
+4709-1,Hogwarts Castle,2001,251,696
+471-1,Tiles (System),1966,371,156
+4711-1,Flying Lesson,2002,251,24
+4712-1,Troll on the Loose,2002,251,69
+4714-1,Gringott's Bank,2002,251,263
+471518-1,Happy The Cute Dolphin,2015,494,17
+471602-1,Pony Grooming Kit,2016,494,28
+4719-1,Quality Quidditch Supplies,2003,247,121
+4720-1,Knockturn Alley,2003,247,211
+4721-1,Hogwarts Classroom,2001,251,75
+4722-1,Gryffindor,2001,251,70
+4723-1,Diagon Alley Shops,2001,251,85
+4726-1,Quidditch Practice,2002,247,131
+4727-1,Aragog in the Dark Forest,2002,247,183
+4728-1,Escape from Privet Drive,2002,247,282
+4729-1,Dumbledore's Office,2002,247,451
+4730-1,Chamber of Secrets,2002,247,597
+4731-1,Dobby's Release,2002,247,71
+4733-1,The Dueling Club,2002,247,133
+4735-1,Slytherin,2002,247,93
+4736-1,Freeing Dobby,2010,246,73
+4737-1,Quidditch Match,2010,246,153
+4738-1,Hagrid's Hut (3rd edition),2010,246,442
+4741-1,Blacktron Super Vehicle (Value 3-Pack),1993,129,4
+4742-1,Chill Speeder,2004,306,57
+4743-1,Ice Blade,2004,306,103
+4744-1,Tundra Tracker,2004,306,140
+4745-1,Blue Eagle vs. Snow Crawler,2004,306,257
+4746-1,Mobile Command Center,2004,306,425
+4748-1,Ogel's Mountain Fortress,2004,306,413
+4750-1,Draco's Encounter with Buckbeak,2004,250,37
+4751-1,Harry and the Marauder's Map,2004,250,108
+4752-1,Professor Lupin's Classroom,2004,250,158
+4753-1,Sirius Black's Escape,2004,250,192
+4754-1,Hagrid's Hut (2nd edition),2004,250,296
+4755-1,Knight Bus,2004,250,244
+4756-1,Shrieking Shack,2004,250,450
+4757-1,Hogwarts Castle (2nd edition),2004,250,902
+4758-1,Hogwarts Express (2nd edition),2004,246,368
+4759-1,Three Christmas Decorations - Santa Tree and Snowman,2004,227,3
+4762-1,Rescue from the Merpeople,2005,248,177
+4766-1,Graveyard Duel,2005,248,551
+4767-1,Harry and the Hungarian Horntail,2005,248,265
+4768-1,The Durmstrang Ship,2005,248,552
+4768-2,The Durmstrang Ship with Bonus Mini - Figures (Target exclusive),2005,248,544
+4770-1,Blizzard Blaster,2004,306,303
+4774-1,Scorpion Orb Launcher,2004,306,223
+4778-1,Desert Biplane,2005,106,108
+4780-1,Box of Bricks,2005,48,500
+4781-1,Box of Bricks,2005,48,300
+4782-1,Box of Bricks,2005,48,200
+4782-2,Creator 200 Piece Box of Bricks - Individual Retail Version,2005,48,200
+4788-1,Ogel Mutant Ray,2002,305,68
+4789-1,Alpha Team Aquatic Mech,2002,305,166
+4790-1,Alpha Team Robot Diver,2002,305,32
+4791-1,Alpha Team Sub-Surface Scooter,2002,305,42
+4792-1,Alpha Team Navigator and ROV,2002,305,93
+4793-1,Ogel Sub Shark,2002,305,114
+4794-1,Alpha Team Command Sub,2002,305,188
+4795-1,Ogel Underwater Base and AT Sub,2002,305,478
+4796-1,Ogel Mutant Squid,2002,305,62
+4797-1,Ogel Mutant Killer Whale,2002,305,61
+4798-1,Evil Ogel Attack,2002,305,21
+4799-1,Ogel Drone Octopus,2002,305,18
+4800-1,Jet Sub,2002,305,23
+480-1,Rescue Helicopter,1975,417,62
+4801-1,Defense Archer,2000,197,15
+480-4,"Slopes and Slopes Double 2 x 4, Red (The Building Toy)",1966,371,14
+480-5,"Slopes and Slopes Double 2 x 4, Blue (The Building Toy)",1966,371,14
+4805-1,Ninja Knights,1999,434,31
+480-6,"Slopes and Slopes Double 2 x 4, Red (System)",1966,371,23
+4806-1,Axe Cart,2000,197,28
+480-7,"Slopes and Sloped Double 2 x 4, Blue (System)",1966,371,23
+4807-1,Fire Attack,2000,197,24
+4810-1,Blue Creator Bucket,2001,37,256
+4811-1,Defense Archer,2000,197,15
+481-3,"Slopes and Slopes Double 2 x 3 and 2 x 1, Red (The Building Toy)",1966,371,21
+481-4,"Slopes and Slopes Double 2 x 3 an 2 x 1, Blue (The Building Toy)",1966,371,21
+481-5,"Slopes Regular, Double, Angle, Valley and Corner, Red (System)",1966,371,34
+481-6,"Slopes Regular, Double, Angle, Valley and Corner, Blue (System)",1966,371,34
+4816-1,Knight's Catapult,2000,197,50
+4817-1,Dungeon,2000,197,39
+4818-1,Dragon Rider,2000,197,15
+4819-1,Rebel Chariot,2000,197,49
+4820-1,Princess' Palace,2005,504,71
+482-3,"Slopes and Slopes Double 2 x 2, Red (The Building Toy)",1966,371,22
+482-4,"Slopes and Slopes Double 2 x 2, Blue (The Building Toy)",1966,371,22
+4828-1,LEGO Princess Royal Stables,2007,504,45
+483-1,Alpha-1 Rocket Base,1979,130,187
+483-4,"Angle, Valley and Corner Slopes, Red (The Building Toy)",1966,371,20
+483-5,"Angle, Valley and Corner Slopes, Blue (The Building Toy)",1966,371,20
+4837-1,Mini Trains,2008,22,73
+4838-1,Mini Vehicles,2008,22,79
+4840-1,The Burrow,2010,246,572
+4841-1,Hogwarts Express (3rd edition),2010,246,646
+4842-1,Hogwarts Castle [Fourth Edition],2010,246,1290
+4850-1,Spider-Man's First Chase,2003,488,190
+485-1,Fire Truck,1976,417,60
+4851-1,The Origins,2003,488,219
+485-2,Lighting Brick (System),1966,371,4
+4852-1,The Final Showdown,2003,488,359
+4853-1,Spider-Man's Street Chase,2004,488,81
+4854-1,Doc Ock's Bank Robbery,2004,488,173
+4855-1,Spider-Man's Train Rescue,2004,488,298
+4856-1,Doc Ock's Hideout,2004,488,485
+4857-1,Doc Ock's Fusion Lab,2004,488,237
+4858-1,Doc Ock's Crime Spree,2004,288,57
+4860-1,Doc Ock's Cafe Attack,2004,288,132
+4865-1,The Forbidden Forest,2011,246,64
+4866-1,The Knight Bus,2011,246,281
+4867-1,Hogwarts,2011,246,465
+4868-1,Rahaga Gaaki,2005,342,28
+4869-1,Rahaga Pouks,2005,342,28
+4870-1,Rahaga Kualus,2005,342,28
+487-1,Space Cruiser,1979,130,172
+487-2,1 x 1 Bricks with Numbers (System),1966,371,44
+4875-1,Groovy Friends Gems,2005,500,13
+4876-1,Fun Friends Hair Bands,2005,500,22
+4877-1,Rahaga Norik,2005,342,28
+4878-1,Rahaga Bomonga,2005,342,28
+4879-1,Rahaga Iruini,2005,342,28
+488-1,1 x 1 Bricks with Letters (System),1966,371,44
+4881-1,Robo Platoon,2005,204,219
+4882-1,Speed Wings,2004,204,162
+4882-2,Speed Wings - ANA version,2004,204,163
+4883-1,Gear Grinders,2005,204,279
+4884-1,Wild Hunters,2005,204,630
+4886-1,Building Bonanza,2004,205,667
+4888-1,Ocean Odyssey,2005,204,623
+489-1,Traffic Signs,1966,371,14
+4891-1,Highway Haulers,2006,38,210
+4892-1,Prehistoric Power,2006,40,380
+4893-1,Revvin' Riders,2006,41,362
+4894-1,Mythical Creatures,2006,40,588
+4895-1,Motion Power,2006,42,613
+4896-1,Roaring Roadsters,2006,38,931
+4897-1,Police Trike,2008,61,24
+4898-1,Coast Guard Boat,2008,55,35
+4899-1,Farmer & Tractor,2009,57,28
+4900-1,Fire Helicopter,2008,58,30
+490-1,Mobile Crane,1975,416,46
+490-2,Trees and Bushes,1966,371,9
+4903-1,Lion,2005,204,42
+4904-1,Elephant (Life cereal promotion),2005,204,34
+4905-1,Giraffe,2005,204,37
+4906-1,Helicopter,2005,24,16
+4910-1,Hover Scout,1999,442,40
+491-1,Formula 1 Racer,1977,397,67
+4911-1,Designer Set,2005,22,37
+491-2,"Shell Station Brick and Sign, 6 Named Beams",1966,371,20
+4912-1,Police Jet Ski,2005,61,22
+4914-1,Fire Chief's Car,2005,58,31
+4915-1,Mini Construction,2007,26,68
+4916-1,Mini Animals,2007,31,77
+4917-1,Mini Robots,2007,32,77
+4918-1,Mini Flyers,2007,24,76
+4919-1,Blue Tub,2005,37,1500
+4920-1,Rapid Rider,1999,442,39
+492-1,Truck & Payloader,1977,416,59
+492-2,Nordic and American Flags,1966,371,8
+4924-1,Advent Calendar 2004 Creator,2004,214,24
+4924-10,Advent Calendar 2004 Creator (Day 9) Skiing Elf,2004,223,16
+4924-11,Advent Calendar 2004 Creator (Day 10) Sledding Santa,2004,223,14
+4924-12,Advent Calendar 2004 Creator (Day 11) Goose,2004,223,14
+4924-13,Advent Calendar 2004 Creator (Day 12) Green Present,2004,223,7
+4924-14,Advent Calendar 2004 Creator (Day 13) Santa Ornament,2004,223,12
+4924-15,Advent Calendar 2004 Creator (Day 14) Helicopter,2004,223,13
+4924-16,Advent Calendar 2004 Creator (Day 15) Reindeer,2004,223,9
+4924-17,Advent Calendar 2004 Creator (Day 16) Elf Girl,2004,223,14
+4924-18,Advent Calendar 2004 Creator (Day 17) Speedboat,2004,223,13
+4924-19,Advent Calendar 2004 Creator (Day 18) Racing Car,2004,223,23
+4924-2,Advent Calendar 2004 Creator (Day 1) Elf Ornament,2004,223,15
+4924-20,Advent Calendar 2004 Creator (Day 19) Snowman,2004,223,13
+4924-21,Advent Calendar 2004 Creator (Day 20) Leaf Ornament,2004,223,18
+4924-22,Advent Calendar 2004 Creator (Day 21) Santa,2004,223,13
+4924-23,Advent Calendar 2004 Creator (Day 22) Sailing Ship,2004,223,16
+4924-24,Advent Calendar 2004 Creator (Day 23) Tree,2004,223,12
+4924-25,Advent Calendar 2004 Creator (Day 24) Air Boat,2004,223,9
+4924-3,Advent Calendar 2004 Creator (Day 2) Plane,2004,223,13
+4924-4,Advent Calendar 2004 Creator (Day 3) Parrot,2004,223,13
+4924-5,Advent Calendar 2004 Creator (Day 4) Robot,2004,223,19
+4924-6,Advent Calendar 2004 Creator (Day 5) Blue Present,2004,223,7
+4924-7,Advent Calendar 2004 Creator (Day 6) Ship,2004,223,19
+4924-8,Advent Calendar 2004 Creator (Day 7) Angel Ornament,2004,223,17
+4924-9,Advent Calendar 2004 Creator (Day 8) Van,2004,223,16
+4930-1,Rock Raiders,1999,442,48
+493-1,Space Command Center (Flatplate version),1979,130,193
+493-2,European Flags,1966,371,8
+493-3,Space Command Center (Craterplate version),1979,130,177
+4933-1,Street Sweeper,2007,63,14
+4936-1,Medic and Patient,2007,60,18
+4937-1,Life Guard - Quick Magic Box Promotional,2007,55,38
+4938-1,Fireman's Car,2007,58,28
+4939-1,Cool Cars,2007,38,206
+4940-1,Granite Grinder,1999,442,109
+494-1,"Gates and Fence, Red (System)",1967,371,17
+4941-1,Plastic Figure - RASCUS (Nestle Promotional),2005,198,3
+494-2,"Gates and Fence, White (The Building Toy)",1967,371,17
+4942-1,Plastic Figure - Dark Knight (Nestle Promotional),2005,198,3
+4943-1,Plastic Figure - Lord VLADEK (Nestle Promotional),2005,198,3
+4944-1,Plastic Figure - Sir JAYKO (Nestle Promotional),2005,198,3
+4945-1,Plastic Figure - Sir SANTIS (Nestle Promotional),2005,198,3
+4946-1,Plastic Figure - Sir DANJU (Nestle Promotional),2005,198,3
+4947-1,Yellow and Black Racer,2006,120,28
+4948-1,Black and Red Racer,2006,120,22
+4949-1,Blue and Yellow Racer,2006,120,24
+4950-1,Loader - Dozer,1999,442,90
+4953-1,Fast Flyers,2007,42,305
+4954-1,Model Town House,2007,43,1174
+4955-1,Big Rig,2007,39,550
+4956-1,House,2007,43,731
+4957-1,Ferris Wheel,2007,44,1066
+4958-1,Monster Dino,2007,40,792
+4959-1,The Loader-Dozer,1999,442,90
+4962-1,Baby Zoo,2006,504,16
+4962-2,Baby Zoo (re-release),2014,504,18
+4963-1,Police Patrol,2006,504,5
+4966-1,Doll's House,2006,504,90
+4970-1,Chrome Crusher,1999,442,168
+497-1,Galaxy Explorer,1979,130,342
+4980-1,Tunnel Transport,1999,442,351
+4981-1,The Chum Bucket,2007,272,336
+4982-1,Mrs. Puff's Boating School,2007,272,394
+4986-1,Duplo Digger,2007,504,19
+4987-1,Gravel Pit,2007,504,40
+4990-1,Rock Raiders HQ,1999,442,414
+4991-1,Police Helicopter,2007,61,26
+4992-1,Fire Boat,2007,58,23
+4993-1,Cool Convertible,2008,39,648
+4994-1,Fierce Creatures,2008,40,193
+4995-1,Cargo Copter,2008,45,272
+4996-1,Beach House,2008,43,522
+4997-1,Transport Ferry,2008,46,1279
+4998-1,Stegosaurus,2008,40,730
+4999-1,Vestas Windmill,2008,50,809
+5000021-1,Pirates of the Caribbean Classic Collection,2011,263,2
+5000022-1,Hulk,2012,487,4
+5000023-1,"LEGO Store Grand Re-Opening Exclusive Set (Colorado Mills, Denver, CO)",2012,408,12
+5000027-1,Pirates of the Caribbean 4 Collection,2011,263,2
+5000030-1,Booster Pack Kendo Jay,2012,435,31
+5000062-1,Darth Maul,2012,178,3
+5000063-1,TC-14,2012,178,3
+5000067-1,Star Wars Sith Kit,2011,158,2
+5000068-1,Harry Potter Classic Kit,2011,246,3
+5000-1,Replacement 4.5V Motor,1987,443,1
+5000143-1,Star Wars with Boba Fett Minifigure Watch,2011,501,0
+5000196304-1,The Hobbit - The Battle of the Five Armies (Blu-ray with Minifigures),2015,565,7
+5000202-1,Elrond,2012,566,6
+5000214-1,Star Wars Character Encyclopedia,2011,497,4
+5000215-1,Harry Potter: Building the Magical World,2011,497,4
+5000245-1,Stephanie,2012,494,5
+5000249-1,LEGO® Star Wars™ Boba Fett™ Minifigure Clock,2012,501,0
+5000281-1,Chase McCain,2012,61,4
+50003-1,Batman,2013,502,252
+50004-1,Story Mixer,2013,502,425
+5000437-1,Vintage Minifigure Collection Vol. 1 - 2012 Edition,2012,535,21
+5000438-1,Vintage Minifigure Collection Vol. 2 - 2012 Edition,2012,535,22
+5000439-1,Vintage Minifigure Collection Vol. 3 - 2012 Edition,2012,535,19
+5000440-1,Vintage Minifigure Collection Vol. 4 - 2012 Edition,2012,535,25
+5000463-1,8 stud Red Storage Brick,2014,501,0
+50006-1,Legends Of Chima,2013,502,211
+5000642-1,Star Wars poster,2012,501,0
+5000644-1,Monster Fighters Promotional Pack,2012,558,11
+5000646-1,City poster,2012,501,0
+5000672-1,The LEGO® Ideas Book,2011,497,0
+5000728-1,DC Universe Super Heroes Collection,2012,492,3
+5001096-1,Batman™ 2: DC Super Heroes - Xbox 360,2012,501,0
+5001-1,Wheel Bushes for 4.5V Basic Motor,1987,443,4
+50011-1,The Battle for Helms Deep,2013,502,338
+5001121-1,BR LEGO Minifigure,2013,301,5
+5001130-1,The Battle of Helm's Deep Collection,2012,568,2
+5001132-1,The Lord of the Rings Collection,2012,566,7
+5001133-1,Monster Fighters Collection,2012,558,7
+5001134-1,Mining Collection,2012,56,5
+5001136-1,Buildable Galaxy Collection,2012,176,3
+5001137-1,Battle Pack Collection,2012,158,2
+5001159-1,Darth Vader Light Key Chain,2012,503,0
+5001160-1,Stormtrooper Light Key Chain,2012,503,0
+5001252-1,2013 Calendar,2012,501,0
+5001266-1,8 stud Blue Storage Brick,2014,501,0
+5001267-1,8 stud Yellow Storage Brick,2014,501,0
+5001270-1,MBA Kits 2 - 3,2012,432,2
+5001273-1,MBA Kits 4 - 6,2012,432,3
+5001307-1,Buildable Galaxy Collection II,2012,177,3
+5001308-1,The Old Republic Collection,2012,158,2
+5001309-1,Return of the Jedi Collection,2012,158,2
+5001357-1,Ninjago Kendo Cole Kids' Watch,2012,501,0
+5001370-1,LEGO® Time-Teacher Minifigure Watch & Clock,2012,501,0
+5001371-1,LEGO® Time-Teacher Girl Minifigure Watch & Clock,2012,501,0
+5001377-1,Lunch Box,2012,501,0
+5001380-1,Mini box pink,2012,501,0
+5001382-1,Mini box red,2012,501,0
+5001383-1,4-stud Blue Storage Brick,2012,501,0
+5001384-1,4-stud Green Storage Brick,2012,501,0
+5001385-1,4-stud Red Storage Brick,2012,501,0
+5001386-1,8-stud Blue Storage Brick,2012,501,0
+5001387-1,8-stud Green Storage Brick,2012,501,0
+5001388-1,Red Storage Brick,2012,501,0
+5001621-1,Han Solo (Hoth),2013,158,2
+5001622-1,LEGO Store Employee,2013,408,5
+5001623-1,Jor-El,2013,489,5
+5001709-1,Clone Trooper Lieutenant,2013,165,4
+5001925-1,Horizon Express Kit,2013,240,7
+5002041-1,The LEGO Movie Accessory Pack,2014,578,50
+5002045-1,Pyjamas Emmet,2014,578,4
+5002-1,Rubber Chain Tracks,1987,443,2
+5002112-1,Bracelets,2014,494,18
+5002113-1,Beach Hammock,2014,494,23
+5002122-1,TC-4,2014,178,3
+5002123-1,Darth Revan,2014,158,7
+5002125-1,Electro,2015,488,5
+5002126-1,Martian Manhunter,2014,486,4
+5002127-1,Flashback Shredder,2014,570,6
+5002136-1,Arctic Accessory Set,2014,65,25
+5002145-1,Rocket Raccoon,2014,483,12
+5002146-1,Minifigure Collection 2013 Vol 1 of 3,2013,535,6
+5002201-1,Friends Brick Light (Pink),2013,501,0
+5002203-1,Radio DJ Robot,2014,578,4
+5002204-1,Western Emmet,2014,578,6
+5002207-1,LEGO® Classic Minifigure Link Watch,2013,501,0
+5002210-1,C-3PO and R2-D2 Minifigure Watch,2013,501,0
+5002212-1,LEGO® Star Wars™ Chewbacca™ Minifigure Watch,2013,501,0
+5002422-1,The Joker Minifigure Clock,2013,501,0
+5002423-1,LEGO® DC Universe Super Heroes Batman™ Minifigure Clock,2013,501,0
+5002424-1,LEGO® DC Universe Super Heroes Superman™ Minifigure Clock,2013,501,0
+5002467-1,Friends 2x4 Key Light,2013,503,0
+5002506-1,LEGO® Minifigures: Character Encyclopedia,2013,497,0
+5002518-1,LEGO® Belkin Brand iPhone 5 Case Pink/Violet,2013,501,0
+5002773-1,Lego Brickmaster - The Quest for CHI,2013,497,187
+5002780-1,LEGO® Play Book,2013,497,0
+5002792-1,LEGO® Marvel Super Heroes PC DVD Video Game,2013,502,0
+5002793-1,LEGO® Marvel Super Heroes PS VITA Video Game,2013,502,0
+5002812-1,D2C Minifigure Retro Set 2014,2014,126,18
+5002813-1,Train Ornament,2014,228,25
+5002887-1,The LEGO® Book,2009,497,0
+5002888-1,The LEGO® Minifigure: Year by Year,2013,497,0
+5002914-1,THE LEGO® MOVIE™ Emmet Key Light,2014,503,0
+5002915-1,Batman Key Light,2014,503,0
+5002916-1,THE LEGO® MOVIE™ Unikitty Key Light,2014,503,0
+5002919-1, Scenery and Dagger Trap polybag,2015,435,25
+5002928-1,Party Polybag,2015,494,11
+5002929-1,Friends Interior Design Kit,2015,494,28
+5002930-1,Hair Accessories,2015,494,6
+5002931-1,Disco Dance Floor,2015,494,26
+5002938-1,Stormtrooper Sergeant,2015,158,6
+5002939-1,The Phantom,2015,182,23
+5002941-1,Bionicle Hero Pack,2015,324,6
+5002942-1,Bionicle Villain Pack,2015,324,10
+5002943-1,Winter Soldier,2015,487,1
+5002946-1,Silver Centurion,2016,487,0
+5002947-1,Admiral Yularen,2015,158,4
+5003022-1,THE LEGO® MOVIE™ Bad Cop Minifigure Alarm Clock,2014,501,0
+5003023-1,THE LEGO® MOVIE™ Bad Cop Minifigure Link Watch,2014,501,0
+5003024-1,THE LEGO® MOVIE™ Lucy/Wyldstyle Minifigure Link Watch,2014,501,0
+5003025-1,THE LEGO® MOVIE™ Emmet Minifigure Link Watch,2014,501,0
+5003026-1,THE LEGO® MOVIE™ Lucy/Wyldstyle Minifigure Alarm Clock,2014,501,0
+5003027-1,THE LEGO® MOVIE™ Emmet Minifigure Alarm Clock,2014,501,0
+5003082-1,Pirates Adventure,2015,154,28
+5003083-1,Christmas Tree Ornament,2015,598,31
+5003084-1,The Hulk,2015,487,14
+5003096-1,LEGO® City Fire Collection: 60004 and 850618,2014,58,2
+5003-1,"Light Bricks, 4.5V",1987,443,2
+5003246-1,EV3 Track Rubber Elements,2015,507,30
+5003545-1,THE LEGO® MOVIE™ PS4 Video Game,2014,502,0
+5003559-1,THE LEGO® MOVIE™ Xbox One Video Game,2014,502,0
+5003561-1,Legends of Chima Lunch Set,2014,501,0
+5003562-1,Legends of Chima Sorting System,2014,501,0
+5003563-1,Friends Lunch Set,2014,501,0
+5003564-1,Friends Sorting System,2014,501,0
+5003565-1, 1 stud Blue Storage Brick,2014,501,0
+5003566-1,1 stud Red Storage Brick,2014,501,0
+5003568-1,2 stud Blue Storage Brick,2014,501,0
+5003569-1,2 stud Red Storage Brick,2014,501,0
+5003570-1,2 stud Yellow Storage Brick,2014,501,0
+5003574-1,4 stud Blue Storage Brick,2014,501,0
+5003575-1,4 stud Red Storage Brick,2014,501,0
+5003576-1,4 stud Yellow Storage Brick,2014,501,0
+5003578-1,Legends of Chima The Lion the Crocodile and the Power of CHI!,2014,501,0
+5003579-1,Batman Head Lamp,2014,501,0
+5003580-1,Catwoman Key Light,2014,503,0
+5003582-1,Superman Head Lamp,2014,501,0
+5003583-1,LEGO® Star Wars™ Darth Vader™ Head Lamp,2014,501,0
+5003584-1,Bad Cop Key Light,2014,503,0
+5003586-1,THE LEGO MOVIE President Business Key Light,2014,503,0
+5004064-1,LEGO® Super Heroes DC Universe™ Batman™ Minifigure Link Watch,2014,501,0
+5004065-1,LEGO® Super Heroes DC Universe™ Superman™ Minifigure Link Watch,2014,501,0
+5004066-1,The LEGO Movie The Original Motion Picture Soundtrack,2014,501,0
+5004067-1,The LEGO Movie Lunch Set,2014,501,0
+5004076-1,Minifigure Gift Set (Target Exclusive),2014,598,20
+5004077-1,2015 Target Minifigure Gift Set,2015,598,5
+5004-1,Keys for Windup Motor,1987,443,2
+5004102-1,THE LEGO® MOVIE™ The Essential Guide,2014,497,0
+5004103-1,LEGO® Brickmaster: Star Wars™ Crystal,2013,497,1
+5004115-1,LEGO® Brick Black Adult Watch,2014,501,0
+5004116-1,LEGO® Friends Stephanie Watch with Mini-Doll,2014,501,0
+5004117-1,LEGO® Multi-stud Red Adult Tachymeter Watch,2014,501,0
+5004118-1,LEGO® NINJAGO™ Kai Minifigure Clock,2014,501,0
+5004119-1,LEGO® Brick White Adult Watch,2014,501,0
+5004120-1,LEGO® Star Wars™: The Yoda Chronicles,2014,501,4
+5004127-1,LEGO® NINJAGO™ Kai Minifigure Link Watch,2014,501,0
+5004128-1,LEGO® Happiness Yellow Adult Watch,2014,501,0
+5004129-1,LEGO® NINJAGO™ Zane Minifigure Clock,2014,501,0
+5004130-1,LEGO® Friends Olivia Watch with Mini-Doll,2014,501,0
+5004131-1,LEGO® NINJAGO™ Zane Minifigure Link Watch,2014,501,0
+5004195-1,LEGO® Star Wars™: The Visual Dictionary (Updated and Expanded),2014,497,4
+5004196-1,LEGO® Star Wars™: Choose Your Side! Ultimate Sticker Collection,2014,501,0
+5004197-1,Friends Character Encyclopedia,2014,497,6
+5004237-1,THE LEGO® MOVIE™: Blu-ray Combo Pack (Blu-ray + DVD + UltraViolet Digital HD),2014,501,0
+5004238-1,THE LEGO MOVIE Everything Is Awesome Edition,2014,501,6
+5004248-1,LEGO® Friends Andrea Key Light,2014,503,0
+5004249-1,LEGO® Friends Emma Key Light,2014,503,0
+5004250-1,LEGO® Friends Mia Key Light,2014,503,0
+5004251-1,LEGO® Friends Olivia Key Light,2014,503,0
+5004252-1,LEGO® Friends Stephanie Key Light,2014,503,0
+5004259-1,Holiday Ornament Collection,2014,228,6
+5004260-1,"Friends Animal Collection 3 in 1 (41044, 41045, 41046)",2014,496,3
+5004261-1,"The Hobbit Ultimate Kit (79015, 79016, 79017, 79018)",2014,565,4
+5004262-1,LEGO 1x2 Brick Key Light (Blue),2014,503,0
+5004263-1,LEGO 1x2 Brick Key Light (Green),2014,503,0
+5004264-1,LEGO 1x2 Brick Key Light (Red),2014,503,0
+5004266-1,LEGO Mini Box (Yellow),2014,501,0
+5004267-1,LEGO 1 stud Red Storage Brick,2014,501,0
+5004268-1,LEGO 1 stud Blue Storage Brick,2014,501,0
+5004273-1,LEGO Friends Storage Brick 2 Bright Purple,2014,501,0
+5004274-1,LEGO Friends Storage Brick 1 - Medium Lilac,2014,501,0
+5004279-1,LEGO® 2-stud Red Storage Brick,2015,501,0
+5004280-1,LEGO 2 stud Blue Storage Brick,2014,501,0
+5004281-1,Angry Kitty Key Light,2014,503,0
+5004282-1,THE LEGO MOVIE Astro Kitty Key Light,2014,503,0
+5004283-1,Bizniz Kitty Key Light,2014,503,0
+5004284-1,THE LEGO® MOVIE™ Queasy Kitty Key Light,2014,503,0
+5004363-1,Brick USB Flash Drive,2015,501,0
+5004388-1,Nexo Knights Intro Pack,2016,605,6
+5004389-1,Battle Station,2016,605,8
+5004404-1,Police Chase,2016,52,36
+5004406-1,First Order General,2016,184,4
+5004408-1,Rebel A-wing Pilot,2016,182,5
+5004409-1,Bionicle 2016 Accessory Pack,2016,324,5
+5004419-1,Classic Knights Minifigure,2016,409,45
+5004420-1,Toy Soldier,2016,227,34
+5004421-1,Musicians Minifigure collection,2016,598,17
+5004468-1,Easter Minifigure,2016,229,4
+5004549-1,LEGO MIXEL COLLECTION 4,2015,584,9
+5004550-1,Speed Champions Collection,2015,601,4
+5004551-1,LEGO® MIXELS™ Glowkies,2015,584,3
+5004552-1,Super Heroes Avengers Collection,2015,487,6
+5004553-1,LEGO MIXELS INFERNITES,2015,584,3
+5004554-1,Ultra Agents Collection,2015,303,2
+5004556-1,LEGO® MIXELS™ Orbitons,2015,584,3
+5004557-1,Pirates Collection,2015,154,2
+5004558-1,Pirates Collection 2,2015,154,2
+5004559-1,Speed Champions Collection 2,2015,601,2
+5004573-1,Athletes Minifigure collection,2016,598,20
+5004574-1,Cops & Robbers Minifigure collection,2016,598,17
+5004590-1,Bat Pod,2015,484,338
+5004600-1,Wonder Woman Minifigure Alarm,2015,501,0
+5004601-1,Wonder Woman Watch,2015,501,0
+5004602-1,Batman Minifigure Link Watch,2015,501,0
+5004603-1,Superman Minifigure Link Watch,2015,501,0
+5004604-1,Classic Minifigure Link Watch,2015,501,0
+5004605-1,Boba Fett Minifigure Watch,2015,501,0
+5004606-1,Darth Maul Watch,2015,501,0
+5004607-1,Darth Vader Watch,2015,501,0
+5004608-1,Luke Skywalker Watch,2015,501,0
+5004609-1,Stormtrooper Watch,2015,501,0
+5004610-1,Yoda Watch,2015,501,0
+5004611-1,Emmet Minifigure Watch,2015,501,0
+5004612-1,Lucy Wyldstyle Minifigure Link Watch,2016,501,0
+5004750-1,Kai Key Light,2015,503,0
+5004751-1,Wonder Woman Key Light,2015,503,0
+5004752-1,Boba Fett Key Light,2015,503,0
+5004796-1,Jay Key Light,2015,503,0
+5004798-1,LEGO Star Wars: The Dark Side,2014,497,4
+5004799-1,LEGO® Architecture: The Visual Guide,2014,497,0
+5004838-1,WeDo 2.0 Add-On Power Pack,2016,521,2
+5004853-1,LEGO Star Wars Character Encyclopedia: Updated and Expanded,2015,497,6
+5004854-1,LEGO® Star Wars in 100 scenes,2015,497,0
+5004868-1,LEGO® Mixels™ Munchos,2015,586,3
+5004869-1,LEGO® Mixels™ Glorp Corp,2015,586,3
+5004870-1,LEGO® Mixels™ Weldos,2015,586,4
+5004928-1,Kiss Kiss Tuxedo Batman,2017,503,1
+5004929-1,Batman Battle Pod,2017,484,27
+5004930-1,Accessory pack,2017,484,36
+5004932,LEGO My Travel Companion,2017,599,36
+5004936-1,Iconic Cave,2017,535,11
+5005-1,Battery Box 4.5V,1987,443,1
+5005156-1,Seasonal Gingerbread Man,2016,598,3
+5006-1,Replacement 2-Piece Battery Motor Housing,1987,443,2
+5007-1,Basic Motor 4.5V,1987,443,1
+5008-1,Brick Separator,1990,443,1
+5009-1,"Building Plate 16 x 32, Yellow",1990,443,1
+50-1,Universal Building Set,1976,469,390
+5010-1,"Building Plate 16 x 32, Green",1990,443,1
+5011-1,9V Basic Motor,1992,443,1
+5012-1,Soccer Player with Goal,2003,462,11
+501-3,JUMBO Pull Toy,1966,369,9
+5013-1,Basketball,2003,459,25
+5014-1,Slammer,2003,461,28
+5015-1,Skateboard Bill,2003,460,17
+5016-1,Basketball Promotional Set,2003,459,17
+5017-1,Hockey Promotional Set,2003,461,36
+5018-1,Gravity Games Promotional Set,2003,460,17
+502-2,Pre-School Medium Set,1968,369,8
+5030-1,Signs for Use with Lighting Bricks 9V,1992,443,16
+503-1,Basic Building Set,1987,467,39
+5031-1,"Propellers, Wheels, Rotor Unit",1987,443,15
+503-2,Pre-School Large Set,1968,369,16
+5032-1,Jack,1987,443,1
+5033-1,1x4 Lighing Brick and 4 Colour Globes,1987,443,5
+5034-1,1x2 Lighting Brick and 4 Colour Globes,1987,443,5
+5035-1,"Town Siren, 2 x 2",1987,443,1
+5036-1,"Space Siren, 2 x 2",1987,443,1
+5037-1,Current Carrying Plates,1988,443,9
+5038-1,9V Battery Box,1988,443,1
+5039-1,Monorail Stop / Reverse Switch,1987,443,3
+5040-1,Monorail 9V Motor,1988,443,1
+504-1,Basic Building Set,1985,467,41
+5041-1,Wire for 9V (9cm),1988,453,1
+5042-1,"Space Light and Radar Plates, Disks, Cones",1991,452,50
+5043-1,"Mini Antennas, Control Sticks and Antennas",1991,443,26
+5044-1,"Plateau, Approach for Harbour",1991,443,3
+5045-1,"Magnets, Magnet Holders",1991,443,12
+5046-1,"Hub, Tire and Wheel Suspension",1991,443,10
+5047-1,"Hinges, Couplings, Turntables",1993,443,30
+5048-1,Town Accessories,1993,454,36
+5049-1,Transparent Windows and Bricks,1993,443,8
+5050-1,Plane Accessories,1993,443,27
+5051-1,"Windscreens, Seats, Steering Wheel",1993,443,14
+5052-1,"Antennas, Control Sticks",1993,443,39
+5053-1,"Small Plates with Tool Holders, Disks, Cones",1993,443,76
+5054-1,Decorated Elements,1993,443,28
+5055-1,Magnets and Magnet Holders,1993,443,12
+5056-1,Space Elements,1993,452,37
+5057-1,Space Accessories,1993,452,27
+5058-1,Pirate Accessories,1993,449,32
+5059-1,Castle Equipment,1993,447,34
+5060-1,Cannons,1993,443,16
+5061-1,"Connector Leads, 75cm and 25cm",1987,456,6
+5062-1,Shunting Trip Posts and Signal,1987,456,4
+5063-1,Power Supply Rail,1987,456,1
+5064-1,Locomotive Wheels,1987,456,8
+5065-1,3m Wiring and Two-Way Plug,1987,443,11
+5066-1,Magnetic Train Coupler,1987,456,6
+5067-1,"Rubber Wheel Rims, Grey",1987,456,8
+5068-1,Motor Frame and Coupling,1987,456,5
+5069-1,12V Lighting Bricks,1987,443,2
+5070-1,"Wheel Sets, Black",1987,456,2
+507-1,Basic Building Set,1987,467,60
+5071-1,"Wheel Sets, Large, Red",1987,456,2
+5072-1,"Wagonplate, 6 x 28 Studs",1987,456,1
+5073-1,Light Transmitting Elements for Train Sets,1987,456,7
+5074-1,"Bogie Plates, Black",1987,456,2
+5075-1,"Battery Tender, Red",1987,456,2
+5076-1,Plates 2 x 8,1989,443,8
+5077-1,Sliding Gates and Rails,1987,443,6
+5078-1,Crane Accessories,1993,443,15
+5079-1,Change-Over Unit,1989,456,1
+50799-1,Knights' Kingdom Adventure Box,2005,198,3
+5080-1,Remote Control for Switch,1989,456,1
+508-1,Basic Building Set,1985,467,66
+5081-1,Remote Control for Signal,1989,456,1
+5082-1,Flash Light Unit,1989,456,1
+5083-1,Remote Control for Crossing,1989,456,1
+5084-1,12V Light Brick,1989,443,1
+5085-1,Power Supply Rail with Socket,1989,456,1
+5086-1,12V Motor (old),1993,443,1
+509-1,38 Slimbricks Assorted Sizes,1965,371,228
+5099-1,Pneumatic Valves,1997,453,1
+5100-1,TECHNIC Battery Box,1987,453,1
+510-1,Basic Building Set,1985,467,102
+5101-1,4.5v TECHNIC Motor,1987,453,1
+510-2,Tiles,1965,371,156
+5102-1,"Pneumatic Tube, 60 cm and 100 cm",1987,453,2
+5103-1,"Pneumatic Spring Cylinder, 48 mm",1987,453,1
+5104-1,"Pneumatic Cylinder, 48 mm",1987,453,1
+5105-1,"Pneumatic Cylinder, 64 mm",1987,453,1
+5106-1,Two-Way Valve and Non-Return Valve,1987,453,2
+5107-1,Pneumatic Pump 2 Cylinder,1991,453,1
+5108-1,Pneumatic Piston 2 Cylinder,1989,453,1
+5109-1,Pneumatic Tubes and Pieces,1989,453,6
+5110-1,Pneumatic Value Pack,1997,453,0
+5110-2,"Cross Axles, Nuts",1990,453,26
+5111-1,"9V Motor Wire, 128cm",1990,453,1
+5112-1,"Lifting Grabs, Crane Hook",1987,453,3
+5113-1,TECHNIC Airscrew,1987,453,1
+5114-1,Extra 9 Volt Motor,1991,453,1
+5115-1,9V Battery Box,1992,453,1
+5116-1,Pneumatic Cylinder 1.25,1997,453,1
+5117-1,Compressor Pump,1997,453,7
+5118-1,TECHNIC Cables,1995,453,35
+5119-1,Micro Motor,1996,453,4
+5120-1,Polarity Switch,1993,453,2
+5121-1,Decorated Elements,1994,443,30
+5122-1,Pirate Accessories,1994,449,29
+5124-1,Wheels and Bearings,1994,443,28
+5125-1,Spaceport Accessories,1995,454,35
+5126-1,Crane and Digger Accessories,1995,443,18
+5127-1,Antennas and Control Sticks,1995,443,37
+5128-1,"Transparent Plates, Bricks, Toolholders",1996,443,80
+5129-1,Space Accessories,1996,452,22
+5130-1,"Windows, Seats, Steering Wheels",1996,443,14
+5131-1,"Hinges, Couplings, Turntables",1996,443,30
+5132-1,"Wheels, Bearings and Suspension",1995,443,32
+5133-1,Town Accessories,1996,454,47
+5134-1,Cannons and Wheels,1995,443,28
+5135-1,Castle Accessories,1995,447,34
+5136-1,Belville Accessories,1995,446,10
+5137-1,Town Accessories,1994,454,44
+5138-1,Castle Accessories,1994,447,39
+5139-1,Cannons with Wheels,1994,443,28
+5140-1,"Bricks, Red",1987,443,62
+5141-1,"Bricks, Blue",1987,443,62
+5142-1,"Bricks, White",1987,443,62
+5143-1,"Bricks, Yellow",1987,443,62
+5144-1,"Bricks, Black",1987,443,62
+5145-1,"Bricks, Gray",1987,443,62
+5146-1,"Plates, Blue",1987,443,42
+5147-1,"Plates, Red",1987,443,42
+5148-1,Wheels,1987,443,40
+5149-1,Doors and Windows,1987,443,38
+5150-1,Pirate Elements,1990,449,35
+515-1,Basic Building Set,1990,467,115
+5151-1,"Roof Bricks, Red, 45 Degrees",1987,443,59
+5152-1,"Roof Bricks, Red, 25 Degrees",1987,443,60
+5153-1,Plane Accessories,1991,443,23
+5154-1,Decorated Elements,1991,443,26
+5155-1,Space Jets and Wings,1991,443,19
+5156-1,Transparent Bricks,1991,443,17
+5157-1,Town and Space Equipment,1991,443,32
+5158-1,"T-Junction, Circle Plates",1990,454,2
+5159-1,Straight Runways,1990,454,2
+5160-1,Aquazone Accessories,1995,445,21
+5161-1,Inverted Slope Bricks,1987,443,16
+5162-1,Fences and Gates,1987,443,10
+5163-1,"Turntables, 4 x 4 and 2 x 2",1987,443,8
+5164-1,"Hinges, Turntables and Couplings",1991,443,20
+5165-1,"Hinges, Couplings and Tilting Bearings",1991,443,32
+5166-1,"Lampholders, Plates with Holder",1991,443,18
+5167-1,"Hinges, Tilt Bearings",1987,443,16
+5168-1,Digger Bucket Assembly,1987,443,4
+5169-1,Crane Set Assembly,1987,443,7
+517-1,Basic Building Set,1987,467,123
+5171-1,Decorated Elements,1987,443,28
+5172-1,Rocket Stages,1987,443,30
+5173-1,Space Jet & Wings,1987,452,19
+5174-1,Wheels and Bearings,1987,443,28
+5175-1,Space Elements,1987,452,26
+5176-1,Transparent Bricks,1987,443,19
+5177-1,Town and Space Accessories,1987,443,35
+5178-1,Plane Accessories,1987,443,23
+5179-1,Hinges and Couplings,1987,443,26
+5180-1,"T-Junction, Circle (Airport)",1987,454,2
+518-1,2 x 4 Plates (cardboard box version),1962,371,192
+518-10,2 x 4 Plates - Blue (architectural hobby und modelbau version),1962,252,26
+518-11,2 x 4 Plates - Light Gray (architectural hobby und modelbau version),1962,252,26
+5181-1,"Runways, Straight (Airport)",1987,454,2
+518-12,2 x 4 Plates - Red (architectural hobby und modelbau version),1962,252,26
+518-13,2 x 4 Plates - Trans-Clear (architectural hobby und modelbau version),1962,252,26
+518-14,2 x 4 Plates - White (architectural hobby und modelbau version),1962,252,26
+518-15,2 x 4 Plates - Yellow (architectural hobby und modelbau version),1962,252,26
+5182-1,Hinges and Couplings,1989,443,19
+5183-1,Hinges and Couplings,1989,443,32
+5184-1,Castle Equipment,1989,447,38
+5185-1,Dustbins with Lids,1989,443,8
+5186-1,Fence,1989,443,10
+5187-1,Bricks with Groove and Garage Panels,1989,443,26
+5188-1,"Seats, Steering Wheels and Windscreens",1989,443,10
+518-9,2 x 4 Plates - Black (architectural hobby und modelbau version),1962,252,26
+5189-1,Ladder (Black and Grey),1989,443,16
+5190-1,Seats and Windscreens,1989,443,7
+519-1,2 x 3 Plates (cardboard box version),1962,371,240
+519-10,2 x 3 Plates - Blue (architectural hobby und modelbau version),1962,252,32
+519-11,2 x 3 Plates - Light Gray (architectural hobby und modelbau version),1962,252,32
+5191-1,Balloon Tires,1989,443,4
+519-12,2 x 3 Plates - Red (architectural hobby und modelbau version),1962,252,32
+519-13,2 x 3 Plates - Trans-Clear (architectural hobby und modelbau version),1962,252,32
+519-14,2 x 3 Plates - White (architectural hobby und modelbau version),1962,252,32
+519-15,2 x 3 Plates - Yellow (architectural hobby und modelbau version),1962,252,32
+5192-1,Cypress Trees,1989,443,2
+5193-1,Sloping Frames,1989,443,6
+5194-1,"Hinge Plate, Fork-Lift",1989,443,3
+5195-1,Assorted Arches,1989,443,6
+5196-1,"Crane, Crane Hooks and Ladders",1989,443,5
+5197-1,"Lampholders, Plate with Holders",1989,443,24
+5198-1,"Small Plates, Disks and Cones",1989,443,56
+519-9,2 x 3 Plates - Black (architectural hobby und modelbau version),1962,252,32
+5199-1,Mini Antennas and Stick,1989,443,32
+5200-1,Signal Masts and Feet,1987,456,8
+520-1,2 x 2 Plates - Black (cardboard box version),1962,371,40
+520-10,2 x 2 Plates - Blue (architectural hobby und modelbau version),1962,252,42
+520-11,2 x 2 Plates - Light Gray (architectural hobby und modelbau version),1962,252,42
+5201-1,Angle Pieces,1997,453,20
+520-12,2 x 2 Plates - Red (architectural hobby und modelbau version),1962,252,42
+520-13,2 x 2 Plates - Trans-Clear (architectural hobby und modelbau version),1962,252,42
+520-14,2 x 2 Plates - White (architectural hobby und modelbau version),1962,252,42
+520-15,2 x 2 Plates - Yellow (architectural hobby und modelbau version),1962,252,42
+520-16,Basic Building Set,1985,467,173
+520-2,2 x 2 Plates - Blue (cardboard box version),1962,371,40
+5202-1,Angle Beams,1997,453,8
+520-3,2 x 2 Plates - Green (cardboard box version),1962,371,40
+5203-1,Silver Wheels,1999,453,4
+520-4,2 x 2 Plates - Light Gray (cardboard box version),1963,371,40
+5204-1,Cyber Slam Accessories,1999,453,11
+520-5,2 x 2 Plates - Red (cardboard box version),1963,371,40
+5205-1,Pulleys and Rubber Belts,1999,453,14
+520-6,2 x 2 Plates - Trans-Clear (cardboard box version),1963,371,40
+5206-1,Speed Computer,2000,19,19
+520-7,2 x 2 Plates - White (cardboard box version),1963,371,40
+520-8,2 x 2 Plates - Yellow (cardboard box version),1962,371,40
+520-9,2 x 2 Plates - Black (architectural hobby und modelbau version),1962,252,42
+5210-1,Elastic Bands,1997,453,1
+521-1,1 x 1 and 1 x 2 Plates (cardboard box version),1962,371,640
+521-10,1 x 1 and 1 x 2 Plates - Blue (architectural hobby und modelbau version),1962,252,82
+521-11,1 x 1 and 1 x 2 Plates - Light Gray (architectural hobby und modelbau version),1962,252,82
+521-12,1 x 1 and 1 x 2 Plates - Red (architectural hobby und modelbau version),1962,252,82
+521-13,1 x 1 and 1 x 2 Plates - Trans-Clear (architectural hobby und modelbau version),1962,252,82
+521-14,1 x 1 and 1 x 2 Plates - White (architectural hobby und modelbau version),1962,252,82
+521-15,1 x 1 and 1 x 2 Plates - Yellow (architectural hobby und modelbau version),1962,252,82
+5215-1,"Bricks Assorted, Green",1999,443,62
+5216-1,"Roof Bricks Assorted, Black",1999,443,57
+5217-1,Black Plates Assorted,1999,443,42
+5218-1,Pneumatic Pack,2000,19,152
+521-9,1 x 1 and 1 x 2 Plates - Black (architectural hobby und modelbau version),1962,252,82
+5219-1,Wheel Pack,2000,19,28
+5220-1,Styling Pack,2000,19,220
+522-1,Police Station,1977,504,26
+5221-1,Motor Pack,2000,19,55
+5222-1,Chassis Pack,2000,19,137
+5223-1,Wind-up Motor,2001,19,41
+5225-1,9v Motor with gear reduction,1998,453,1
+5226-1,Cross Axles,1998,453,18
+5227-1,Fiber Optic Cables,2000,453,8
+5228-1,Small Beams and Plates,1997,453,26
+5229-1,Gears & Differentials,1997,453,23
+5231-1,TECHNIC Beams and Plates [Yellow],1987,453,20
+5232-1,TECHNIC Beams and Plates [Blue],1987,453,18
+5233-1,Bedroom,1980,405,163
+5233-2,Small Beams and Plates with holes,1993,453,26
+5234-1,TECHNIC Beams and Plates {black},1987,453,20
+5235-1,Large Beams with Holes,1993,453,10
+5235-2,Schoolroom,1982,405,232
+5236-1,TECHNIC Beams [Blue],1987,453,8
+5237-1,TECHNIC Beams {black},1987,453,8
+5238-1,TECHNIC Beams {red},1987,453,8
+5239-1,Cross Axles,1987,453,34
+5240-1,TECHNIC Wheels with 43 mm + 24 mm tyres,1987,453,12
+5241-1,Gear Wheel Assortment,1987,453,20
+5242-1,Differential Gear Housing,1987,453,19
+5243-1,TECHNIC Chainlinks,1987,453,70
+5244-1,TECHNIC Bulldozer Chainlinks,1987,453,54
+5245-1,"Differential Gears / Universal Joint, Differential Housing and Wheels",1994,453,6
+5246-1,X-Large Tires / 81 mm Tyres and Hubs,1987,453,4
+5247-1,Toggle Joints,1987,453,66
+5248-1,62 mm Tires and Hubs / 62 mm Tyres and Hubs,1987,453,4
+5249-1,TECHNIC Beams and Plates [Red],1987,453,20
+5250-1,TECHNIC Beams {yellow},1987,453,8
+525-1,Basic Building Set,1990,467,185
+5251-1,Shock Absorbers,1989,453,4
+5252-1,Large Shock Absorbers,1993,453,2
+5253-1,"Cross Axles (Sizes 2, 3, 4, 6)",1987,453,12
+5254-1,"Cross Axles (Sizes 8, 10, 12)",1987,453,9
+5255-1,Connector Pegs / Connectorpegs,1987,453,30
+5256-1,Suspension Pack,1987,453,12
+5257-1,"Connector Pegs, Toggle Joints, and Wheels",1987,453,25
+5258-1,"Crown Wheels, Gear Racks, Point Wheels, Worm Gears",1987,453,10
+5259-1,"Universal Joint, Rubber Bands, and Wheels",1987,453,12
+5260-1,Connecting Rods and Stop Bushes,1987,453,32
+5261-1,"Plates, Gear Racks, etc.",1987,453,14
+5262-1,Gear Wheels,1987,453,9
+5263-1,"Universal Joint, Differential Housing, and Point Wheels",1987,453,6
+5264-1,Rotors and Bush/Cross Axles,1987,453,24
+5265-1,Large Tires and Wheels / TECHNIC Wheels with 43 mm + 24 mm Tyres,1989,453,16
+5266-1,"Gear Wheel Assortment / Gear Racks, Gear Wheels and Pulley Wheels",1989,453,22
+5267-1,Cross Axles & Extensions,1993,453,16
+5268-1,Small Tires,1995,453,8
+5269-1,"Liftarms & Triangles / Liftarms, Triangles etc.",1995,453,12
+5270-1,43 mm Tires and Hubs / 43 mm Tyres and Hubs,1987,453,4
+527-1,Basic Building Set,1987,467,196
+5271-1,White Hubs & Tires / 49.6 mm Tyres & Hubs,1991,453,4
+5272-1,Cylinder Motor,1991,453,9
+5273-1,Tires,1992,453,4
+5274-1,"8 Tires / Tyres (4x24, 4x 30 mm) w/hubs",1992,453,16
+5275-1,Toggle Joints and Connectors,1993,453,48
+5276-1,"Gear Wheels Etc. / Gear Wheels, Worm Gears, Universal Joints and Gear Racks",1993,453,23
+5277-1,Pulleys & V-Belts,1993,453,12
+5278-1,TECHNIC Chainlinks,1994,453,35
+5279-1,"Plates, Gear Racks",1993,453,16
+5280-1,"Liftarms & Triangles / Liftarms, Triangles",1995,453,10
+5281-1,Balloon Tires Medium,1994,453,4
+5282-1,Balloon Tires Large,1994,453,4
+5283-1,Balloon Tires Small,1994,453,4
+5284-1,Loading Grabs,1996,453,3
+5285-1,2 Large Shock Absorbers / Large Shock Absorbers,1994,453,2
+5286-1,Toggle Joints & Connectors,1994,453,64
+5287-1,"Plates & Gear Racks / Plates, Gear Racks etc.",1995,453,18
+5288-1,Worm Gear Boxes,1995,453,12
+5289-1,Toggle Joints & Connectors,1996,453,64
+5290-1,Plates & Gear Racks,1996,453,16
+5291-1,Liftarms & Triangles,1996,453,12
+5292-1,LEGO TECHNIC Storage Case,1996,453,1
+5293-1,9V Battery Box,1996,453,1
+5294-1,"Toggle Joints & Connectors / Pegs, Bushings, & Couplers",1998,453,60
+5295-1,Racks & Pivots,1998,453,12
+5-3,Basic Set,1973,469,330
+5300-1,Electric Train Motor,1991,456,3
+530-1,Basic Building Set,1985,467,273
+5301-1,Wagon Plate 6 x 28,1992,456,1
+5302-1,"Bogieplates, Black",1992,456,2
+5303-1,"Buffers, Magnets & Couplers",1992,456,6
+5304-1,Wheelsets,1992,456,2
+5305-1,Connection Wire,1992,456,1
+5306-1,Plates 2x2 with Wire 9 V 26 cm,1992,453,1
+5307-1,Head Light Brick,1992,456,3
+5308-1,Head Light Brick,1994,456,3
+5309-1,"Wagon Plate, Red (6 x 28)",1996,456,1
+5310-1,Lighting Brick,1996,456,4
+5311-1,9V Wires (25.6 cm),1996,1,1
+5313-1,Space Port Accessories,1999,454,16
+5314-1,RES-Q Equipment (Tools),1999,454,31
+5315-1,Connectors,1999,443,60
+5316-1,Transparent Elements,1999,443,60
+5317-1,Wild West Accessories,1999,457,48
+5318-1,Head Wear,1999,443,26
+5319-1,Decorated Elements,1999,454,19
+5320-1,"Plates, Small",1999,443,66
+5321-1,Large Plates,1999,443,10
+533-1,Basic Set,1984,469,93
+535-1,Basic Building Set,1990,467,349
+5369-1,Creator Tub,2005,37,700
+5370-1,Large Make and Create Bucket with Special LEGO Bonus Bricks,2005,37,2
+5370a-1,Large Make and Create Bucket with Special LEGO Bonus Bricks (Bucket and its contents only),2005,37,500
+5370b-1,Large Make and Create Bucket with Special LEGO Bonus Bricks (Bonus box and its contents only),2005,48,201
+537-1,Basic Building Set,1987,467,271
+5372-1,Skeleton Chariot,2008,193,25
+5373-1,Knight & Catapult,2008,193,24
+5378-1,Hogwarts Castle (3rd edition),2007,249,904
+5380-1,Duplo Large Brick Box,2007,504,71
+5380-2,Duplo Large Brick Box - Green Plate,2008,505,71
+5381-1,Adventurer's Accessories,1998,444,27
+5382-1,Aquazone Accessories,1998,445,19
+5383-1,Castle Accessories,1998,447,36
+5384-1,Space Accessories,1998,452,19
+53850001-1,Crocodile,2015,410,30
+53850002-1,Car,2015,410,40
+53850003-1,Giraffes,2015,410,36
+53850004-1,Biplane,2015,410,24
+53850005-1,Panda,2015,410,35
+53850006-1,Jeep,2015,410,29
+53850007-1,Elephant,2016,410,27
+53850008-1,Jet,2016,410,18
+53850009-1,Aircraft,2016,410,41
+53850012-1,Truck,2016,410,66
+53850013-1,Turtle,2016,410,50
+53850015-1,Penguin,2016,410,39
+53850016-1,Animal - Beaver,2017,410,52
+53850017-1,Digger,2017,410,56
+5386-1,Antennas and Control Sticks,1998,443,38
+5387-1,Belville Beach Accessories,1998,446,11
+5388-1,"Hinges, Couplings and Turntables",1998,443,29
+5389-1,Divers' Accessories,1998,454,37
+5390-1,Crane and Digger Accessories,1998,454,14
+5391-1,9V Battery Box,1997,443,1
+5392-1,Wild West Accessories,1997,457,37
+5393-1,Headgear (Hats and Hair),1997,454,31
+5394-1,Horses and Saddles,1997,443,12
+5395-1,Belville Hospital Accessories,1996,446,4
+5396-1,Transparent Windows and Bricks,1996,443,8
+5397-1,Magnets and Magnet Holders,1996,443,12
+5398-1,Decorated Elements,1996,443,43
+5399-1,Fairy Tale Accessories,1999,446,25
+5-4,Large House Set,1971,433,307
+5400-1,Bathroom Accessories,1997,451,13
+540-1,Basic Building Set,1985,467,619
+5401-1,Kitchen Accessories,1997,451,14
+540-2,Police Units,1979,80,44
+5402-1,Floor Plate 1/2,1997,451,1
+540-3,Swiss Villa,1973,413,150
+5403-1,Floor Plate 1/1,1997,451,1
+5404-1,House,1997,451,28
+5405-1,Floor Plate,1998,451,1
+54-1,UFO Action Pack,1997,144,3
+5410-1,Emma,2011,451,9
+5413-1,Beauty Set,1999,451,25
+5414-1,Kitchen Set,1999,451,24
+5415-1,Garden Set,1999,451,18
+5416-1,Brick Box,2007,504,34
+5416-2,Brick Box,2009,505,33
+5417-1,Duplo Deluxe Brick Box,2007,505,95
+542-1,Street Crew,1979,72,44
+5421-1,Andrea,1997,451,1
+544-1,Basic Set,1981,469,147
+545-1,Build-N-Store Chest,1990,467,423
+545-2,Conveyor Station,1973,416,170
+547-1,Basic Building Set,1987,467,624
+5475-1,Girls Fantasy Bucket,2006,37,191
+5477-1,LEGO® Classic House Building,2006,37,233
+5482-1,Ultimate LEGO House Building Set,2006,37,674
+5483-1,"Ready, Steady Build, and Race",2006,37,692
+5487-1,Fun with LEGO Bricks,2009,37,700
+5489-1,Ultimate LEGO Vehicle Building Set,2009,37,676
+5490-1,XXL 250 Canister,2006,505,250
+5491-1,XXL 2000,2006,37,2000
+5493-1,Emergency Rescue Box,2006,37,705
+55001-1,LEGO Universe Rocket,2010,560,56
+550-1,Basic Building Set,1985,467,578
+550-2,Windmill,1976,413,211
+5506-1,LEGO Duplo Building Set-71 pieces,2010,505,71
+5507-1,Duplo Deluxe Brick Box,2010,504,102
+5508-1,Deluxe Brick Box,2010,37,704
+5509-1,Duplo Basic Bricks,2010,505,45
+5510-1,Off-Road 4x4,1986,278,284
+551-1,T Road Plates,1979,84,2
+5512-1,LEGO XXL Box,2010,22,1600
+5515-1,Fun Building with LEGO Bricks,2007,37,240
+5517-1,XXL 1800,2007,37,1800
+5519-1,Creator Bucket,2007,37,485
+552-1,Curved Road Plates,1979,84,2
+5521-1,Sea Jet,1993,278,400
+5522-1,LEGO Golden Anniversary Set,2008,37,700
+5524-1,Airport,2005,397,606
+5525-1,Amusement Park,2005,397,1339
+5526-1,Skyline,2005,397,2792
+5528-1,Red Cannister,2007,37,700
+5529-1,LEGO Basic Bricks,2010,37,326
+5529-2,"LEGO Basic Bricks, Limited Edition",2010,37,326
+553-1,Straight Road Plates,1979,84,2
+5531-1,Police Motorcycle,2005,61,18
+5532-1,Fire Car,2005,58,32
+5533-1,Red Fury,1999,278,394
+5537-1,Limited Edition [Blue Tub],2007,37,683
+5538-1,Creative Bucket,2009,505,75
+5539-1,Creative Bucket,2009,37,480
+5540-1,Formula 1 Racer,1986,278,446
+554-1,Exxon Fuel Tanker,1979,76,75
+5541-1,Blue Fury,1995,278,420
+5542-1,Black Thunder,1998,278,482
+5549-1,LEGO Building Fun,2010,37,651
+5550-1,Custom Rally Van,1991,278,524
+555-1,Hospital,1976,420,229
+555-2,Basic Set,1981,469,206
+5560-1,Large Pink Brick Box,2009,37,398
+556-1,Fire Emergency Van,1979,74,66
+5561-1,Big Foot 4x4,1997,278,760
+5563-1,Racing Truck,1999,278,788
+557-1,Basic Building Set,1987,467,721
+5571-1,Giant Truck,1996,278,1746
+5573-1,LEGO Build & Play [Blue Tub],2008,37,646
+5573-2,LEGO Build & Play (Red Tub),2009,37,644
+5574-1,Lego Box,2008,48,280
+5576-1,Basic Bricks -- Medium,2008,48,378
+5578-1,Basic Bricks -- Large,2008,48,500
+5580-1,Highway Rig,1986,278,667
+558-1,Road Crane,1979,72,55
+5581-1,Magic Flash,1993,278,786
+5582-1,Ultimate Town Building Set,2008,37,697
+5584-1,Fun with Wheels,2008,37,648
+5585-1,Pink Brick Box,2008,37,216
+5587-1,Basic Bricks with Fun Figures,2009,48,390
+5589-1,Giant Box,2009,37,1600
+5590-1,Whirl and Wheel Super Truck,1990,278,1063
+5591-1,Mach II Red Bird Rig,1994,278,1172
+5595-1,DUPLO Town Airport,2009,504,57
+5599-1,Radio Control Racer,1998,117,294
+5600-1,Radio Control Racer,1998,117,297
+560-1,Town House with Garden,1979,69,244
+560-2,Police Heliport,1973,421,170
+5606-1,My First Train,2008,504,10
+5609-1,Deluxe Train Set,2008,504,118
+5610-1,Builder,2008,56,23
+5611-1,Public Works,2008,63,31
+5612-1,Police Officer,2008,61,21
+5613-1,Firefighter,2008,58,25
+561407-1,Charlie The Puppy,2014,494,13
+561408-1,Summer Beach,2014,494,27
+561409-1,Cookie Kitchen,2014,494,28
+5614-1,The Good Wizard,2008,193,16
+561410-1,Halloween Toy Shop,2014,494,29
+561411-1,Cute Kitten,2014,496,24
+561412-1,Christmas Tree,2014,494,35
+561501-1,Penguin Ice Slide,2015,494,10
+561502-1,Dressing Table,2015,494,22
+561503-1,Bunny And Garden,2015,494,18
+561504-1,Party And Cake,2015,494,23
+561505-1,Picnic Set,2015,494,21
+561506-1,Sweet Garden And Kitchen,2015,494,23
+561507-1,Garden And Wheelbarrow,2015,494,20
+561508-1,Turtle’s island,2015,494,19
+561509-1,Guitar And Stage,2015,494,21
+5615-1,The Knight,2008,193,21
+561510-1,Trick Or Treat,2015,494,19
+561511-1,Hedgehog In The Woods,2015,494,20
+561512-1,Winter Fun,2015,494,24
+5616-1,Mini Robot,2008,137,23
+5617-1,Alien Jet,2008,137,21
+5618-1,Troll Warrior,2008,193,19
+5619-1,Crystal Hawk,2008,137,26
+5620-1,Street Cleaner,2008,63,22
+5621-1,Coast Guard Kayak,2008,55,21
+5622-1,Duplo Basic Bricks - Large,2010,505,60
+5623-1,Basic Bricks - Large,2010,48,450
+5625-1,Police 4 x 4,2008,61,28
+5626-1,Coast Guard Bike,2008,55,12
+5627-1,Mini Bulldozer,2008,56,23
+5638-1,Postman,2009,504,9
+5639-1,Family House,2009,504,71
+5642-1,Tipper Truck,2009,56,23
+5643-1,Little Piggy,2010,504,4
+5644-1,Chicken Coop,2010,504,12
+5645-1,Farm Bike,2010,504,9
+5646-1,Farm Nursery,2010,504,9
+5649-1,Big Farm,2010,504,68
+565-1,Moon Landing,1976,422,366
+565-2,Build-N-Store Chest,1990,467,695
+5657-1,Jessie's Round-Up,2010,504,18
+5658-1,Pizza Planet Truck,2010,504,13
+5659-1,The Great Train Chase,2010,504,39
+566-1,Basic Set,1981,469,285
+5679-1,Police Bike,2011,504,8
+5680-1,Police Truck,2011,504,14
+5681-1,Police Station,2011,504,60
+5682-1,Fire Truck,2011,504,20
+5685-1,Vet,2011,504,4
+5700-1,LEGO Creator,1998,501,0
+570-1,Fire House,1973,417,236
+5701-1,LEGO Loco,1998,501,0
+5706-1,LEGOLAND,1999,501,0
+5714-1,LEGO Alpha Team,2000,501,0
+5748-1,Duplo Creative Building Kit,2011,505,85
+5749-1,Creative Building Kit,2011,37,650
+575-1,Coast Guard Station,1978,71,301
+575-2,Coast Guard Station (Canadian Edition),1978,71,284
+5761-1,Mini Digger,2011,23,57
+5762-1,Mini Plane,2011,23,52
+5763-1,Dune Hopper,2011,23,137
+5764-1,Rescue Robot,2011,23,150
+5765-1,Transport Truck,2011,22,276
+5766-1,Log Cabin,2011,38,355
+5767-1,Cool Cruiser,2011,22,621
+5770-1,Lighthouse Island,2011,22,518
+577-1,Basic Set,1981,469,391
+5771-1,Hillside House,2011,22,710
+5785-1,Soccer Mania,2002,501,0
+5793-1,Nurse's Car,2011,504,11
+5795-1,Duplo Big City Hospital,2011,504,106
+580-1,Brick Yard,1975,416,216
+5801-1,Millimy the Fairy,1999,319,12
+5802-1,Princess Rosaline,1999,319,6
+5803-1,Iris,1999,319,6
+5804-1,Witch's Cottage,1999,319,42
+5805-1,Princess Rosaline's Room,1999,319,67
+5807-1,The Royal Stable,1999,319,56
+5808-1,The Enchanted Palace,1999,319,216
+5810-1,Vanity Fun,1995,322,22
+5811-1,Prince Justin,1999,319,5
+5812-1,King,1999,319,8
+5813-1,Lightning McQueen,2010,504,11
+5814-1,Mater's Yard,2010,506,16
+5817-1,Agent Mater,2011,504,11
+5820-1,Garden Fun,1996,322,33
+5821-1,Pamela's Picnic Time,1997,323,8
+5822-1,Jennifer and Foal,1997,323,5
+5823-1,The Good Fairy's Bedroom,2000,319,33
+5824-1,The Good Fairy's House,2000,319,66
+5825-1,Stella and the Fairy,2000,319,50
+5826-1,The Queen's Room,2000,319,79
+5827-1,Royal Coach,2000,319,85
+5830-1,Fun-Day Sundaes,1995,323,33
+5831-1,Adventurous Puppies,2001,319,16
+5832-1,Vanilla's Magic Tea Party,2001,319,11
+5833-1,Rosita's Wonderful Stable,2001,319,38
+5834-1,The Enchanted Garden,2001,319,98
+5835-1,Dance Studio,1996,322,37
+5836-1,Beautiful Baby Princess,2002,319,23
+5837-1,Flora's Bubbling Bath,2002,319,27
+5838-1,The Wicked Madam Frost,2002,319,36
+5840-1,Garden Playmates,1995,322,92
+5841-1,Beach Fun,1998,323,42
+5842-1,Vanilla's Frosty Sleighride,2002,319,33
+5843-1,Queen Rose and the Little Prince Charming,2002,319,68
+5844-1,Dolphin Windsurfer,1998,323,17
+5845-1,Dolphin Show,1998,323,51
+5846-1,Desert Island,1998,323,94
+5847-1,Surfers' Paradise,1998,323,135
+5848-1,Family Yacht / Luxury Cruiser,1998,323,226
+5850-1,The Royal Crystal Palace,2002,319,153
+585-1,Police Headquarters,1976,421,300
+5853-1,Lucinda and Cressida,1997,323,5
+5854-1,Pony Trekking,1997,323,53
+5855-1,Riding Stables,1997,323,159
+5856-1,Paprika and the Mischievous Monkey,2003,320,51
+5857-1,Safran's Amazing Bazaar,2003,320,96
+5858-1,"The Golden Palace, Blue Box",2003,320,174
+5858-2,"The Golden Palace, Purple/Silver Box",2004,320,174
+5859-1,Little Garden Fairy,2003,319,49
+5860-1,Love 'N' Lullabies,1994,322,50
+5861-1,Fairy Island,2003,319,105
+5862-1,Flower Fairy Party [Blue Box],2003,319,151
+5862-2,Flower Fairy Party [Purple/Silver Box],2004,319,153
+5864-1,Mini Helicopter,2010,24,52
+5865-1,Mini Dumper,2010,22,60
+5866-1,Rotor Rescue,2010,38,149
+5867-1,Super Speedster,2010,38,278
+5868-1,Ferocious Creatures,2010,38,416
+5870-1,Pretty Playland,1994,322,101
+5871-1,Riding Stables,2002,323,159
+5872-1,Golden Land Promo (Polybag),2003,320,32
+5873-1,Fairyland Promo (Polybag),2003,319,19
+5874-1,Nursery,1997,321,62
+5875-1,Hospital Ward,1996,321,108
+5876-1,Hospital Ward,1996,321,105
+5877-1,Wedding Coach,2004,319,73
+5880-1,Prize Pony Stables,1994,323,124
+588-1,Police Headquarters,1979,80,376
+5882-1,Ambush Attack,2012,481,80
+5883-1,Tower Takedown,2012,481,136
+5884-1,Raptor Chase,2012,481,258
+5885-1,Triceratops Trapper,2012,481,270
+5886-1,T-Rex Hunter,2012,481,474
+5887-1,Dino Defense HQ,2012,481,785
+5888-1,Ocean Interceptor,2012,481,221
+5890-1,Pretty Wishes Playhouse,1994,322,229
+5891-1,Apple Tree House,2010,38,539
+5892-1,Sonic Boom,2010,38,539
+5893-1,Offroad Power,2010,38,1061
+5895-1,Villa Belville,1996,322,328
+5898-1,Car Building Set,2010,37,135
+5899-1,House Building Set,2010,37,126
+5900-1,Adventurer - Johnny Thunder,1998,297,13
+590-1,Engine Co. No. 9,1978,74,337
+5901-1,River Raft,1999,299,19
+5902-1,River Raft,1999,299,19
+5903-1,Johnny Thunder and Baby T,2000,298,23
+5904-1,Microcopter,2000,298,28
+5905-1,Hidden Treasure,1999,299,33
+5906-1,Ruler of the Jungle,1999,299,23
+5909-1,Treasure Raiders set with Mummy Storage Container,1998,297,196
+5911-1,Johnny Thunder's Plane,2000,298,22
+5912-1,Hydrofoil,2000,298,19
+5913-1,Dr. Lightning's Car,2000,298,21
+5914-1,Baby T-Rex Trap,2000,298,21
+5918-1,Scorpion Tracker,1998,297,35
+5919-1,The Valley of the Kings,1998,297,164
+5920-1,Island Racer,2000,298,50
+5921-1,Research Glider,2000,298,57
+5923-1,Western Picture Frame,2002,477,144
+5924-1,Castle Picture Frame,2002,408,116
+5925-1,Pontoon Plane,1999,299,72
+5928-1,Bi-Wing Baron,1998,297,70
+5929-1,Knight and Castle Building Set,2011,25,145
+5930-1,Road Construction Building Set,2011,26,121
+5932-1,My First LEGO Set,2011,22,227
+5933-1,Airport Building Set,2011,24,309
+5934-1,Dino Explorer,2000,298,90
+5935-1,Island Hopper,2000,298,205
+5936-1,Spider's Secret,1999,299,129
+5938-1,Oasis Ambush,1998,297,82
+5940-1,Doll House,2004,322,207
+5941-1,Riding School,2004,323,176
+5942-1,Pop Studio,2004,322,102
+5943-1,Interior Designer,2004,322,94
+5944-1,Cat Show,2004,322,32
+5945-1,Winnie the Pooh's Picnic,2011,504,13
+5946-1,Tigger's Expedition,2011,504,26
+5948-1,Desert Expedition,1998,297,195
+5950-1,Baby Ankylosaurus (Polybag),2001,386,37
+5951-1,Baby Iguanodon (Polybag),2001,386,23
+5952-1,Baby Brachiosaurus (Polybag),2001,386,31
+5953-1,Baby Dimetrodon (Polybag),2001,386,20
+5955-1,All Terrain Trapper,2000,298,191
+5956-1,Expedition Balloon,1999,299,173
+5958-1,Mummy's Tomb,1998,297,258
+5960-1,The Mermaid Castle,2005,319,231
+5961-1,Snow Queen,2005,319,55
+5962-1,The Tinderbox,2005,319,84
+5963-1,The Princess and the Pea,2005,319,50
+5964-1,Thumbelina,2005,319,45
+5965-1,Exo-Suit Robot,2006,389,24
+5966-1,Glider,2006,389,22
+5967-1,Takeshi Walker 2,2006,389,22
+5969-1,Squidman Escape,2009,141,42
+5970-1,Freeze Ray Frenzy,2009,141,79
+5971-1,Gold Heist,2009,141,204
+5972-1,Space Truck Getaway [Container Heist],2009,141,270
+5973-1,Hyperspeed Pursuit,2009,141,455
+5974-1,Galactic Enforcer,2009,141,824
+5975-1,T-Rex Transport,2000,298,323
+5976-1,River Expedition,1999,299,318
+5977-1,Bears on the Beach,2001,323,17
+5978-1,Sphinx Secret Surprise,1998,297,353
+5979-1,Max Security Transport,2009,141,315
+5980-1,Squidman's Pitstop - Limited Edition,2009,141,375
+5981-1,Raid VPR,2010,141,68
+5982-1,Smash 'n' Grab,2010,141,187
+5983-1,SP Undercover Cruiser,2010,141,308
+5984-1,Lunar Limo,2010,141,378
+5985-1,Space Police Central,2010,141,630
+5986-1,Amazon Ancient Ruins,1999,299,463
+5987-1,Dino Research Compound,2000,298,618
+5988-1,Pharaoh's Forbidden Ruins,1998,297,720
+599-1,Super Basic Set,1982,469,744
+5994-1,Catapult,2005,198,27
+5998-1,Vladek,2005,198,6
+5999-1,Jayko,2005,198,6
+60000-1,Fire Motorcycle,2013,58,39
+6000-1,Idea Book 6000,1980,497,2
+60001-1,Fire Rescue,2013,58,79
+60002-1,Fire Truck,2013,58,208
+60003-1,Fire Emergency,2013,58,301
+60004-1,Fire Station,2013,58,750
+60005-1,Fire Boat,2013,58,221
+60006-1,Police ATV,2013,61,51
+60007-1,High Speed Chase,2013,61,283
+60008-1,Museum Break-in,2013,61,562
+60009-1,Helicopter Arrest,2013,61,349
+600-1,Ambulance,1970,420,21
+60010-1,Fire Helicopter,2013,58,224
+6001095-1,Hulk,2012,487,4
+60011-1,Surfer Rescue,2013,55,31
+60012-1,Coast Guard 4 x 4,2013,55,127
+60013-1,Coast Guard Helicopter,2013,55,232
+60014-1,Coast Guard Patrol,2013,55,455
+60015-1,Coast Guard Plane,2013,55,279
+60016-1,Tanker Truck,2013,63,190
+60017-1,Flatbed Truck,2013,63,211
+60018-1,Cement Mixer,2013,56,220
+60019-1,Stunt Plane,2013,53,139
+600-2,Police Patrol,1978,80,23
+60020-1,Cargo Truck,2013,54,319
+6002-1,Town Figures,1983,84,20
+60021-1,Cargo Heliplane,2013,53,388
+6002-2,Castle Figures,1983,189,22
+60022-1,Cargo Terminal,2013,53,649
+60023-1,City Starter Set,2013,52,267
+60024-1,"Advent Calendar 2013, City",2013,208,24
+60024-10,"Advent Calendar 2013, City (Day 9)",2013,220,4
+60024-11,"Advent Calendar 2013, City (Day 10)",2013,220,8
+60024-12,"Advent Calendar 2013, City (Day 11)",2013,220,15
+60024-13,"Advent Calendar 2013, City (Day 12)",2013,220,21
+60024-14,"60024 Advent Calendar 2013, City (Day 13)",2013,220,6
+60024-15,"60024 Advent Calendar 2013, City (Day 14)",2013,220,16
+60024-16,"60024 Advent Calendar 2013, City (Day 15)",2013,220,12
+60024-17,"60024 Advent Calendar 2013, City (Day 16)",2013,220,13
+60024-18,"60024 Advent Calendar 2013, City (Day 17)",2013,220,8
+60024-19,"60024 Advent Calendar 2013, City (Day 18)",2013,220,7
+60024-2,"Advent Calendar 2013, City (Day 1)",2013,220,5
+60024-20,"60024 Advent Calendar 2013, City (Day 19)",2013,220,10
+60024-21,"60024 Advent Calendar 2013, City (Day 20)",2013,220,10
+60024-22,"60024 Advent Calendar 2013, City (Day 21)",2013,220,19
+60024-23,"60024 Advent Calendar 2013, City (Day 22)",2013,220,15
+60024-24,"60024 Advent Calendar 2013, City (Day 23)",2013,220,18
+60024-25,"60024 Advent Calendar 2013, City (Day 24) Santa",2013,220,6
+60024-3,"Advent Calendar 2013, City (Day 2)",2013,220,11
+60024-4,"Advent Calendar 2013, City (Day 3)",2013,220,3
+60024-5,"Advent Calendar 2013, City (Day 4)",2013,220,6
+60024-6,"Advent Calendar 2013, City (Day 5)",2013,220,8
+60024-7,"Advent Calendar 2013, City (Day 6)",2013,220,6
+60024-8,"Advent Calendar 2013, City (Day 7)",2013,220,9
+60024-9,"Advent Calendar 2013, City (Day 8)",2013,220,8
+60025-1,Grand Prix Truck,2013,52,322
+60026-1,Town Square,2013,63,916
+60027-1,Monster Truck Transporter,2013,52,306
+60031-1,City Corner {re-issue from set 7641-1},2013,63,478
+60032-1,Arctic Snowmobile,2014,65,44
+60033-1,Arctic Ice Crawler,2014,65,112
+60034-1,Arctic Helicrane,2014,65,262
+60035-1,Arctic Outpost,2014,65,373
+60036-1,Arctic Base Camp,2014,65,731
+6004-1,Crossbow Cart,1997,195,21
+60041-1,Crook Pursuit,2014,61,38
+60042-1,High Speed Police Chase,2014,61,109
+60043-1,Prisoner Transporter,2014,61,196
+60044-1,Mobile Police Unit,2014,61,374
+60045-1,Police Patrol,2014,61,407
+60046-1,Helicopter Surveillance,2014,61,526
+60047-1,Police Station,2014,61,852
+60048-1,Police Dog Unit,2014,61,248
+60049-1,Helicopter Transporter,2014,61,381
+60050-1,Train Station,2014,66,422
+60051-1,High-Speed Passenger Train,2014,66,604
+6005188-1,Darth Maul,2012,166,8
+60052-1,Cargo Train,2014,66,888
+60053-1,Race Car,2014,52,99
+60054-1,Light Repair Truck,2014,52,94
+60055-1,Monster Truck,2014,52,77
+60056-1,Tow Truck,2014,52,226
+60057-1,Camper Van,2014,52,194
+60058-1,SUV with Watercraft,2014,52,218
+60059-1,Logging Truck,2014,52,227
+60060-1,Auto Transporter,2014,52,350
+60061-1,Airport Fire Truck,2014,52,325
+6006139-1,Best Friends Promotional Brick Set,2012,494,2
+60062-1,Arctic Icebreaker,2014,65,712
+60063-1,Advent Calendar 2014 City,2014,208,24
+60063-10,Advent Calendar 2014 City (Day 9) Handcart with Bread,2014,220,6
+60063-11,Advent Calendar 2014 City (Day 10) Small Catapult,2014,220,7
+60063-12,Advent Calendar 2014 City (Day 11) Policeman with Megaphone and Sheet Music,2014,220,6
+60063-13,Advent Calendar 2014 City (Day 12) Duck with Remote Control,2014,220,10
+60063-14,Advent Calendar 2014 City (Day 13) Burglar with Bag and Flashlight,2014,220,8
+60063-15,Advent Calendar 2014 City (Day 14) Sled,2014,220,7
+60063-16,Advent Calendar 2014 City (Day 15) Dog with Bone and Food Dish,2014,220,3
+60063-17,Advent Calendar 2014 City (Day 16) Santa's Snowmobile,2014,220,13
+60063-18,Advent Calendar 2014 City (Day 17) Santa's Sled with Box,2014,220,11
+60063-19,Advent Calendar 2014 City (Day 18) Policeman with Cup and Handcuffs,2014,220,6
+60063-2,Advent Calendar 2014 City (Day 1) Boy Posting Christmas Mail,2014,220,5
+60063-20,Advent Calendar 2014 City (Day 19) Turkey Dinner,2014,220,11
+60063-21,"Advent Calendar 2014 City (Day 20) Axe, Shovel and Logs",2014,220,5
+60063-22,Advent Calendar 2014 City (Day 21) Christmas Present and Stocking,2014,220,14
+60063-23,Advent Calendar 2014 City (Day 22) Christmas Tree,2014,220,21
+60063-24,Advent Calendar 2014 City (Day 23) Tricycle,2014,220,14
+60063-25,Advent Calendar 2014 City (Day 24) Santa with Bag and Cookie,2014,220,7
+60063-3,Advent Calendar 2014 City (Day 2) Mailbox with Green Frog,2014,220,8
+60063-4,Advent Calendar 2014 City (Day 3) Snowman,2014,220,5
+60063-5,Advent Calendar 2014 City (Day 4) Pie Stall,2014,220,6
+60063-6,Advent Calendar 2014 City (Day 5) Girl with Croissant,2014,220,5
+60063-7,Advent Calendar 2014 City (Day 6) Fruit Stall,2014,220,16
+60063-8,Advent Calendar 2014 City (Day 7) Little Shop,2014,220,18
+60063-9,Advent Calendar 2014 City (Day 8) Girl on Ice Skates,2014,220,6
+60064-1,Arctic Supply Plane,2014,65,372
+60065-1,ATV Patrol,2015,61,57
+60066-1,Swamp Police Starter Set,2015,61,78
+60067-1,Helicopter Pursuit,2015,61,252
+60068-1,Crooks’ Hideout,2015,61,468
+60069-1,Swamp Police Station,2015,61,706
+60070-1,Water Plane Chase,2015,61,261
+6007-1,Bat Lord,1997,195,16
+60071-1,Hovercraft Arrest,2015,61,328
+60072-1,Demolition Starter Set,2015,56,85
+60073-1,Service Truck,2015,56,232
+60074-1,Bulldozer,2015,56,383
+60075-1,Excavator and Truck,2015,56,310
+60076-1,Demolition Site,2015,56,775
+60077-1,Space Starter Set,2015,93,107
+60078-1,Utility Shuttle,2015,93,154
+60079-1,Training Jet Transporter,2015,93,448
+60080-1,Spaceport,2015,93,585
+6008-1,Royal King,1995,201,12
+60081-1,Pickup Tow Truck,2015,63,209
+60082-1,Dune Buggy Trailer,2015,64,221
+60083-1,Snowplow Truck,2015,63,195
+60084-1,Racing Bike Transporter,2015,63,178
+60085-1,4x4 with Powerboat,2015,59,300
+60086-1,City Starter Set,2015,52,238
+60088-1,Fire Starter Set,2015,58,92
+60090-1,Deep Sea Scuba Scooter,2015,86,42
+6009-1,Black Knight,1992,188,24
+60091-1,Deep Sea Starter Set,2015,86,90
+60092-1,Deep Sea Submarine,2015,86,273
+60093-1,Deep Sea Helicopter,2015,86,387
+60095-1,Deep Sea Exploration Vessel,2015,86,716
+60096-1,Deep Sea Operation Base,2015,86,905
+60097-1,City Square,2015,63,1678
+60098-1,Heavy-Haul Train,2015,66,982
+60099-1,LEGO® City Advent Calendar 2015,2015,208,278
+60100-1,Airport Starter Set,2016,53,81
+6010-1,Supply Wagon,1984,199,36
+60101-1,Airport Cargo Plane,2016,53,156
+60102-1,Airport VIP Service,2016,53,364
+60103-1,Airport Air Show,2016,53,677
+60104-1,Airport Passenger Terminal,2016,53,692
+60105-1,Fire ATV,2016,58,64
+60106-1,Fire Starter Set,2016,58,90
+60107-1,Fire Ladder Truck,2016,58,213
+60108-1,Fire Response Unit,2016,58,256
+60109-1,Fire Boat,2016,58,411
+601-1,Shell Gas Pump,1978,76,12
+60110-1,Fire Station,2016,58,919
+6011-1,Black Knight's Treasure,1985,187,27
+60111-1,Fire Utility Truck,2016,58,367
+60112-1,Fire Engine,2016,58,375
+60113-1,Rally Car,2016,63,104
+60114-1,Race Boat,2016,52,94
+60115-1,4 x 4 Off Roader,2016,64,184
+60116-1,Ambulance Plane,2016,60,183
+60117-1,Van & Caravan,2016,63,250
+60118-1,Garbage Truck,2016,52,247
+60119-1,Ferry,2016,59,301
+601-2,Tow Truck,1970,397,21
+60120-1,Volcano Starter Set,2016,52,83
+6012-1,Siege Cart,1986,199,54
+60121-1,Volcano Exploration Truck,2016,52,174
+60122-1,Volcano Crawler,2016,52,323
+60123-1,Volcano Supply Helicopter,2016,52,329
+60124-1,Volcano Exploration Base,2016,52,823
+60125-1,Volcano Heavy-Lift Helicopter,2016,52,1273
+60126-1,Tire Escape,2016,61,47
+60127-1,Prison Island Starter Set,2016,61,92
+60128-1,Police Pursuit,2016,61,184
+60129-1,Police Patrol Boat,2016,61,200
+60130-1,Prison Island,2016,61,753
+6013-1,Samurai Swordsman,1998,434,13
+60131-1,Crooks Island,2016,61,243
+60132-1,Service Station,2016,63,513
+60133-1,City Advent Calendar 2016,2016,208,290
+60134-1,Fun in the park - City People Pack,2016,52,160
+60135-1,ATV Arrest,2017,61,47
+60136-1,Police Starter Set,2017,61,80
+60137-1,Tow Truck Trouble,2017,61,143
+60138-1,High-speed Chase,2017,61,297
+60139-1,Mobile Command Center,2017,61,373
+60140-1,Bulldozer Break-In,2017,61,558
+60141-1,Police Station,2017,61,893
+60142-1,Money Transporter,2017,61,137
+60143-1,Auto Transport Heist,2017,61,402
+60144-1,Race Plane,2017,53,88
+60145-1,Buggy,2017,63,80
+60146-1,Stunt Truck,2017,52,90
+60147-1,Fishing Boat,2017,52,144
+60148-1,ATV Race Team,2017,63,238
+60149-1,4x4 with Catamaran,2017,52,197
+60150-1,Pizza Van,2017,63,249
+60151-1,Dragster Transporter,2017,52,327
+60152-1,Sweeper & Excavator,2017,52,298
+60153-1,People pack Fun at the beach,2017,52,167
+60154-1,Bus Station,2017,52,336
+60155-1,LEGO City Advent Calendar,2017,208,247
+60156-1,Jungle Buggy,2017,614,53
+60157-1,Jungle Starter Set,2017,614,88
+60158,Jungle Cargo Helicopter,2017,614,200
+60158-1,Jungle Cargo Helicopter,2017,614,198
+60159-1,Jungle Halftrack Mission,2017,614,378
+60160-1,Jungle Mobile Lab,2017,614,423
+6016-1,Knights' Arsenal,1987,199,37
+60161-1,Jungle Exploration Site,2017,614,813
+60162-1,Jungle Air Drop Helicopter,2017,614,1248
+60163-1,Coast Guard Starter Set,2017,55,76
+60164-1,Sea Rescue Plane,2017,52,140
+60165-1,4 x 4 Response Unit,2017,52,346
+60166-1,Heavy-Duty Rescue Helicopter,2017,52,414
+60167-1,Coast Guard Head Quarters,2017,55,790
+60168-1,Sailboat Rescue,2017,52,194
+60169-1,City Cargo Terminal,2017,52,740
+6017-1,King's Oarsmen,1987,199,45
+6018031-1,Master Builder Academy: Kits 7-9 Subscription,2012,432,0
+6018-1,Battle Dragon,1990,188,54
+6020-1,Magic Shop,1993,186,47
+602-1,Fire Chief's Car,1978,74,24
+6021-1,Jousting Knights,1984,199,37
+602-2,Fire Truck,1970,417,30
+6022-1,Horse Cart,1984,199,43
+6023-1,Maiden's Cart,1986,199,45
+6024-1,Bandit Ambush,1996,191,60
+6026-1,King Leo,2000,197,21
+6027-1,Bat Lord's Catapult,1997,195,54
+6028-1,Treasure Cart,1998,195,23
+6029-1,Treasure Guard,1998,195,23
+6030-1,Catapult,1984,187,83
+603-1,Sidecar,1978,85,26
+6031-1,Fright Force,1998,195,28
+6032-1,Catapult Crusher,2000,197,56
+603-3,Vintage Car,1970,397,36
+6033-1,Treasure Transport,1998,434,59
+6034-1,Black Monarch's Ghost,1990,188,46
+6035-1,Castle Guard,1987,187,52
+6036-1,Skeleton Surprise,1995,201,74
+6037-1,Witch's Windship,1997,195,60
+6038-1,Wolfpack Renegades,1992,203,98
+6039-1,Twin-Arm Launcher,1988,199,77
+6040-1,Blacksmith Shop,1984,199,93
+604-1,Shell Service Car,1978,76,21
+6041-1,Armor Shop,1986,199,113
+604-2,Excavator,1971,416,28
+6042-1,Dungeon Hunters,1990,190,111
+6043-1,Dragon Defender,1993,186,156
+6043173-1,Friends Baking Set,2013,494,20
+6044-1,King's Carriage,1995,201,127
+6045-1,Ninja Surprise,1998,434,112
+6046-1,Hemlock Stronghold,1996,191,220
+6047-1,Traitor Transport,1997,195,145
+6048-1,Majisto's Magical Workshop,1993,186,188
+6049-1,Viking Voyager,1987,199,101
+605-1,Street Sweeper,1978,85,18
+6051-1,Play with Letters,2011,504,62
+605-2,Taxi,1971,397,18
+6053-1,My First LEGO Town,2011,37,709
+6054-1,Forestmen's Hideout,1988,194,201
+6055-1,Prisoner Convoy,1985,199,116
+6056-1,Dragon Wagon,1993,186,109
+6057-1,Sea Serpent,1992,188,128
+6058324-1,Canada 2013 Toys R Us Easter Egg Giveaway,2013,229,62
+6059-1,Knight's Stronghold,1990,188,227
+6060-1,Knight's Challenge,1989,199,168
+606-1,Ambulance,1978,78,25
+6061-1,Siege Tower,1984,199,216
+606-2,Tipper Lorry,1972,416,22
+6062-1,Battering Ram,1987,187,240
+6066-1,Camouflaged Outpost,1987,194,228
+6067-1,Guarded Inn,1986,199,256
+607-1,Mini Loader,1979,72,22
+6071-1,Forestmen's Crossing,1990,194,210
+6073-1,Knight's Castle,1984,187,416
+6074-1,Black Falcon's Fortress,1986,187,430
+6075-1,Wolfpack Tower,1992,203,239
+6075-2,Castle,1981,189,774
+6076-1,Dark Dragon's Den,1993,186,219
+6077-1,Knight's Procession,1981,189,49
+6077-2,Forestmen's River Fortress,1989,194,360
+6078-1,Royal Drawbridge,1995,201,259
+6079-1,Dark Forest Fortress,1996,191,469
+6080-1,King's Castle,1984,199,679
+608-1,Kiosk,1971,413,33
+6081-1,King's Mountain Fortress,1990,190,438
+608-2,Taxi,1979,85,25
+6082-1,Fire Breathing Fortress,1993,186,406
+6083-1,Knight's Tournament,1981,189,210
+6083-2,Samurai Stronghold,1998,434,198
+6085-1,Black Monarch's Castle,1988,188,688
+6086-1,Black Knight's Castle,1992,188,590
+6087-1,Witch's Magic Manor,1997,195,254
+6088-1,Robber's Retreat,1998,434,281
+6089-1,Stone Tower Bridge,1998,434,410
+6090-1,Royal Knight's Castle,1995,201,764
+609-1,Aeroplane,1972,412,28
+6091-1,King Leo's Castle,2000,197,539
+6092-1,50 Jahre In Deutschland,2006,37,706
+6092-2,LEGO Special Edition Creative Building Tub,2006,37,706
+6093-1,Flying Ninja Fortress,1998,434,698
+6094-1,Guarded Treasury,2000,197,103
+6095-1,Royal Joust,2000,197,103
+6096-1,Bull's Attack,2000,197,315
+6097-1,Night Lord's Castle,1997,195,607
+6098-1,King Leo's Castle,2000,197,538
+6099-1,Traitor Transport (with Cave),1997,195,145
+6100-1,Aquashark Dart,1998,311,24
+610-1,Vintage Car,1973,397,39
+610-2,Rescue Helicopter,1987,466,35
+6102-1,Castle Mini Figures,1985,202,36
+6103-1,Castle Mini Figures,1988,202,38
+6103-2,Knights,1984,202,25
+6104-1,Aquacessories,1996,314,27
+6105-1,Medieval Knights,1993,202,37
+6107-1,Recon Ray,1998,313,20
+6109-1,"Sea Creeper (with Stingray Baseplate, Raised)",1998,313,79
+6110-1,Solo Sub,1998,312,25
+611-1,Police Car,1973,421,19
+6111-1,Street Chase,2006,120,193
+611-2,Air Canada Jet Plane,1988,466,89
+6112-1,World of Bricks,2006,48,1004
+6114-1,200 + 40 Special Elements,2007,48,242
+6115-1,Shark Scout,1995,311,28
+6116-1,Box of Bricks,2007,48,604
+6117-1,Doors and Windows,2008,48,100
+6118-1,Wheels,2008,48,106
+6119-1,Roof Tiles,2008,48,150
+612-1,Tipper Truck,1974,416,23
+6125-1,Sea Sprint 9,1995,308,32
+6126-1,Good Guy 2008,2008,324,26
+6127-1,Bad Guy 2008,2008,324,29
+6128-1,Function 2008,2008,324,22
+6130-1,DUPLO Build and Play,2011,504,100
+613-1,Biplane,1974,412,18
+6131-1,Build and Play,2011,37,646
+6132-1,Red,2012,506,15
+6133-1,Race Day,2012,506,30
+6134-1,Siddeley Saves the Day,2012,506,38
+6135-1,Spy Shark,1996,311,60
+6136-1,My First Zoo,2011,504,60
+6137-1,My First LEGO Duplo Supermarket,2011,504,38
+6138-1,My First Fire Station,2011,504,60
+6140-1,Crab,1998,313,78
+614-1,Excavator,1974,416,31
+6143-1,Race Team,2012,504,34
+6144-1,Zoo Train,2012,504,12
+6145-1,Crystal Crawler,1996,308,96
+6146-1,Pick-up Truck,2012,504,17
+6150-1,Crystal Detector,1998,312,105
+6151-1,Sleeping Beauty's Chamber,2012,504,16
+615-2,Fork Lift with Driver,1975,416,21
+6152-1,Snow White's Cottage,2012,504,28
+6153-1,Cinderella's Carriage,2012,504,20
+6154-1,Cinderella's Castle,2012,504,77
+6155-1,Deep Sea Predator,1995,311,104
+6156-1,Photo Safari,2012,504,68
+6157-1,The Big Zoo,2012,504,147
+6158-1,Duplo Animal Clinic,2012,504,62
+6159-1,Crystal Detector,1998,312,105
+6160-1,Sea Scorpion,1998,313,305
+616-1,Cargo Ship,1976,419,31
+6161-1,Brick Box,2007,37,221
+6162-1,A World of LEGO Mosaic 4 in 1,2007,277,286
+6163-1,A World of LEGO Mosaic 9 in 1,2007,277,598
+6164-1,LEGO Rescue Building Set,2007,37,519
+6166-1,Large Brick Box,2007,37,406
+6167-1,Deluxe Brick Box,2006,37,693
+6168-1,Fire Station,2012,504,64
+6169-1,Fire Chief,2012,504,6
+617-1,Cowboys,1976,397,41
+6171-1,My First Gas Station,2012,504,47
+6173-1,Panda,2012,504,7
+6175-1,Crystal Explorer Sub,1995,308,167
+6176-1,Basic Bricks - Deluxe,2008,505,80
+6176782-1,Escape the Space Slug,2016,598,161
+6177-1,LEGO Basic Bricks Deluxe,2008,48,650
+6180-1,Hydro Search Sub,1998,312,297
+618-1,Police Helicopter,1977,421,38
+6186-1,Build Your Own LEGO Harbor,2008,37,252
+6187-1,Road Construction Set,2008,22,296
+6190-1,Shark's Crystal Cave,1996,311,259
+619-1,Rally Car,1977,397,22
+6191-1,Fire Fighter Building Set,2009,37,117
+6192-1,Pirates Building Set,2009,37,150
+6193-1,Castle Building Set,2009,37,137
+6194-1,My Own LEGO Town,2009,37,515
+6195-1,Neptune Discovery Lab,1995,308,509
+6198-1,Stingray Stormer,1998,313,413
+6199-1,Hydro Crystalization Station,1998,312,485
+6200-1,Pirates Double Pack,1989,148,2
+6200-2,Evo,2012,401,36
+620-1,Fireman's Car,1978,74,32
+6201-1,Toxic Reapa,2012,403,42
+620-2,Fire Truck,1970,417,40
+6202-2,Rocka,2012,401,55
+620-3,Blue Building Plate 32 x 32,2010,48,1
+6203-1,Black Phantom,2012,403,124
+6204-1,Buccaneers,1997,148,42
+6205-1,V-wing Fighter,2006,168,118
+6206-1,TIE Interceptor,2006,169,212
+6207-1,A-wing Fighter,2006,169,193
+6208-1,B-wing Fighter,2006,169,439
+6209-1,Slave I (2nd edition),2006,169,537
+6210-1,Jabba's Sail Barge,2006,169,781
+621-1,Police Car,1978,80,34
+6211-1,Imperial Star Destroyer,2006,169,1388
+621-2,Shell Tanker Truck,1970,418,43
+6212-1,X-wing Fighter,2006,169,437
+6213-1,Replacement Gearbox for Electric Motor,1985,456,1
+6216-1,Jawblade,2012,403,45
+6217-1,Surge,2012,401,39
+6218-1,Splitface,2012,403,50
+622-1,Tipper Truck,1978,72,32
+6221-1,Nex,2012,401,39
+622-2,Baggage Carts,1970,412,45
+6222-1,Core Hunter,2012,403,51
+6223-1,Bulk,2012,401,61
+6227-1,Breez,2012,401,55
+6228-1,Thornraxx,2012,403,44
+6229-1,XT4,2012,403,39
+6230-1,Stormer XL,2012,401,89
+623-1,Medic's Car,1978,78,33
+6231-1,Speeda Demon,2012,403,192
+623-2,White Car and Camper,1970,397,38
+6232-1,Skeleton Crew,1996,148,31
+6234-1,Renegade's Raft,1991,148,39
+6235-1,Buried Treasure,1989,148,27
+6236-1,King Kahuka,1994,152,49
+6237-1,Pirates' Plunder,1993,148,28
+6239-1,Cannon Battle,2009,153,45
+6240-1,Kraken Attackin',2009,153,78
+624-1,"Basic Motor, 9V",1996,473,27
+6241-1,Loot Island,2009,153,144
+6242-1,Soldiers' Fort,2009,153,370
+6243-1,Brickbeard's Bounty,2009,153,595
+6244-1,Armada Sentry,1996,149,74
+6245-1,Harbor Sentry,1989,151,26
+6246-1,Crocodile Cage,1994,152,61
+6247-1,Bounty Boat,1992,148,40
+6248-1,Volcano Island,1996,148,123
+6249-1,Pirates Ambush,1997,148,159
+6250-1,Cross Bone Clipper,1997,148,157
+625-1,Tractor,1978,72,31
+6251-1,Pirate Mini Figures,1989,148,40
+6252-1,Sea Mates,1993,148,36
+6253-1,Shipwreck Hideout,2009,153,313
+6254-1,Rocky Reef,1995,148,108
+6255-1,Pirate Comic,1989,148,12
+6256-1,Islander Catamaran,1994,152,64
+6257-1,Castaway's Raft,1989,148,54
+6258-1,Smuggler's Shanty,1992,148,75
+6259-1,Broadside's Brig,1991,151,68
+6260-1,Shipwreck Island,1989,148,78
+626-1,"Baseplate, Green",1996,473,1
+6261-1,Raft Raiders,1992,148,86
+626-2,Red Cross Helicopter,1978,78,36
+6262-1,King Kahuka's Throne,1994,152,155
+6263-1,Imperial Outpost,1995,147,219
+6264-1,Forbidden Cove,1994,152,222
+6265-1,Sabre Island,1989,151,97
+6266-1,Cannon Cove,1993,147,106
+6267-1,Lagoon Lock-Up,1991,151,194
+6268-1,Renegade Runner,1993,148,187
+6270-1,Forbidden Island,1989,148,190
+627-1,"Baseplate, Blue",1996,473,1
+6271-1,Imperial Flagship,1992,147,320
+6271-2,Imperial Flagship with Free Storage Case,1992,150,1
+6273-1,Rock Island Refuge,1991,148,388
+6274-1,Caribbean Clipper,1989,151,386
+6276-1,Eldorado Fortress,1989,151,515
+6277-1,Imperial Trading Post,1992,147,622
+6278-1,Enchanted Island,1994,152,439
+6279-1,Skull Island,1995,148,386
+6280-1,Armada Flagship,1996,149,292
+628-1,X-Large Building Plate (Light Gray),1996,473,1
+6281-1,Pirates Perilous Pitfall,1997,148,404
+628-2,Police Helicopter,1977,421,38
+6282-1,Stringer,2012,401,42
+628-3,X-Large Gray Baseplate (Lt Bluish Gray),2003,48,1
+6283-1,Voltix,2012,403,61
+6285-1,Black Seas Barracuda,1989,148,915
+6286-1,Skull's Eye Schooner,1993,148,921
+6289-1,Red Beard Runner,1996,148,711
+6290-1,Red Beard Runner,2001,148,712
+629-1,Three Building Plates,1996,473,3
+6291-1,Armada Flagship,2001,149,291
+6292-1,Enchanted Island,2001,152,445
+6293-1,Furno,2012,401,56
+6296-1,Shipwreck Island,1996,148,226
+6299-1,Advent Calendar 2009 Pirates,2009,215,24
+6299-10,Advent Calendar 2009 Pirates (Day 9) - Plants and Crab,2009,224,7
+6299-11,Advent Calendar 2009 Pirates (Day 10) - Barrel with Tools,2009,224,3
+6299-12,Advent Calendar 2009 Pirates (Day 11) - Castaway,2009,224,7
+6299-13,Advent Calendar 2009 Pirates (Day 12) - Fish over Fire,2009,224,9
+6299-14,Advent Calendar 2009 Pirates (Day 13) - Monkey,2009,224,2
+6299-15,Advent Calendar 2009 Pirates (Day 14) - Mermaid,2009,224,4
+6299-16,Advent Calendar 2009 Pirates (Day 15) - Clam and Plant,2009,224,6
+6299-17,Advent Calendar 2009 Pirates (Day 16) - Table with Food and Rat,2009,224,8
+6299-18,Advent Calendar 2009 Pirates (Day 17) - Imperial Soldier II,2009,224,6
+6299-19,Advent Calendar 2009 Pirates (Day 18) - Weapon Stand,2009,224,9
+6299-2,Advent Calendar 2009 Pirates (Day 1) - Captain Brickbeard,2009,224,6
+6299-20,Advent Calendar 2009 Pirates (Day 19) - Pirate,2009,224,4
+6299-21,Advent Calendar 2009 Pirates (Day 20) - Barrel and Paddle,2009,224,2
+6299-22,Advent Calendar 2009 Pirates (Day 21) - Sawfish,2009,224,2
+6299-23,Advent Calendar 2009 Pirates (Day 22) - Skeleton and Snake,2009,224,7
+6299-24,Advent Calendar 2009 Pirates (Day 23) - Brick Arch with Fire and Skull,2009,224,12
+6299-25,Advent Calendar 2009 Pirates (Day 24) - Treasure Chest with Gems,2009,224,8
+6299-3,Advent Calendar 2009 Pirates (Day 2) - Table with Lamp and Map,2009,224,9
+6299-4,Advent Calendar 2009 Pirates (Day 3) - Parrot on Perch,2009,224,7
+6299-5,Advent Calendar 2009 Pirates (Day 4) - Imperial Soldier II Officer,2009,224,6
+6299-6,Advent Calendar 2009 Pirates (Day 5) - Cannon,2009,224,8
+6299-7,Advent Calendar 2009 Pirates (Day 6) - Crocodile,2009,224,3
+6299-8,Advent Calendar 2009 Pirates (Day 7) - Pirate Female,2009,224,5
+6299-9,Advent Calendar 2009 Pirates (Day 8) - Raft with Flagpole,2009,224,8
+6-3,Basic Set,1973,469,338
+630-1,Brick Separator,1996,443,1
+6301-1,Town Mini-Figures,1986,84,34
+6302-1,Mini-Figure Set,1982,84,31
+630-3,Brick Separator Orange,2012,443,1
+6304-1,Cross Roads Plates,1980,84,2
+6305-1,Trees and Flowers,1980,84,24
+6306-1,Road Signs,1980,84,12
+6307-1,Firemen,1983,84,22
+6308-1,Policemen,1982,84,20
+6309-1,Town Mini-Figures,1988,84,41
+6310-1,T-Road Plates,1986,84,2
+631-1,Doors and Windows,1996,473,52
+6311-1,Curved Road Plates,1986,84,2
+6312-1,Straight Road Plates,1986,84,2
+6313-1,Cross-Road Plates,1986,84,2
+6314-1,City People,1992,84,36
+6315-1,Road Signs,1988,84,11
+6316-1,Flags and Fences,1988,84,38
+6317-1,Trees and Flowers,1988,84,48
+6318-1,"Flowers, Trees and Fences",1996,84,73
+6319-1,Trees and Fences,1993,84,45
+6320-1,T-Road Plates,1997,102,2
+632-1,Wheels and Tires,1996,473,60
+6321-1,Curved Road Plates,1997,102,2
+6322-1,Straight Road Plates,1997,102,2
+6323-1,Cross Road Plates,1997,102,2
+6324-1,Chopper Cop,1998,100,24
+6325-1,Package Pick-Up,1998,95,29
+6326-1,Town Folks,1998,102,40
+6327-1,Turbo Champs,1998,101,48
+6328-1,Helicopter Transport,1998,100,102
+6329-1,Truck Stop,1998,103,139
+6330-1,Cargo Center,1998,95,246
+633-1,Roof Tiles,1996,473,50
+6331-1,Patriot Jet,1996,68,166
+6332-1,Command Post Central,1998,100,277
+6333-1,Race and Chase,1998,101,50
+6334-1,Wave Jump Racers,1996,82,180
+6335-1,Indy Transport,1996,82,402
+6336-1,Launch Response Unit,1995,88,181
+6337-1,Fast Track Finish,1996,82,339
+6338-1,Hurricane Harbor,1995,71,364
+6339-1,Shuttle Launch Pad,1995,88,564
+6340-1,Hook & Ladder,1994,74,177
+634-1,Extra Bricks in Red,1996,473,62
+6341-1,Gas N' Go Flyer,1994,68,106
+6342-1,Beach Rescue Chopper,1993,71,149
+6344-1,Jet Speed Justice,1993,80,158
+6345-1,Aerial Acrobats,1993,68,350
+6346-1,Shuttle Launching Crew,1992,68,413
+6347-1,Monorail Accessory Track,1991,84,54
+6348-1,Surveillance Squad,1994,80,318
+6349-1,Vacation House,1988,69,215
+6350-1,Pizza To Go,1994,75,150
+635-1,Extra Bricks in White,1996,473,62
+6351-1,Surf N' Sail Camper,1992,83,190
+6352-1,Cargomaster Crane,1991,72,141
+6353-1,Coastal Cutter,1991,71,184
+6354-1,Pursuit Squad,1990,80,175
+6355-1,Derby Trotter,1989,83,142
+6356-1,Med-Star Rescue Plane,1988,78,160
+6357-1,Stunt 'Copter N' Truck,1988,85,177
+6358-1,Snorkel Squad,1987,74,154
+6359-1,Horse Trailer,1986,73,144
+6360-1,Weekend Cottage,1986,69,117
+636-1,Pullback Motor,1996,473,14
+6361-1,Mobile Crane,1986,72,163
+6362-1,Post Office,1982,81,135
+6363-1,Auto Service Station,1980,85,140
+6364-1,Paramedic Unit,1980,78,139
+6365-1,Summer Cottage,1981,69,152
+6366-1,Fire & Rescue Squad,1984,74,117
+6367-1,Truck,1984,70,154
+6368-1,Jet Airliner,1985,68,137
+6369-1,Garage,1985,85,134
+6370-1,Weekend Home,1985,69,186
+637-1,Plastic Playtable,1996,473,3
+6371-1,Shell Service Station,1983,76,267
+6372-1,Town House,1982,69,234
+6373-1,Motorcycle Shop,1984,85,186
+6374-1,Holiday Home,1983,69,265
+6375-1,Trans Air Carrier,1990,70,213
+6375-2,Exxon Gas Station,1980,76,270
+6376-1,Breezeway Cafe (Breezeway Café),1990,75,194
+6377-1,Delivery Center,1985,70,305
+6378-1,Shell Service Station,1986,76,313
+6379-1,Riding Stable,1986,69,281
+6380-1,Emergency Treatment Center,1987,78,312
+638-1,"Lots of Extra Basic Bricks, 3+",1996,473,404
+6381-1,Motor Speedway,1987,82,206
+6382-1,Fire Station,1981,74,394
+6383-1,Public Works Center,1981,72,420
+6384-1,Police Station,1983,80,398
+6385-1,Fire House-I,1985,74,416
+6386-1,Police Command Base,1986,80,401
+6387-1,Coastal Rescue Base,1989,71,375
+6388-1,Holiday Home with Caravan,1989,69,363
+6389-1,Fire Control Center,1990,74,542
+6390-1,Main Street,1980,85,607
+639-1,"Lots of Extra Basic Bricks, 5+",1997,473,400
+6391-1,Cargo Center,1984,70,565
+6392-1,Airport,1985,68,539
+6393-1,Big Rig Truck Stop,1987,85,634
+6394-1,Metro Park & Service Tower,1988,76,632
+6395-1,Victory Lap Raceway,1988,82,613
+6396-1,International Jetport,1990,68,550
+6397-1,Gas N' Wash Express,1992,76,473
+6398-1,Central Precinct HQ,1993,80,633
+6399-1,Airport Shuttle,1990,68,787
+6-4,4.5V Battery Train Wagon,1977,456,2
+6400-1,Go-Kart,1997,82,23
+640-1,Fire Truck,1971,417,45
+6401-1,Seaside Cabana,1992,90,45
+640-2,Fire Truck and Trailer,1978,74,47
+6402-1,Sidewalk Cafe,1994,90,48
+6403-1,Paradise Playground,1993,90,97
+6404-1,Carriage Ride,1996,90,66
+6405-1,Sunset Stables,1992,90,132
+6406-1,Go-Kart,1997,82,23
+6407-1,Fire Chief,1997,98,26
+6409-1,Island Arcade,1993,90,149
+6410-1,Cabana Beach,1994,90,153
+641-1,Excavator,1978,72,38
+6411-1,Sand Dollar Cafe,1992,90,172
+6414-1,Dolphin Point,1995,90,209
+6415-1,Res-Q Jet-Ski,1998,92,18
+6416-1,Poolside Paradise,1992,90,239
+6417-1,Show Jumping Event,1997,90,41
+6418-1,Country Club,1996,90,292
+6419-1,Rolling Acres Ranch,1992,90,364
+6420-1,Mail Carrier,1998,81,14
+642-1,Tow Truck and Car,1978,85,43
+642-2,Double Excavator,1971,416,33
+6422-1,Telephone Repair,1998,103,48
+6423-1,Mini Tow Truck,2000,103,35
+6424-1,Rig Racers,1998,101,107
+6425-1,TV Chopper,1999,103,37
+6426-1,Super Cycle Center,1998,103,145
+6427-1,Road Signs,1999,102,43
+6428-1,Wave Saver,1998,92,18
+6429-1,Blaze Responder,1999,98,46
+6430-1,Night Patroller,1991,80,140
+643-1,Flatbed Truck,1978,85,39
+6431-1,Road Rescue,1998,92,48
+643-2,Mobile Crane,1971,416,35
+6432-1,Speedway Transport,1999,101,139
+6433-1,Coastwatch,1999,100,89
+6434-1,Roadside Repair,1999,103,213
+6435-1,Coast Guard HQ,1999,96,217
+6436-1,Go-Kart,1999,82,22
+6437-1,Beach Buggy,1999,96,28
+6439-1,Mini-Dumper,1999,97,30
+6440-1,Jetport Fire Squad,1991,68,159
+644-1,Double Tanker,1971,418,61
+6441-1,Deep Reef Refuge,1997,86,451
+644-2,Police Mobile Patrol,1978,80,44
+6442-1,Sting Ray Explorer,1997,86,150
+6444-1,Outback Airstrip,1997,89,167
+6445-1,Emergency Evac,1998,92,99
+6446-1,Crane Truck,1999,103,26
+6447-1,Dumper,1999,97,49
+6450-1,Mobile Police Truck,1986,80,83
+645-1,Police Helicopter,1979,80,56
+6451-1,River Response,1998,92,152
+645-2,Milk Float & Trailer,1971,397,57
+6452-1,Mini Rocket Launcher,1999,93,31
+6453-1,Com-Link Cruiser,1999,93,60
+6454-1,Countdown Corner,1999,93,131
+6455-1,Space Simulation Station,1999,93,251
+6456-1,Mission Control,1999,93,499
+6457-1,Astronaut Figure,1999,93,18
+6458-1,Satellite with Astronaut,1999,93,30
+6459-1,Fuel Truck,1999,93,119
+646-1,Auto Service Truck,1979,85,42
+6461-1,Surveillance Chopper,1999,93,30
+646-2,Mobile Site Office,1971,397,51
+6462-1,Aerial Recovery,1998,92,197
+6463-1,Lunar Rover,1999,93,36
+6464-1,Super Rescue Complex,1999,103,360
+6465-1,Space Port Jet,1999,93,65
+6467-1,Power Pitstop,1999,101,71
+6468-1,Tow-n-Go Value Pack,1999,103,50
+6469-1,Space Port Value Pack,1999,93,3
+6470-1,Mini Dump Truck,2000,97,25
+647-1,Truck with Girders,1971,416,51
+6471-1,4WD Police Patrol,2000,100,30
+6472-1,Gas N' Wash Express,2001,76,473
+6473-1,Res-Q Cruiser,1998,92,305
+6474-1,Wheeled Front Shovel,2000,97,49
+6477-1,Firefighter's Lift Truck,2000,98,103
+6478-1,Fire Station,2000,98,224
+6479-1,Emergency Response Center,1998,92,425
+6480-1,Hook and Ladder Truck,1986,74,118
+648-1,Shell Service Station,1971,418,42
+6481-1,Construction Crew,1989,72,170
+6482-1,Rescue Helicopter,1989,78,198
+6483-1,Coastal Patrol,1994,77,245
+6484-1,F1 Hauler,1995,82,280
+6486-1,Fire Engine,1997,98,67
+6487-1,Mountain Rescue,1997,89,68
+6489-1,Seaside Holiday Cottage,1997,90,88
+6490-1,Amazon Crossing,1997,89,120
+649-1,Low-Loader with Excavator,1972,416,36
+6491-1,Rocket Racer,1996,464,58
+6492-1,Hypno Cruiser,1996,464,157
+6493-1,Flying Time Vessel,1996,464,241
+6494-1,Mystic Mountain Time Lab,1996,464,510
+6495-1,Time Tunnelator,1997,464,81
+6496-1,Whirling Time Warper,1997,464,158
+6497-1,Twisted Time Train,1997,464,300
+6498-1,Go-Kart,1999,82,22
+6499-1,Time Tunnelator,1997,464,82
+650-1,Car with Trailer and Racing Car,1972,397,40
+6501-1,Sport Convertible,1987,85,30
+6502-1,Turbo Racer,1987,82,24
+65028-1,Star Wars Co-Pack of 7115 7124 and 7141,2001,166,3
+65030-1,Star Wars Co-Pack of 7104 and 7144,2001,169,2
+6503-1,Sprint Racer,1988,82,32
+65034-1,Star Wars Co-Pack of 7121 and 7161,2001,166,2
+6504-1,Tractor,1988,72,25
+6505-1,Fire Chief's Car,1988,74,29
+6506-1,Precinct Cruiser,1989,80,32
+65062-1,Racers Turbo Pack,2002,113,2
+6507-1,Mini Dumper,1989,72,30
+65071-1,Dual Pack: Lehvak & Pahrak,2002,328,3
+6508-1,Wave Racer,1990,77,37
+65081-1,R2-D2 8009 / C-3PO 8007 Droid Collectors Set,2002,18,3
+6509-1,Red Devil Racer,1991,82,39
+6510-1,Mud Runner,1991,82,34
+65106-1,Episode II Co-Pack (contains 7103 7113),2002,167,2
+65109-1,Pahrak Nuhvok Gahlok Co-Pack,2002,328,3
+651-1,Tow Truck and Car,1972,397,41
+65110-1,Kohrak Lehvak Tahnok Co-Pack,2002,328,3
+6511-1,Rescue Runabout,1992,74,38
+6512-1,Landscape Loader,1992,72,37
+65127-1,Bohrok Co-Pack (contains 8560 8561 8563),2002,328,3
+65128-1,Bohrok Co-Pack (contains 8562 8564 8565),2002,328,3
+6513-1,Glade Runner,1993,77,31
+6514-1,Trail Ranger,1994,83,36
+65145-1,X-wing Fighter / TIE Fighter & Y-wing Collectors Set,2002,169,2
+6515-1,Stunt Copter,1994,68,34
+65153-1,Jango Fett's Slave I (Set 7153) with Carrying Case,2002,167,1
+6516-1,Moon Walker,1995,88,34
+6517-1,Water Jet,1996,77,28
+6518-1,Baja Buggy,1996,71,37
+65182-1,Slammer Stadium,2003,461,25
+65186-1,Bohrok 3-pack (contains 8560 8561 8564),2002,328,3
+6519-1,Turbo Tiger,2000,91,46
+6520-1,Mobile Outpost,2000,51,218
+6521-1,Emergency Repair Truck,1987,85,58
+652-2,Fork Lift Truck and Trailer,1972,416,42
+6522-1,Highway Patrol,1987,80,38
+65221-1,Streetball 2 vs 2 (box with mini basketball),2003,459,2
+65229-1,Rahkshi Co-Pack 1,2003,344,3
+65230-1,Rahkshi Co-Pack 2,2003,344,3
+6523-1,Red Cross,1987,78,51
+6524-1,Blizzard Blazer,1988,85,50
+6525-1,Blaze Commander,1995,74,49
+65258-1,Power Chamber with Gahlok Tahnok Va Pahrak Va and Gahlok Va,2003,324,4
+6526-1,Red Line Racer,1989,82,47
+6527-1,Tipper Truck,1989,72,43
+65277-1,Rahkshi Kaita Za Pack (Includes Turahk Lerahk Kurahk and Tahnok Va),2003,324,4
+6528-1,Sand Storm Racer,1989,82,39
+6529-1,Ultra Light I,1990,68,35
+65295-1,Matoro and Kopeke Twin Pack with Gold Avohkii,2003,335,3
+65296-1,Hewkii and Hahli Twin Pack with Gold Avohkii,2003,335,3
+65297-1,Hafu and Macku Twin Pack with Gold Avohkii,2003,335,3
+6530-1,Sport Coupe,1990,85,43
+653-1,Ambulance and Helicopter,1973,420,36
+6531-1,Flame Chaser,1991,74,56
+6532-1,Diesel Dumper,1991,72,47
+6533-1,Police 4x4,1992,80,62
+65340-1,Dumper and Front End Loader Co-Pack (contains 8451 and 8453),2004,7,2
+6534-1,Beach Bandit,1992,83,44
+6535-1,Dumper,1995,72,42
+6536-1,Aero Hawk,1993,68,48
+65362-1,Jewels-n-Rings Click-N-Store Jewelry Set Co-Pack (7507 with jewelry box),2004,500,2
+65363-1,Jewels-n-Bands Click-N-Store Jewelry Set Co-Pack (7508 with jewelry box),2004,500,2
+65364-1,Jewels-n-Clips Click-N-Store Jewelry Set Co-Pack (7509 with jewelry box),2004,500,2
+6537-1,Hydro Racer,1994,77,50
+6538-1,Rebel Roadster,1994,85,57
+6539-1,Victory Cup Racers,1993,82,459
+6540-1,Pier Police,1991,77,358
+654-1,Crane Lorry,1973,416,33
+6541-1,Intercoastal Seaport,1991,77,552
+6542-1,Launch & Load Seaport,1991,77,1078
+6543-1,Sail N' Fly Marina,1994,77,709
+6544-1,Shuttle Transcon 2,1995,88,346
+6545-1,Search N' Rescue,1996,80,290
+6546-1,Slick Racer,1996,82,39
+65468-1,Toa Metru Twin Pack with Kanoka and Poster,2004,353,3
+6547-1,Fun Fair,1997,90,204
+6548-1,Octan Gas Station,1997,99,127
+6549-1,Roadblock Runners,1997,103,181
+6550-1,Outback Racer,1997,89,48
+655-1,Mobile Hydraulic Lift,1973,416,33
+6551-1,Checkered Flag 500,1992,82,192
+65514-1,Matoran / Vahki Co-Pack 1 (contains 8607 8611 8614 8616 8618),2004,324,5
+65515-1,Matoran / Vahki Co-Pack 2 (contains 8610 8612 8615 8617 8619),2004,324,5
+65518-1,"Spider-Man Co-Pack 1 (4853, 4857)",2004,488,2
+6552-1,Rocky River Retreat,1993,83,241
+65524-1,Hogwarts Express (2nd edition) Co-Pack (contains 10132 4515 4520),2004,250,3
+65527-1,Vladek's Attack,2004,198,2
+6553-1,Crisis News Crew,1997,89,135
+65535-1,X-Pod Play Off Game Pack,2004,478,7
+65537-1,Classic Freight Train,2004,238,0
+6554-1,Blaze Brigade,1997,98,261
+65542-1,Click-N-Store Jewelry Set Co-Pack (7514 with jewelry box),2004,500,2
+65545-1,Ta-Metru Collector's Pack,2004,324,3
+65549-1,Bionicle Bonus Pack (8615 8617 8619 plus three Bionicle Comic books),2004,357,3
+6555-1,Sea Hunter,1997,86,32
+6556-1,Scuba Squad,1997,86,76
+6557-1,Treasure Hunters,1997,86,143
+65572-1,Spider-Man Co-Pack,2005,488,3
+65573-1,Rumble Racers,2005,116,4
+65579-1,Knights' Kingdom Value Pack 8770 and 8771 with Foam Helmet,2004,198,3
+65580-1,Knights' Kingdom Value Pack 8772 and 8774 with Foam Helmet,2004,198,3
+6558-1,Shark Cage Cove,1997,86,196
+6559-1,Deep Sea Bounty,1997,86,359
+6560-1,Diving Expedition Explorer,1997,86,478
+656-1,Car and Caravan,1974,411,49
+6561-1,Hot Rod Club,1994,82,240
+6562-1,Gas Stop Shop,1995,76,225
+6563-1,Gator Landing,1996,83,237
+6564-1,Recycle Truck,1997,103,35
+65642-1,The Grand Tournament Limited Edition Value Pack,2004,198,3
+6565-1,Construction Crew,1997,97,78
+6566-1,Bank,1997,103,106
+6567-1,Speed Splash,1998,87,28
+6568-1,Drag Race Rally,1998,87,291
+6569-1,Polar Scout,2000,51,2
+6570-1,Snowmobile,1998,51,43
+657-1,Executive Jet,1974,412,36
+6571-1,Flame Fighters,1994,74,433
+65716-1,Limited Edition Collector Pack with Vohtarak Sidorak and Life-Size Toa Hordika Mask (8742 8756),2004,324,3
+6572-1,Wind Runners,1998,87,52
+6573-1,Arctic Expedition,2000,51,120
+65743-1,City Construction Value Pack (7246 7242 7248),2005,56,0
+6575-1,Polar Base,2000,51,440
+65757-1,Special Edition Guardian Toa (8762/8763),2005,349,2
+6576-1,Sledge,1998,51,24
+65767-1,Attack from the Sea,2005,198,2
+65768-1,Jayko Value Pack 8783 and 8772 with Sword and Helmet,2005,198,4
+65769-1,Vladek Value Pack,2005,198,4
+6577-1,Snow Scooter,2000,51,20
+65771-1,Episode III Collectors' Set,2005,168,5
+65777-1,City Fire Value Pack (7238 7239 7240 7241),2005,58,0
+6578-1,Polar Explorer,2000,51,22
+6579-1,Ice Surfer,2000,51,42
+65799-1,City Fire Station Value Pack,2005,58,0
+65800-1,City Construction Set Value Pack,2005,56,0
+6580-1,Land Jet 7,1998,87,114
+65801-1,Trains Value Pack,2005,239,0
+65808-1,Toa Hordika Value Pack,2005,324,4
+658-1,Fire Engine,1974,417,38
+6581-1,Dig 'N' Dump,1996,72,128
+65813-1,Special Edition Co-Pack with Sidorak and Toa Iruini (8756 8762),2005,324,2
+6582-1,Daredevil Flight Squad,1998,87,287
+6584-1,Extreme Team Challenge,1998,87,357
+65844-1,Star Wars Co-Pack of 7255 4492 and 4494,2005,168,3
+65845-1,Star Wars Co-Pack of 7256 4492 and 4494,2005,168,3
+65849-1,Bionicle Co-Pack (contains 8758 and 851097),2005,341,2
+6585-1,Hang-Glider,1998,87,19
+65851-1,Knights Kingdom II Co-Pack (contains 8876 and life size sword),2005,198,2
+6586-1,Polar Scout,2000,51,55
+6589-1,Radical Racer,1998,87,83
+6590-1,Vacation Camper,1988,85,116
+659-1,Police Patrol with Policemen,1975,421,49
+6591-1,Nitro Dragsters,1989,82,144
+6592-1,Vacation Hideaway,1990,69,116
+6593-1,Blaze Battler,1991,74,126
+6594-1,Gas Transit,1992,76,123
+6595-1,Surf Shack,1993,83,93
+6596-1,Wave Master,1995,77,133
+6597-1,Century Skyway,1994,68,905
+6598-1,Metro PD Station,1996,80,567
+6599-1,Shark Attack,1997,86,58
+6600-1,Police Patrol,1981,80,23
+6600-2,Highway Construction,2000,97,316
+660-1,Car with Plane Transporter,1975,397,41
+6601-1,Ice Cream Cart,1985,75,30
+6602-1,Fire Chief's Car,1981,74,24
+6602-2,Scorpion Buggy,2000,91,78
+6603-1,Shovel Truck,1985,72,27
+6604-1,Formula-I Racer,1985,82,31
+6605-1,Road Racer,1984,82,20
+6606-1,Road Repair Set,1983,85,25
+6607-1,Service Truck,1982,85,25
+6608-1,Tractor,1982,73,21
+6609-1,Race Car,1980,82,17
+6610-1,Gas Pumps,1981,76,28
+661-1,Spirit of St. Louis,1976,412,49
+6611-1,Fire Chief's Car,1981,74,20
+66116-1,City Emergency Services Vehicles (Multipack),2006,52,0
+66117-1,Offre Speciale (7235 7236 7238 7241),2007,52,0
+6612-1,Fire Chief's Car,1986,74,29
+6613-1,Telephone Booth,1986,85,26
+66138-1,Toa Hordika Collection,2005,350,6
+6614-1,Launch Evac 1,1995,88,122
+6615-1,Eagle Stunt Flyer,1996,68,75
+66156-1,Airport Value Pack (TRU Exclusive),2006,53,4
+6616-1,Rocket Dragster,2000,91,146
+6617-1,Tough Truck Rally,2000,91,387
+66174-1,Lego Firemen Bundle,2006,58,0
+66175-1,City Rescue Pack,2007,52,0
+66177-1,City Rescue Pack,2007,52,0
+6618-1,Blue Racer,2000,91,23
+66188-1,Creative Building Set,2007,37,2
+6619-1,Red Four Wheel Driver,2000,91,20
+66193-1,City Super Pack (7890 7892 7902 7903),2007,60,0
+66194-1,City Super Pack (7246 7248 7905 7990),2007,56,0
+66195-1,City Super Pack (7238 7239 7241 7942 7945),2007,58,0
+6620-1,Ultimate Accessory Set 500,2006,346,507
+66207-1,Gift Set,2006,351,2
+66208-1,Mr. Magoriums big book (Mr. Magorium's Wonder Emporium),2007,23,9
+662-1,Dumper Lorry,1976,416,27
+6621-1,Fire Truck,1984,74,39
+6622-1,Mailman on Motorcycle,1984,81,30
+66221-1,X-wing Fighter and Luke Pilot Maquette Co-Pack (TRU Exclusive),2007,169,1
+66225-1,Gift Set,2007,389,2
+6623-1,Police Car,1983,80,40
+66237-1,Build & Play Value Pack,2008,37,2
+66239-1,City Super Pack 4 in 1 (7898 7997 7895 7896),2007,240,4
+6624-1,Delivery Van,1983,70,40
+66246-1,City Super Pack (7235 7245 7743),2008,61,3
+66247-1,City Super Pack (7741 7890 7942),2008,52,0
+6625-1,Speed Trackers,1996,80,65
+66255-1,City Super Pack 6 in 1 (7235 7236 7741 7890 7942 7945),2008,52,0
+66256-1,City Super Pack (7242 7733 7990 7991),2008,52,0
+66257-1,City Super Pack 4 in 1 (7235 7236 7741 7744),2008,61,4
+66258-1,City Super Pack (7990 7991 7993),2008,52,3
+66260-1,City Super Pack (7733 7734 7992),2008,54,3
+6626-1,Rescue Helicopter,1981,78,36
+6626-2,Snow Scooter,2000,51,20
+6627-1,Convertible,1980,85,37
+6628-1,Shell Tow Truck,1981,76,39
+6628-2,Construction Workers,1984,84,20
+66282-1,City Police Co-Pack,2008,61,2
+66284-1,LEGO Build and Play Value Pack,2009,37,2
+66290-1,City Super Pack 4 in 1 (4210 7736 7737 7738),2008,55,4
+6629-1,Ambulance,1981,78,39
+6630-1,Bucket Loader,1981,72,34
+66305-1,City Super Pack 3 in 1 (7235 7245 7743),2009,61,3
+66306-1,City Super Pack 3 in 1 (7736 7737 7738),2009,55,3
+66307-1,City Super Pack (7245 7732 8401),2009,52,3
+66308-1,Star Wars Super Pack 3 in 1 (7667 7668 8017),2009,169,3
+663-1,Hovercraft,1977,419,60
+6631-1,Steam Shovel,1985,72,48
+66311-1,LEGO Creative Value Pack (TRU Exclusive),2010,37,2
+66318-1,Technic Super Pack 4 in 1 (8259 8290 8293 8294),2009,7,4
+66319-1,Power Miners Super Pack 3 in 1 (8709 8958 8959),2009,439,3
+6632-1,Tactical Patrol Truck,1985,80,44
+66325-1,City Super Pack 4 in 1 (7898 7997 7895 7896),2009,240,4
+66326-1,City Super Pack 4 in 1 (7239 7245 8401 7638),2009,52,0
+66328-1,City Super Pack 6 in 1 (7630 5610 5612 5613 7942 7236),2009,52,0
+66329-1,City Super Pack 3 in 1 (7236 7741 7942),2009,52,3
+66330-1,City Super Pack 5 in 1 (7632 7746 7990 8401 5620),2009,52,5
+6633-1,Family Car,1985,85,46
+66331-1,City Super Pack 3 in 1 (7630 7633 7990),2009,56,3
+6634-1,Stock Car,1986,82,46
+66341-1,Star Wars Super Pack 3 in 1 (8014 8015 8091),2010,165,3
+66342-1,City Super Pack 3 in 1 (7213 7241 7942),2010,58,0
+66345-1,City Super Pack 4 in 1 (3177 7241 7634 7638),2010,52,0
+66357-1,City Super Pack 4 in 1 (7208 7239 7241 7942),2010,58,0
+66358-1,City Super Pack 3 in 1 (7634 7635 7684),2010,57,3
+66359-1,Technic Super Pack 4 in 1 (8049 8259 8260 8293),2010,1,4
+66360-1,City Super Pack 4 in 1 (7207 7213 7241 7942),2010,58,0
+6636-1,Police Headquarters,2002,100,291
+66362-1,City Super Pack 4 in 1 (3177 3179 8401 8402),2010,52,4
+66363-1,City Super Pack 4 in 1 (7235 7236 7245 7741),2010,61,4
+66364-1,Star Wars Super Pack 3 in 1 (7749 8083 8084),2010,169,3
+66365-1,Atlantis Super Pack 4 in 1 (8057 8058 8059 8080),2010,315,4
+66366-1,Star Wars Super Pack 3 in 1 (8089 8083 7749),2010,169,3
+66368-1,Star Wars Super Pack 3 in 1 (8083 8084 8092),2010,169,3
+6637-1,Ultimate Battle Set,2005,346,5
+66373-1,Fun Favor Pack,2010,22,0
+66374-1,City Super Pack 4 in 1 (7895 7896 7937 7939),2010,233,4
+66375-1,City Super Pack 4 in 1 (7235 7286 7279 7741),2011,61,4
+66377-1,Star Wars Super Pack 3 in 1 (7869 7913 7914),2011,165,3
+66378-1,Star Wars Super Pack 3 in 1 (8085 7913 7914),2011,165,3
+66380-1,LEGO Creative Value Pack (TRU UK Exclusive),2011,37,2
+6638-1,Ultimate Creatures Accessory Set (Special Edition) 300+ Pieces,2006,346,287
+66383-1,Ninjago Super Pack 3 in 1 (2258 2259 2519),2011,435,3
+66386-1,Cars 2 Super Pack 3 in 1 (8206 8426 8487),2011,269,3
+66387-1,Cars 2 Super Pack 3 in 1 (8200 8201 8206),2011,269,3
+66388-1,City Super Pack 4 in 1 (7498 7235 7279 7285),2011,61,4
+66389-1,City Super Pack 5 in 1 (7288 7279 7285 7286 7741),2011,61,5
+6639-1,Raven Racer,1995,82,70
+66392-1,"Duplo Cars Super Pack 3 in 1 (5816, 5817, 5818)",2012,506,-1
+66394-1,Ninjago Super Pack 3 in 1 (2506 2259 2260),2011,435,3
+66395-1,Star Wars Super Pack 3 in 1 (7957 7913 7914),2011,158,3
+66396-1,Star Wars Super Pack 3 in 1 (7877 7929 7913),2011,166,3
+66397-1,Technic Super Pack 4 in 1 (8047 8065 8067 8069),2011,1,4
+66404-1,"Hero Factory Super Pack 2 in 1 (2065, 2067)",2011,401,2
+66405-1,City Super Pack 4 in 1 (7939 7937 7499 7895),2010,233,4
+66409-1,Cars Super Pack 3 in 1 (9478 8201 9485),2012,269,3
+664-1,TV Crew,1977,397,47
+66410-1,"Ninjago Super Pack 3 in 1 (9440, 9441, 9444)",2012,435,3
+6641-1,4-Wheelin' Truck,1987,79,81
+66411-1,Star Wars Super Pack 3 in 1 (9488 9489 9495),2012,158,3
+66412-1,"City Super Pack 2 in 1 (7285, 7741)",2012,61,2
+66414-1,"Hero Factory Super Pack 2 in 1 (2143, 2145)",2012,401,2
+6642-1,Police Helicopter,1988,80,65
+66426-1,"City Super Pack 3 in 1 (4208, 4209, 4427)",2012,58,3
+66427-1,"City Super Pack 4 in 1 (4436, 4437, 4439, 4441)",2012,61,4
+66428-1,"City Super Pack 4 in 1 (4436, 7235, 7279, 7498)",2012,61,4
+6643-1,Fire Truck,1988,74,74
+66431-1,"Star Wars Super Pack 3 in 1 (7914, 9488, 9491)",2012,158,3
+66432-1,"Star Wars Super Pack 3 in 1 (9490, 9492, 9496)",2012,158,3
+66433-1,"Technic Super Pack 3 in 1 (8293, 9392, 9395)",2012,1,3
+66434-1,"Friends Super Pack 3 in 1 (3187, 3934, 3935)",2012,494,3
+66435-1,"Friends Super Pack 4 in 1 (3061, 3183, 3934, 3936)",2012,494,4
+66436-1,"City Super Pack 2 in 1 (4436, 4437)",2012,61,2
+66437-1,"Hero Factory Super Pack 2 in 1 (6216, 6293)",2012,400,2
+6644-1,Road Rebel,1990,85,72
+66444-1,"Ninjago Super Pack 3 in 1 (9441, 9442, 9591)",2012,435,3
+66448-1,"City Super Pack 3 in 1 (60000, 60001, 60002)",2013,58,3
+66449-1,"Star Wars Super Pack 3 in 1 (75000, 75003, 75014)",2013,158,3
+66450-1,"Legends of Chima Super Pack 3 in 1 (70000, 70001, 70003)",2013,571,3
+6645-1,Street Sweeper,1991,85,65
+66451-1,"City Super Pack 4 in 1 (4431, 4432, 4433, 4435)",2012,52,4
+66452-1,"Hero Factory Super Pack 2 in 1 (6282, 6283)",2012,400,2
+6646-1,Screaming Patriot,1991,82,65
+6647-1,Highway Repair,1980,85,54
+66479-1,"Super Pack 3 in 1 (75015, 75035, 75043)",2014,170,3
+6648-1,Mag Racer,1992,82,61
+6648-2,Dump Truck,1980,72,42
+6649-1,Street Sweeper,1995,85,63
+66491-1,"Legends of Chima Super Pack 5 in 1 (70126, 70128, 70129, 70130, 70131)",2014,571,5
+66492-1,"City Super Pack 3 in 1 (60041, 60042, 60046)",2014,61,3
+66493-1,"City Super Pack 4 in 1 (60050, 60052, 7499, 7895)",2014,66,4
+66495-1,"Star Wars Super Pack 3 in 1 (75037, 75038, 75045)",2014,170,3
+6650-1,Fire and Rescue Van,1981,74,46
+6651-1,Post Office Van,1982,81,46
+66512-1,"Star Wars Super Pack 2 in 1 (75048, 75053)",2014,182,2
+66514-1,"Star Wars Microfighters Super Pack 3 in 1 (75028, 75029, 75030)",2014,159,3
+66515-1,"Star Wars Microfighters Super Pack 3 in 1 (75031, 75032, 75033)",2014,159,3
+6652-1,Construction Truck,1983,72,44
+6653-1,Highway Emergency Van,1982,85,56
+6654-1,Motorcycle Transport,1983,85,54
+6655-1,Auto & Tire Repair,1984,85,58
+6656-1,Tow Truck,1985,85,53
+6657-1,Fire Patrol Copter,1985,74,66
+6658-1,Bulldozer,1986,72,65
+6659-1,TV Camera Crew,1986,79,66
+6660-1,Hook & Haul Wrecker,1989,79,52
+6661-1,Mobile TV Studio,1989,85,80
+6662-1,Backhoe,1992,72,87
+6663-1,Wave Rebel,1993,77,78
+6664-1,Chopper Cops,1993,80,71
+6665-1,River Runners,1994,83,77
+6666-1,Ambulance,1994,78,78
+6667-1,Pothole Patcher,1993,85,97
+6668-1,Recycle Truck,1992,85,108
+6669-1,Diesel Daredevil,1991,82,90
+6670-1,Rescue Rig,1993,85,114
+6671-1,Utility Repair Lift,1989,85,107
+6672-1,Safari Off-Road Vehicle,1990,79,67
+6673-1,Solo Trainer,1990,68,74
+6674-1,Crane Truck,1988,85,94
+6675-1,Road & Trail 4x4,1988,79,81
+6676-1,Mobile Command Unit,1986,80,99
+6677-1,Motocross Racing,1986,82,75
+6678-1,Pneumatic Crane,1980,72,61
+6679-1,Dark Shark,1991,77,82
+6679-2,Exxon Tow Truck,1980,85,78
+6680-1,Ambulance,1981,78,63
+6681-1,Police Van,1981,80,81
+6682-1,Cement Mixer,1985,72,90
+6683-1,Burger Stand,1983,75,68
+6684-1,Police Patrol Squad,1984,80,81
+6685-1,Fire Copter 1,1982,74,98
+6686-1,Backhoe,1984,72,88
+6687-1,Turbo Prop I,1987,68,78
+6688-1,Ambulance,1985,78,72
+6689-1,Post-Station,1985,81,54
+6690-1,Snorkel Pumper,1980,74,103
+6691-1,Red Cross Helicopter,1981,78,107
+6692-1,Tractor Trailer,1983,70,97
+6693-1,Refuse Collection Truck,1987,85,114
+6694-1,Car with Camper,1984,85,109
+6695-1,Shell Tanker,1984,76,106
+6696-1,Exxon Fuel Tanker,1984,76,106
+6697-1,Rescue-I Helicopter,1985,71,85
+6698-1,RV with Speedboat,1986,77,129
+6699-1,Cycle Fix-It Shop,1987,85,81
+670-1,Mobile Crane,1978,72,55
+6701-1,Minifig Pack,1983,143,36
+6702-1,Minifig Pack,1986,143,43
+6703-1,Minifig Pack,1988,143,42
+6704-1,Minifig Pack,1991,143,44
+6705-1,Space Explorers,1994,143,39
+6706-1,Frontier Patrol,1997,476,27
+6707-1,Green Buggy,2000,91,23
+6709-1,Tribal Chief,1997,477,16
+670F-1,Wheels Pack,2004,119,10
+6710-1,Space Landing Pads,1991,143,2
+671-1,Shell Fuel Tanker,1978,76,73
+6711-1,Space Mini-Figs,1983,143,24
+6712-1,Sheriff's Showdown,1996,476,28
+6713-1,Grip 'n' Go Challenge,2000,91,283
+6714-1,Speed Dragster,2000,91,80
+6716-1,Covered Wagon,1996,476,65
+6718-1,Raindance Ridge,1997,477,73
+6719-1,Brachiosaurus,2001,386,25
+671F-1,Antenna Pack,2004,119,13
+6720-1,Tyrannosaurus Rex,2001,386,23
+672-1,Fire Emergency Van,1978,74,65
+6721-1,Mosasaurus,2001,386,26
+6722-1,Styracosaurus,2001,386,19
+673-1,Rally Repair Crew,1978,85,60
+6731-1,Skateboarding Pepper,2002,407,13
+6732-1,Brickster's Trike,2002,407,17
+6733-1,Snap's Cruiser,2002,407,19
+6734-1,Beach Cruiser,2002,407,54
+6735-1,Air Chase,2002,407,85
+6736-1,Beach Lookout,2002,407,88
+6737-1,Wake Rider (Wave Catcher),2002,407,92
+6738-1,Skateboard Challenge,2002,407,116
+6739-1,Truck and Stunt Trikes,2002,407,198
+673F-1,Gearbox Pack,2004,119,6
+6740-1,Tower,2002,407,332
+674-1,Forklift & Truck,1978,72,55
+6741-1,Mini Jet,2009,24,63
+6742-1,Mini Off-Roader,2009,22,64
+6743-1,Street Speeder,2009,39,165
+6745-1,Propellor Power,2009,42,247
+6746-1,Chief's Tepee,1997,477,135
+6747-1,Race Rider,2009,41,266
+6748-1,Boulder Cliff Canyon,1997,477,256
+6750-1,Sonic Robot,1986,130,110
+675-1,Snack Bar,1979,75,64
+6751-1,Fiery Legend,2009,40,479
+6752-1,Fire Truck,2009,47,771
+6753-1,Highway Transport,2009,39,1294
+6754-1,Family Home,2009,43,978
+6755-1,Sheriff's Lock-Up,1996,476,177
+6758-1,Read & Build Grow Caterpillar Grow,2012,504,18
+6759-1,Read & Build Busy Farm,2012,504,16
+6760-1,Read & Build Let's Go Vroom,2012,504,13
+6761-1,Bandit's Secret Hide-Out,1996,476,249
+6762-1,Fort Legoredo,2002,476,687
+6763-1,Rapid River Village,2002,477,354
+6764-1,Sheriff's Lock-Up,2002,476,176
+6765-1,Gold City Junction,1996,476,351
+6766-1,Rapid River Village,1997,477,354
+6769-1,Fort Legoredo,1996,476,687
+6770-1,Lunar Transporter Patroller,1988,132,117
+677-1,Knight's Procession,1979,189,48
+6771-1,Ogel Command Striker,2001,304,29
+6772-1,Alpha Team Cruiser,2001,304,56
+6773-1,Alpha Team Helicopter,2001,304,78
+6774-1,Alpha Team ATV,2001,304,134
+6775-1,Alpha Team Bomb Squad,2001,304,191
+6776-1,Ogel Control Center,2001,304,414
+6780-1,XT Starship,1986,130,199
+6781-1,SP-Striker,1989,139,230
+6783-1,Sonar Transmitting Cruiser,1986,130,348
+6784-1,Creative Sorter,2012,504,26
+6785-1,Creative Cakes,2012,504,56
+6790-1,Bandit's Wheelgun (Boxed),1997,476,20
+6791-1,Bandit's Wheelgun,1997,476,20
+6799-1,Showdown Canyon,1997,476,74
+6800-1,Cyber Blaster,1997,144,20
+680-1,Low-Loader and Crane,1971,416,62
+6801-1,Moon Buggy,1981,130,22
+6802-1,Space Probe,1986,130,26
+6803-1,Space Patrol,1983,130,25
+6804-1,Surface Rover,1984,130,21
+6805-1,Astro Dasher,1985,130,29
+6806-1,Surface Hopper,1985,130,23
+6807-1,Space Sledge with Astronaut and Robot,1985,130,24
+6808-1,Galaxy Trekkor,1987,130,29
+6809-1,XT-5 and Droid,1988,130,37
+6810-1,Laser Ranger,1989,132,41
+681-1,Low-Loader with 4 Wheel Excavator,1971,416,63
+6811-1,Pulsar Charger,1990,136,26
+6812-1,Grid Trekkor,1991,129,25
+6813-1,Galactic Chief,1993,140,24
+6814-1,Ice Tunnelator,1993,133,25
+6815-1,Hovertron,1996,131,27
+6816-1,Cyber Blaster,1997,144,20
+6817-1,Beta Buzzer,1998,134,32
+6818-1,Cyborg Scout,1997,144,36
+6820-1,Starfire I,1986,130,34
+682-1,Low-Loader and Tractor,1971,416,57
+6821-1,Shovel Buggy,1980,130,28
+6822-1,Space Digger,1981,130,33
+6823-1,Surface Transport,1983,130,27
+6824-1,Space Dart I,1984,130,48
+6825-1,Cosmic Comet,1985,130,40
+6826-1,Crater Crawler,1985,130,32
+6827-1,Strata Scooter,1987,130,35
+6828-1,Twin-Winged Spoiler,1988,132,57
+6829-1,Radon Rover,1997,144,53
+6830-1,Space Patroller,1988,132,51
+683-1,Articulated Lorry,1971,423,58
+6831-1,Message Decoder,1989,139,34
+6832-1,Super Nova II,1991,129,42
+6833-1,Beacon Tracer,1990,136,40
+6834-1,Celestial Sled,1993,133,55
+6835-1,Saucer Scout,1994,142,47
+6836-1,V-Wing Fighter,1997,144,40
+6837-1,Cosmic Creeper,1998,134,57
+684-1,Low-Loader with Fork Lift Truck,1972,416,53
+6841-1,Mineral Detector,1980,130,44
+6842-1,Shuttle Craft,1981,130,46
+6844-1,Seismologic Vehicle (Sismobile),1983,130,46
+6845-1,Cosmic Charger,1986,130,51
+6846-1,Tri-Star Voyager,1984,130,69
+6847-1,Space Dozer,1985,130,49
+6848-1,Strategic Pursuer,1988,132,62
+6848-2,Interplanetary Shuttle,1985,130,54
+6848-3,Strategic Pursuer,1988,126,62
+6849-1,Satellite Patroller,1987,130,47
+6850-1,Auxiliary Patroller,1989,132,46
+685-1,Truck with Trailer,1972,397,50
+6851-1,Tri-Wheeled Tyrax,1991,129,38
+685-2,Truck with Trailer (without Stickers),1972,397,50
+6852-1,Sonar Security,1993,140,61
+6854-1,Alien Fossilizer,1996,131,51
+6856-1,Planetary Decoder,1996,131,78
+6857-1,The Dynamic Duo Funhouse Escape,2012,484,378
+6858-1,Catwoman Catcycle City Chase,2012,484,89
+6860-1,The Batcave,2012,484,689
+686-1,Tipper Trucks and Loader,1973,416,70
+6861-1,X1 Patrol Craft,1980,130,55
+6861-2,Super Model Building Instruction,1993,129,1
+6862-1,Secret Space Voyager,1991,136,254
+6862-2,Superman vs Power Armour Lex,2012,489,208
+6863-1,Batwing Battle Over Gotham City,2012,484,277
+6864-1,Batmobile and the Two-Face Chase,2012,484,541
+6865-1,Captain America's Avenging Cycle,2012,487,71
+6866-1,Wolverine's Chopper Showdown,2012,491,199
+6867-1,Loki's Cosmic Cube Escape,2012,487,180
+6868-1,Hulk’s Helicarrier Breakout,2012,487,385
+6869-1,Quinjet Aerial Battle,2012,487,748
+6870-1,Space Probe Launcher,1981,130,60
+687-1,Caravelle Plane,1973,412,48
+6871-1,Star Patrol Launcher,1984,130,71
+6872-1,Xenon X-Craft,1986,130,76
+6873-1,Spider-Man's Doc Ock Ambush,2012,488,295
+6874-1,Moon Rover,1986,130,66
+6875-1,Hovercraft,1988,132,93
+6876-1,Alienator,1988,128,92
+6877-1,Vector Detector,1990,136,62
+6878-1,Sub Orbital Guardian,1991,129,75
+6879-1,Blizzard Baron,1993,133,83
+6880-1,Surface Explorer,1982,130,83
+688-1,Shell Double Tanker,1973,418,63
+6881-1,Lunar Rocket Launcher,1984,130,98
+6882-1,Walking Astro Grappler,1985,130,102
+6883-1,Terrestrial Rover,1987,130,109
+6884-1,Aero Module,1987,132,107
+6885-1,Saturn Base Main Team (Crater Crawler),1988,132,101
+6886-1,Galactic Peace Keeper,1989,139,121
+6887-1,Allied Avenger,1991,129,100
+6889-1,Recon Robot,1994,142,136
+6890-1,Cosmic Cruiser,1982,130,115
+689-1,Mobile Crane,1974,416,46
+6891-1,Gamma V Laser Craft,1985,130,135
+6892-1,Modular Space Transport,1986,130,150
+6893-1,Orion II Hyperspace,1987,132,162
+6894-1,Invader,1987,128,159
+6895-1,Spy-Trak 1,1989,139,152
+6896-1,Celestial Forager,1990,136,92
+6897-1,Rebel Hunter,1992,140,146
+6898-1,Ice-Sat V,1993,133,136
+6899-1,Nebula Outpost,1996,131,156
+6900-1,Cyber Saucer,1997,144,112
+690-1,Shell Station,1974,418,73
+6901-1,Mobile Lab,1980,130,139
+6901-2,Space Plane,1998,144,20
+6902-1,Space Plane,1998,144,20
+6903-1,Bug Blaster,1998,134,24
+6905-1,Bi-Wing Blaster,1998,134,112
+6907-1,Sonic Stinger,1998,134,95
+6909-1,Sonic Stinger with Promotional Mask,1998,134,96
+6910-1,Mini Sports Car,2012,22,70
+691-1,Rescue Helicopter,1974,417,62
+6911-1,Mini Fire Truck,2012,22,69
+6912-1,Super Soarer,2012,22,130
+6913-1,Blue Roadster,2012,22,152
+6914-1,T-Rex,2012,22,191
+6915-1,Warp Wing Fighter,1997,144,234
+6918-1,Blacksmith Attack,2011,196,110
+6919-1,Planetary Prowler,1998,134,248
+692-1,Road Repair Crew,1975,416,59
+6921-1,Monorail Accessory Track,1988,132,46
+6923-1,Particle Ionizer,1990,136,192
+6925-1,Interplanetary Rover,1988,132,211
+6926-1,Mobile Recovery Vehicle,1986,130,150
+6927-1,All-Terrain Vehicle,1981,130,173
+6928-1,Uranium Search Vehicle,1984,130,201
+6929-1,Star Fleet Voyager,1981,130,246
+6930-1,Space Supply Station,1983,130,206
+693-1,Fire Engine with Firemen,1975,417,72
+6931-1,FX Star Patroller,1985,130,227
+6932-1,Stardefender 200,1987,132,251
+6933-1,Spectral Starguider,1991,129,212
+6934-1,BIONICLE Good Guy Polybag (Disney Promotional Sweden),2006,324,16
+6935-1,BIONICLE Bad Guy (Disney Promotional Sweden),2006,324,16
+6936-1,Piraka & Catapult,2007,324,20
+6937-1,Give Away,2006,324,2
+6938-1,Scorpion Detector,1996,131,196
+6939-1,Saucer Centurion,1994,142,222
+6940-1,Alien Moon Stalker,1986,130,268
+694-1,Transport Truck,1975,397,64
+6941-1,Battrax,1987,128,284
+6942-1,Zo Weevil,1999,134,20
+6943-1,Zo Weevil,1999,134,20
+6944-1,Good Guy 07,2007,324,20
+6945-1,Bad Guy,2007,324,25
+6946-1,Squid Launcher Function,2007,324,23
+6949-1,Robo-Guardian,1994,142,366
+6950-1,Mobile Rocket Transport,1982,130,210
+695-1,Racing Car,1976,397,67
+6951-1,Robot Command Center,1984,130,295
+6952-1,Solar Power Transporter,1985,130,305
+6953-1,Cosmic Laser Launcher,1987,132,211
+6954-1,Renegade,1987,128,315
+6955-1,Space Lock-Up Isolation Base,1989,139,253
+6956-1,Stellar Recon Voyager,1990,136,233
+6957-1,Solar Snooper,1992,140,253
+6958-1,Android Base,1996,131,268
+6959-1,Lunar Launch Site,1994,142,287
+696-1,Bus Stop,1976,397,80
+6963-1,X-wing Fighter - Mini (Kabaya Box),2004,159,41
+6963-2,X-wing Fighter - Mini (Polybag),2004,159,41
+6964-1,Boba Fett's Slave I - Mini (Kabaya Box),2004,159,25
+6964-2,Boba Fett's Slave I - Mini (Polybag),2004,159,25
+6965-1,TIE Interceptor - Mini (Kabaya Box),2004,159,32
+6965-2,TIE Interceptor - Mini (Polybag),2005,163,32
+6966-1,Jedi Starfighter - Mini,2005,159,38
+6966-2,Jedi Starfighter - Mini - Korean Duracell promo package with 8 AA batteries,2005,159,38
+6967-1,ARC-170 Starfighter - Mini,2005,159,42
+6967-2,ARC-170 Starfighter - Mini - Korean Duracell promo package with 8 AA batteries,2005,159,42
+6968-1,Mini Wookiee Attack,2005,159,48
+6969-1,Celestial Stinger,1998,134,253
+6970-1,Beta I Command Base,1980,130,270
+697-1,Stagecoach,1976,397,96
+6971-1,Inter-Galactic Command Base,1984,130,329
+697-2,Idea Book 697,1997,497,2
+6972-1,Polaris I Space Lab,1987,130,390
+6973-1,Deep Freeze Defender,1993,133,417
+6975-1,Alien Avenger,1997,144,370
+6977-1,Arachnoid Star Base,1998,134,434
+6979-1,Interstellar Starfighter,1997,144,291
+6980-1,Galaxy Commander,1983,130,443
+698-1,JAL Boeing 727,1977,412,45
+6981-1,Aerial Intruder,1991,129,267
+6982-1,Explorien Starship,1996,131,658
+6983-1,Ice Station Odyssey,1993,133,345
+6984-1,Galactic Mediator,1992,140,406
+6985-1,Cosmic Fleet Voyager,1986,130,413
+6986-1,Mission Commander,1989,139,478
+6987-1,Message Intercept Base,1988,128,577
+6987-2,Message Intercept Base,1988,128,575
+6988-1,Alpha Centauri Outpost,1991,129,406
+6989-1,Mega Core Magnetizer,1990,136,509
+6990-1,Monorail Transport System,1988,132,731
+699-1,Photo Safari,1977,397,129
+6991-1,Monorail Transport Base,1994,145,571
+6999-1,Cyber Saucer,1997,144,113
+70000-1,Razcal's Glider,2013,571,108
+7000-1,Baby Ankylosaurus,2001,386,37
+70001-1,Crawley’s Claw Ripper,2013,571,138
+70002-1,Lennox' Lion Attack,2013,571,229
+70003-1,Eris' Eagle Interceptor,2013,571,347
+70004-1,Wakz' Pack Tracker,2013,571,295
+70005-1,Laval's Royal Fighter,2013,571,416
+70006-1,Cragger’s Command Ship,2013,571,607
+70007-1,Eglor's Twin Bike,2013,571,224
+70008-1,Gorzan’s Gorilla Striker,2013,571,503
+70009-1,Worriz’s Combat Lair,2013,571,657
+700-1,10 x 20 Brickplate,1966,371,6
+70010-1,The Lion CHI Temple,2013,571,1257
+7001-1,Baby Iguanodon,2001,386,23
+700.1.1-1,Individual 2 x 4 Bricks,1950,371,10
+70011-1,Eagles’ Castle,2013,572,372
+700.1-2,Gift Package,1957,366,0
+700.1.2-1,Individual 2 x 2 Bricks,1950,371,9
+70012-1,Rubber Bands,1985,453,20
+70012-2,Razar’s CHI Raider,2013,571,412
+70013-1,Equila's Ultra Striker,2013,571,340
+700.1.4-1,Individual 1 x 2 Bricks,1953,371,1
+70014-1,The Croc Swamp Hideout,2013,571,645
+700.16-1,Individual 2 x 8 Bricks,1954,371,5
+700.20-1,Individual 2 x 10 Bricks,1954,371,5
+7002-1,Baby Brachiosaurus,2001,386,31
+700.2-2,Gift Package,1957,366,0
+700.24-1,Individual 2 x 12 Bricks,1954,371,5
+700.28-1,Individual 2 x 14 Bricks,1954,371,5
+7003-1,Baby Dimetrodon,2001,386,20
+700.3.4-1,Individual 2 x 3 Bricks,1953,371,5
+700.3A-2,Gift Package,1957,372,0
+7009-1,The Final Joust,2007,193,62
+700.A-1,Automatic Binding Bricks Small Brick Set (Lego Mursten),1950,366,24
+700.B-1,Early LEGO Windows/Doors (without Glass),1953,371,12
+700.B.1-1,Individual 1 x 4 x 2 Window (without glass),1950,371,7
+700.B.2-1,Individual 1 x 2 x 3 Window (without glass),1950,371,7
+700.B.3-1,Individual 1 x 2 x 2 Window (without glass),1950,371,7
+700.B.4-1,Individual 1 x 2 x 4 Door (without glass),1950,371,7
+700.C-1,Tall Classic Windows/Door (with Glass),1954,371,24
+700.C.1-1,Individual 1 x 6 x 4 Panorama Window (with glass),1954,371,4
+700.C.2-1,Individual 1 x 6 x 3 3-Pane Window (with glass),1954,371,4
+700.C.3-1,Individual 1 x 6 x 3 Shutter Window (with glass),1954,371,4
+700.C.4-1,Individual 1 x 4 x 3 Window (with glass),1954,371,4
+700.C.5-1,Individual 1 x 3 x 3 Window (with glass),1954,371,4
+700.C.6-1,Individual 1 x 2 x 4 Door (with glass),1954,371,4
+700.F-1,Automatic Binding Bricks - Small Brick Set (Lego Mursten),1953,371,48
+700GP0-1,Gift Package,1957,372,244
+700GP5-1,Gift Package (Lego Mursten),1954,372,54
+700GP6-1,Gift Package (Lego Mursten),1954,372,46
+700GP6-2,Gift Package,1957,372,46
+700.H-1,Individual 4 x 4 Corner Bricks,1954,371,5
+700K-1,Kindergarten LEGO Set,1960,513,476
+700L-1,Empty Kindergarten LEGO Box,1961,513,1
+70100-1,Ring of Fire,2013,572,78
+70101-1,Target Practice,2013,572,101
+70102-1,CHI Waterfall,2013,572,106
+70103-1,Boulder Bowling,2013,572,93
+70104-1,Jungle Gates,2013,572,81
+70105-1,Nest Dive,2013,572,97
+70106-1,Ice Tower,2013,572,101
+70107-1,Skunk Attack,2013,572,97
+70108-1,Royal Roost,2013,572,100
+70109-1,Whirling Vines,2013,572,77
+701-1,Hinges,1984,443,3
+70110-1,Tower Target,2013,572,86
+70111-1,Swamp Jump,2013,572,86
+70112-1,Croc Chomp,2013,572,100
+70113-1,CHI Battles,2013,572,92
+70114-1,Sky Joust,2013,572,117
+70115-1,Ultimate Speedor Tournament,2013,572,236
+70123-1,Lion Legend Beast,2014,574,119
+70124-1,Eagle Legend Beast,2014,574,103
+70125-1,Gorilla Legend Beast,2014,574,107
+70126-1,Crocodile Legend Beast,2014,574,120
+70127-1,Wolf Legend Beast,2014,574,109
+70128-1,Braptor's Wing Striker,2014,571,145
+70129-1,Lavertus' Twin Blade,2014,571,181
+701-3,Hinges,1986,443,6
+70130-1,Sparratus' Spider Stalker,2014,571,291
+70131-1,Rogon's Rock Flinger,2014,571,256
+70132-1,Scorm's Scorpion Stinger,2014,571,433
+70133-1,Spinlyn's Cavern,2014,571,406
+70134-1,Lavertus’ Outland Base,2014,571,681
+70135-1,Cragger's Fire Striker,2014,571,379
+70136-1,Banana Bash,2014,572,115
+70137-1,Bat Strike,2014,572,91
+70138-1,Web Dash,2014,571,69
+70139-1,Sky Launch,2014,572,106
+70140-1,Stinger Duel,2014,572,75
+70141-1,Vardy's Ice Vulture Glider,2014,571,216
+70142-1,Eris' Fire Eagle Flyer,2014,571,329
+70143-1,Sir Fangar's Sabre-Tooth Walker,2014,571,414
+70144-1,Laval's Fire Lion,2014,571,448
+70145-1,Maula’s Ice Mammoth Stomper,2014,571,598
+70146-1,Flying Phoenix Fire Temple,2014,571,1299
+70147-1,Sir Fangar’s Ice Fortress,2014,571,670
+70149-1,Scorching Blades,2014,572,72
+70150-1,Flaming Claws,2014,572,69
+7015-1,Viking Warrior challenges the Fenris Wolf,2005,474,76
+70151-1,Frozen Spikes,2014,572,72
+70155-1,Inferno Pit,2014,572,69
+70156-1,Fire vs. Ice,2014,572,92
+70160-1,Riverside Raid,2014,303,88
+7016-1,Viking Boat against the Wyvern Dragon,2005,474,111
+70161-1,Tremor Track Infiltration,2014,303,240
+70162-1,Infearno Interception,2014,303,311
+70163-1,Toxikita's Toxic Meltdown,2014,303,428
+70164-1,Hurricane Heist,2014,303,586
+70165-1,Ultra Agents Mission HQ,2014,303,1056
+70166-1,Spyclops Infiltration,2015,303,108
+70167-1,Invizable Gold Getaway,2015,303,236
+70168-1,Drillex Diamond Job,2015,303,311
+70169-1,4x4 Agent Patrol,2015,303,473
+70170-1,UltraCopter vs. AntiMatter,2015,303,611
+7017-1,Viking Catapult versus the Nidhogg Dragon,2005,474,224
+70171-1,Ultrasonic Showdown,2015,303,184
+70172-1,AntiMatter’s Portal Hideout,2015,303,472
+70173-1,Ultra Agents Ocean HQ,2015,303,1201
+7018-1,Viking Ship challenges the Midgard Serpent,2005,474,581
+7019-1,Viking Fortress against the Fafnir Dragon,2005,474,1040
+70200-1,CHI Laval,2013,573,55
+7020-1,Army of Vikings with Heavy Artillery Wagon,2006,474,270
+70201-1,CHI Eris,2013,573,67
+70202-1,CHI Gorzan,2013,573,58
+70203-1,CHI Cragger,2013,573,65
+70204-1,CHI Worriz,2013,573,55
+70205-1,CHI Razar,2013,573,68
+70206-1,CHI Laval,2014,573,49
+70207-1,CHI Cragger,2014,573,58
+70208-1,CHI Panthar,2014,573,59
+70209-1,CHI Mungus,2014,573,64
+702-1,12V Motor with Accessories Pack,1969,242,25
+70210-1,CHI Vardy,2014,573,68
+7021-1,Viking Double Catapult versus the Armored Ofnir Dragon,2006,474,486
+70211-1,CHI Fluminox,2014,573,91
+70212-1,CHI Sir Fangar,2014,573,97
+70220-1,Strainor's Saber Cycle,2015,571,160
+70221-1,Flinx's Ultimate Phoenix,2015,571,172
+70222-1,Tormak's Shadow Blazer,2015,571,310
+70223-1,Icebite's Claw Driller,2015,571,628
+70224-1,Tiger’s Mobile Command,2015,571,710
+70225-1,Bladvic's Rumble Bear,2015,571,414
+70226-1,Mammoth’s Frozen Stronghold,2015,571,619
+70227-1,King Crominus’ Rescue,2015,571,861
+70228-1,Vultrix's Sky Scavenger,2015,571,479
+70229-1,Lion Tribe Pack,2015,571,78
+702-3,Motor Wires,1984,443,2
+70230-1,Ice Bear Tribe Pack,2015,571,75
+70231-1,Crocodile Tribe Pack,2015,571,72
+70232-1,Sabre Tooth Tiger Pack,2015,571,74
+7029-1,Skeleton Ship Attack,2007,193,629
+7030-1,Squad Car,2003,111,51
+703-1,12V Replacement Electric Motor,1969,242,1
+70310-1,Knighton Battle Blaster,2016,605,76
+7031-1,Helicopter,2003,111,87
+70311-1,Chaos Catapult,2016,605,93
+70312-1,Lance's Mecha Horse,2016,605,237
+70313-1,Moltor's Lava Smasher,2016,605,187
+70314-1,Beast Master's Chaos Chariot,2016,605,311
+70315-1,Clay's Rumble Blade,2016,605,366
+70316-1,Jestro’s Evil Mobile,2016,605,658
+70317-1,The Fortrex,2016,605,1134
+70318-1,The Glob Lobber,2016,605,95
+70319-1,Macy's Thunder Mace,2016,605,201
+70320-1,Aaron Fox's Aero-Striker V2,2016,605,301
+7032-1,Highway Patrol & Undercover Van,2003,111,153
+70321-1,General Magmar's Siege Machine of Doom,2016,605,514
+70322-1,Axl’s Tower Carrier,2016,605,668
+70323-1,Jestro’s Volcano Lair,2016,605,1184
+70324-1,Merlok's Library 2.0,2016,605,287
+70325-1,Infernox captures the Queen,2016,605,251
+70326-1,The Black Knight Mech,2016,605,529
+70327-1,The King's Mech,2016,605,354
+703-3,Battery Box,1984,443,1
+70330-1,ULTIMATE Clay,2016,605,72
+7033-1,Armored Car Action,2003,111,179
+70331-1,Ultimate Macy,2016,605,101
+70332-1,Ultimate Aaron,2016,605,82
+70333-1,Ultimate Robin,2016,605,75
+70334-1,Ultimate Beast Master,2016,605,65
+70335-1,Ultimate Lavaria,2016,605,69
+70336-1,Ultimate Axl,2016,605,69
+70337-1,Ultimate Lance,2016,605,75
+70338-1,Ultimate General Magmar,2016,605,64
+70339-1,Ultimate Flama,2016,605,68
+7034-1,Surveillance Truck,2003,111,260
+70347-1,King's Guard Artillery,2017,605,98
+70348-1,Lance's Twin Jouster,2017,605,215
+70349-1,Ruina's Lock & Roller,2017,605,200
+70350-1,The Three Brothers,2017,605,266
+7035-1,Police HQ,2003,111,422
+70351-1,Clay's Falcon Fighter Blaster,2017,605,520
+70352-1,Jestro's Headquarters,2017,605,816
+70353-1,The Heligoyle,2017,605,312
+70354-1,Axl's Rumble Maker,2017,605,389
+70355-1,Aaron's Rock Climber,2017,605,594
+70356-1,The Stone Colossus of Ultimate Destruction,2017,605,775
+70357-1,Knighton Castle,2017,605,1415
+70358-1,Aaron's Stone Destroyer,2017,605,245
+70359-1,Lance vs. lightning,2017,605,252
+7036-1,Dwarves' Mine,2008,193,569
+70361-1,Macy's Bot Drop Dragon,2017,605,151
+70362-1,Battle Suit Clay,2017,605,79
+70363-1,Battle Suit Macy,2017,605,66
+70364-1,Battle Suit Aaron,2017,605,80
+70365-1,Battle Suit Axl,2017,605,87
+70366-1,Battle Suit Lance,2017,605,83
+7037-1,Tower Raid,2008,193,364
+70372-1,Combo NEXO Powers Wave 1,2017,605,5
+7038-1,Troll Assault Wagon,2008,193,161
+70400-1,Forest Ambush,2013,186,90
+7040-1,Dwarves' Mine Defender,2008,193,86
+70401-1,Gold Getaway,2013,186,200
+70402-1,The Gatehouse Raid,2013,186,247
+70403-1,Dragon Mountain,2013,186,380
+70404-1,King’s Castle,2013,186,999
+70409-1,Shipwreck Defense,2015,154,84
+704-1,12V Sleeper (Track) Contacts for Old Motor Type I and II,1969,242,2
+70410-1,Soldiers Outpost,2015,154,164
+7041-1,Troll Battle Wheel,2008,193,505
+70411-1,Treasure Island,2015,154,181
+70412-1,Soldiers Fort,2015,154,234
+70413-1,The Brick Bounty,2015,154,743
+7042-1,Dune Patrol,2004,107,37
+7043-1,Firefighter,2004,108,68
+704-4,Replacement Motor,1984,443,1
+7044-1,Rescue Chopper,2004,107,205
+7045-1,Hovercraft Hideout,2003,110,273
+7046-1,Fire Command Craft,2004,108,271
+7047-1,Coast Watch HQ,2003,107,366
+7048-1,Troll Warship,2008,193,490
+7049-1,Alien Striker,2011,127,42
+70500-1,Kai's Fire Mech,2013,435,101
+7050-1,Alien Defender,2011,127,104
+70501-1,Samurai Bike,2013,435,210
+70502-1,Cole's Power Drill,2013,435,170
+70503-1,Golden Dragon,2013,435,253
+70504-1,Garmatron,2013,435,327
+70505-1,Temple of Light,2013,435,563
+705-1,Motor Bushings,1969,242,4
+7051-1,Tripod Invader,2011,127,165
+7052-1,UFO Abduction,2011,127,210
+705-4,Digger Bucket,1984,443,3
+70588-1,Titanium Ninja Tumbler,2016,435,336
+70589-1,Rock Roader,2016,435,406
+70590-1,Airjitzu Battle Grounds,2016,436,652
+70591-1,Kryptarium Prison Breakout,2016,435,202
+70592-1,Salvage M.E.C.,2016,435,439
+70593-1,The Green NRG Dragon,2016,435,560
+70594-1,The Lighthouse Siege,2016,435,761
+70595-1,Ultra Stealth Raider,2016,435,1076
+70596-1,Samurai X Cave Chaos,2016,435,1233
+70599-1,Cole's Dragon,2016,435,97
+70600-1,Ninja Bike Chase,2016,435,231
+70601-1,Sky Shark,2016,435,221
+70602-1,Jay’s Elemental Dragon,2016,435,350
+70603-1,Raid Zeppelin,2016,435,293
+70604-1,Tiger Widow Island,2016,435,411
+70605-1,Misfortune’s Keep,2016,435,753
+70606-1,Spinjitzu Training,2017,616,102
+70607-1,City Chase,2017,616,218
+70608-1,Master Falls,2017,616,306
+70609-1,Manta Ray Bomber,2017,616,330
+706-1,12V Rail Contact Wire with Transformer Connector,1969,242,1
+70610-1,Flying Jelly Sub,2017,616,323
+70611-1,Water Strider,2017,616,479
+70612-1,Green Ninja Mech Dragon,2017,616,524
+70613-1,Garma Mecha Man,2017,616,734
+70614-1,Lightning Jet,2017,616,859
+70615-1,Fire Mech,2017,616,921
+70616-1,Ice Tank,2017,616,900
+70617-1,Temple of The Ultimate Ultimate Weapon,2017,616,1380
+70618-1,Destiny's Bounty,2017,616,2292
+70620-1,NINJAGO® City,2017,616,4812
+70621-1,The Vermillion Attack,2017,435,83
+70622-1,Desert Lightning,2017,435,193
+70623-1,Destiny's Shadow,2017,435,345
+70624-1,Vermillion Invader,2017,435,304
+70625-1,Samurai VXL,2017,435,414
+70626-1,Dawn of Iron Doom,2017,435,682
+70627-1,Dragon's Forge,2017,435,1117
+706-3,12V Rail Contact Wire with Transformer Connector with Cap,1974,242,1
+706-4,Crane Grab Assembly,1984,443,3
+7065-1,Alien Mothership,2011,127,415
+7066-1,Earth Defense HQ,2011,127,877
+7067-1,Jet-Copter Encounter,2011,127,373
+70700-1,Space Swarmer,2013,146,86
+7070-1,Catapult Raft,2004,286,23
+70701-1,Swarm Interceptor,2013,146,217
+70702-1,Warp Stinger,2013,146,307
+70703-1,Star Slicer,2013,146,311
+70704-1,Vermin Vaporizer,2013,146,504
+70705-1,Bug Obliterator,2013,146,709
+70706-1,Crater Creeper,2013,146,172
+70707-1,CLS-89 Eradicator Mech,2013,146,439
+70708-1,Hive Crawler,2013,146,558
+70709-1,Galactic Titan,2013,146,1010
+707-1,Tile Brick Assortment,1984,443,50
+7071-1,Treasure Island,2004,286,30
+70720-1,Hover Hunter,2014,435,79
+7072-1,Captain Kragg's Pirate Boat,2004,286,41
+70721-1,Kai Fighter,2014,435,195
+70722-1,OverBorg Attack,2013,435,208
+70723-1,Thunder Raider,2014,435,333
+70724-1,NinjaCopter,2014,435,514
+70725-1,Nindroid MechDragon,2014,435,689
+70726-1,Destructoid,2014,435,252
+70727-1,X-1 Ninja Charger,2014,435,425
+70728-1,Battle for Ninjago City,2014,435,1216
+70730-1,Chain Cycle Ambush,2015,435,298
+7073-1,Pirate Dock,2004,286,63
+70731-1,Jay Walker One,2015,435,385
+70732-1,City of Stiix,2015,435,1067
+70733-1,Blaster Bike,2015,435,211
+70734-1,Master Wu Dragon,2015,435,575
+70735-1,Ronin R.E.X.,2015,435,545
+70736-1,Attack of the Morro Dragon,2015,435,655
+70737-1,Titan Mech Battle,2015,435,749
+70738-1,Final Flight of Destiny’s Bounty,2015,435,1256
+70739-1,Airjitzu Kai Flyer,2015,436,47
+70740-1,Airjitzu Jay Flyer,2015,436,46
+7074-1,Skull Island,2004,286,81
+70741-1,Airjitzu Cole Flyer,2015,436,48
+70742-1,Airjitzu Zane Flyer,2015,436,43
+70743-1,Airjitzu Morro Flyer,2015,436,47
+70744-1,Airjitzu Wrayth Flyer,2015,436,43
+70745-1,Anacondrai Crusher,2015,435,218
+70746-1,Condrai Copter Attack,2015,435,310
+70747-1,Boulder Blaster,2015,435,234
+70748-1,Titanium Dragon,2015,435,360
+70749-1,Enter the Serpent,2015,435,527
+70750-1,Ninja DB X,2015,435,754
+7075-1,Captain Redbeard's Pirate Ship,2004,286,139
+70751-1,Temple of Airjitzu,2015,435,2028
+7075-2,Captain Redbeard's Pirate Ship - Limited Edition with Motor,2004,286,2
+70752-1,Jungle Trap,2015,435,58
+70753-1,Lava Falls,2015,435,94
+70754-1,Jay's Electromech,2015,435,152
+70755-1,Jungle Raider,2015,435,187
+70756-1,Dojo Showdown,2015,435,214
+70778-1,Protector of Jungle,2015,360,70
+70779-1,Protector of Stone,2015,360,73
+70780-1,Protector of Water,2015,360,71
+7078-1,King's Battle Chariot,2009,193,103
+70781-1,Protector of Earth,2015,360,66
+70782-1,Protector of Ice,2015,360,68
+70783-1,Protector of Fire,2015,360,69
+70784-1,Lewa - Master of Jungle,2015,362,85
+70785-1,Pohatu - Master of Stone,2015,362,66
+70786-1,Gali - Master of Water,2015,362,87
+70787-1,Tahu - Master of Fire,2015,362,89
+70788-1,Kopaka - Master of Ice,2015,362,96
+70789-1,Onua - Master of Earth,2015,362,107
+70790-1,Lord of Skull Spiders,2015,361,145
+7079-1,Drawbridge Defense,2009,193,337
+70791-1,Skull Warrior,2015,324,99
+70792-1,Skull Slicer,2015,324,71
+70793-1,Skull Basher,2015,324,72
+70794-1,Skull Scorpio,2015,324,107
+70795-1,Mask Maker vs. Skull Grinder,2015,324,165
+70800-1,Escape Glider,2014,578,104
+7080-1,Scurvy Dog and Crocodile,2004,286,7
+70801-1,Melting Room,2014,578,122
+70802-1,Bad Cop's Pursuit,2014,578,313
+70803-1,Cloud Cuckoo Palace,2014,578,197
+70804-1,Ice Cream Machine,2014,578,343
+70805-1,Trash Chomper,2014,578,388
+70806-1,Castle Cavalry,2014,578,423
+70807-1,Metal Beard's Duel,2014,578,411
+70808-1,Super Cycle Chase,2014,578,513
+70809-1,Lord Business’ Hideout,2014,578,737
+708-1,12V Extension Cord Pack,1970,242,3
+70810-1,MetalBeard’s Sea Cow,2014,578,2741
+7081-1,Harry Hardtack and Monkey,2004,286,10
+70811-1,The Flying Flusher,2014,578,350
+70812-1,Creative Ambush,2014,578,474
+70813-1,Rescue Reinforcements,2014,578,857
+70814-1,Emmet’s Constructo-Mech,2014,578,705
+70815-1,Super Secret Police Dropship,2014,578,852
+70816-1,"Benny’s Spaceship, Spaceship, SPACESHIP!",2014,578,933
+70817-1,Batman & Super Angry Kitty Attack,2015,578,115
+70818-1,Double-Decker Couch,2015,578,197
+70819-1,Bad Cop Car Chase,2015,578,291
+7082-1,Cannonball Jimmy and Shark,2004,286,7
+708-3,Angle Brick / Landing Frame,1984,443,8
+70900-1,The Joker Balloon Escape,2017,484,123
+7090-1,Crossbow Attack,2007,193,54
+70901-1,Mr. Freeze Ice Attack,2017,484,197
+70902-1,Catwoman Catcycle Chase,2017,484,138
+70903-1,The Riddler Riddle Racer,2017,484,253
+70904,Clayface Splat Attack,2017,484,0
+70904-1,"Clayface"" Splat Attack",2017,484,448
+70905-1,The Batmobile,2017,484,580
+70906,LEGO® Batman Movie - The Joker™ Notorious Lowrider,2017,484,0
+70906-1,"The Joker"" Notorious Lowrider",2017,484,431
+70907-1,Killer Croc Tail-Gator,2017,484,459
+70908-1,The Scuttler,2017,484,774
+70909-1,Batcave Break-in,2017,484,1042
+709-1,Police Boat,1978,363,48
+70910-1,"Scarecrow"" Special Delivery",2017,484,203
+7091-1,Knights' Catapult Defense,2007,193,123
+70911-1,The Penguin™ Arctic Roller,2017,484,304
+70912-1,Arkham Asylum,2017,484,1621
+70913-1,"Scarecrow"" Fearful Face-off",2017,484,140
+70914-1,"Bane"" Toxic Truck Attack",2017,484,365
+70915-1,"Two-Face"" Double Demolition",2017,484,563
+70916-1,The Batwing,2017,484,1052
+70917-1,The Ultimate Batmobile,2017,484,1453
+709-2,Axle Assortment,1984,453,36
+7092-1,Skeletons' Prison Carriage,2007,193,193
+7093-1,Skeleton Tower,2007,193,401
+7094-1,King's Castle Siege,2007,193,921
+7097-1,Trolls' Mountain Fortress,2009,193,843
+7099-1,Accessory Motor for Boats,2004,289,1
+71000-0,Minifigure Series 9 [Random Bag],2013,544,0
+71000-1,Waiter - Complete Set,2013,544,7
+71000-10,Judge - Complete Set,2013,544,7
+71000-11,Alien Avenger - Complete Set,2013,544,7
+71000-12,Mermaid - Complete Set,2013,544,6
+71000-13,Battle Mech - Complete Set,2013,544,6
+71000-14,Mr. Good and Evil - Complete Set,2013,544,6
+71000-15,Forest Maiden - Complete Set,2013,544,7
+71000-16,Plumber - Complete Set,2013,544,6
+71000-17,Minifigures Series 9 - Complete,2013,544,16
+71000-18,Minifigure Series 9 (Box of 60),2013,544,60
+71000-2,Cyclops - Complete Set,2013,544,6
+71000-3,Hollywood Starlet - Complete Set,2013,544,6
+71000-4,Heroic Knight - Complete Set,2013,544,10
+71000-5,Roman Emperor - Complete Set,2013,544,6
+71000-6,Policeman - Complete Set,2013,544,7
+71000-7,Chicken Suit Guy - Complete Set,2013,544,5
+71000-8,Roller Derby Girl - Complete Set,2013,544,7
+71000-9,Fortune Teller - Complete Set,2013,544,7
+7100-1,Samsonite Large Educational Set,1963,523,0
+71001-0,Minifigure Series 10 [Random Bag],2013,545,0
+71001-1,Librarian - Complete Set,2013,545,7
+71001-10,Sea Captain - Complete Set,2013,545,7
+71001-11,Sad Clown - Complete Set,2013,545,6
+71001-12,Revolutionary Soldier - Complete Set,2013,545,6
+71001-13,Baseball Fielder - Complete Set,2013,545,5
+71001-14,Trendsetter - Complete Set,2013,545,7
+71001-15,Painter - Complete Set,2013,545,9
+71001-16,Motorcycle Mechanic - Complete Set,2013,545,6
+71001-17,Minifigures Series 10 - Complete (except Mr. Gold),2013,545,16
+71001-18,Minifigure Series 10 (Box of 60),2013,545,60
+71001-19,Mr. Gold - Complete Set,2013,545,5
+71001-2,Medusa - Complete Set,2013,545,5
+71001-3,Roman Commander - Complete Set,2013,545,8
+71001-4,Warrior Woman - Complete Set,2013,545,7
+71001-5,Tomahawk Warrior - Complete Set,2013,545,6
+71001-6,Skydiver - Complete Set,2013,545,6
+71001-7,Bumblebee Girl - Complete Set,2013,545,7
+71001-8,Grandpa - Complete Set,2013,545,7
+71001-9,Paintball Player - Complete Set,2013,545,7
+71002-0,Minifigure Series 11 [Random Bag],2013,547,0
+71002-1,Barbarian - Complete Set,2013,547,7
+71002-10,Welder - Complete Set,2013,547,7
+71002-11,Scientist - Complete Set,2013,547,7
+71002-12,Saxophone Player - Complete Set,2013,547,6
+71002-13,Diner Waitress - Complete Set,2013,547,10
+71002-14,Grandma - Complete Set,2013,547,7
+71002-15,Constable - Complete Set,2013,547,6
+71002-16,Lady Robot - Complete Set,2013,547,6
+71002-17,LEGO Collectable Minifigures Series 11 - Complete,2014,547,16
+71002-18,Minifigure Series 11 (Box of 60),2013,547,60
+71002-2,Scarecrow - Complete Set,2013,547,7
+71002-3,Pretzel Girl - Complete Set,2013,547,7
+71002-4,Evil Mech - Complete Set,2013,547,8
+71002-5,Island Warrior - Complete set,2013,547,8
+71002-6,Gingerbread Man - Complete Set,2013,547,5
+71002-7,Holiday Elf - Complete Set,2013,547,8
+71002-8,Yeti - Complete Set,2013,547,5
+71002-9,Mountain Climber - Complete Set,2013,547,7
+71004-0,LEGO Minifigures - The LEGO Movie Series [Random Bag],2014,549,0
+71004-1,Calamity Drone,2014,549,7
+71004-10,Larry the Barista,2014,549,6
+71004-11,Velma Staplebot,2014,549,6
+71004-12,Taco Tuesday Man,2014,549,10
+71004-13,'Where Are My Pants?' Guy,2014,549,6
+71004-14,Wiley Fusebot,2014,549,8
+71004-15,Panda Guy,2014,549,6
+71004-16,Marsha Queen of the Mermaids,2014,549,7
+71004-17,LEGO Minifigures - The LEGO Movie Series - Complete,2014,549,16
+71004-18,LEGO Minifigures - The LEGO Movie Series - Sealed Box,2014,549,60
+71004-2,President Business - Complete Set,2014,549,6
+71004-3,Hard Hat Emmet,2014,549,6
+71004-4,Wild West Wyldstyle,2014,549,6
+71004-5,Abraham Lincoln,2014,549,6
+71004-6,Mrs Scratchen-Post,2014,549,6
+71004-7,Scribble-Face Bad Cop,2014,549,7
+71004-8,William Shakespeare,2014,549,8
+71004-9,Gail the Construction Worker,2014,549,6
+71005-0,LEGO Minifigures - The Simpsons Series [Random Bag],2014,550,0
+71005-1,Homer Simpson,2014,550,6
+71005-10,Ralph Wiggum,2014,550,5
+71005-11,Apu Nahasapeemapetilon,2014,550,5
+71005-12,Nelson Muntz,2014,550,5
+71005-13,Itchy,2014,550,5
+71005-14,Scratchy,2014,550,6
+71005-15,Chief Wiggum,2014,550,6
+71005-16,Mr. Burns,2014,550,6
+71005-17,LEGO Minifigures - The Simpsons Series - Complete,2014,550,16
+71005-18,LEGO Minifigures - The Simpsons Series - Sealed Box,2014,550,60
+71005-2,Bart Simpson,2014,550,7
+71005-3,Marge Simpson,2014,550,7
+71005-4,Lisa Simpson,2014,550,6
+71005-5,Maggie Simpson,2014,550,4
+71005-6,Grampa Simpson,2014,550,5
+71005-7,Ned Flanders,2014,550,6
+71005-8,Krusty the Clown,2014,550,5
+71005-9,Milhouse Van Houten,2014,550,5
+71006-1,The Simpsons House,2014,50,2530
+71007-0,LEGO Minifigures Series 12 [Random Bag],2014,548,0
+71007-1,Wizard,2014,548,11
+71007-10,Dino Tracker,2014,548,7
+71007-11,Pizza Delivery Man,2014,548,7
+71007-12,Rock Star,2014,548,6
+71007-13,Swashbuckler,2014,548,7
+71007-14,Piggy Guy,2014,548,6
+71007-15,Genie Girl,2014,548,6
+71007-16,Spooky Girl,2014,548,7
+71007-17,LEGO Minifigures Series 12 - Complete,2014,548,16
+71007-18,LEGO Minifigures Series 12 - Sealed Box,2014,548,60
+71007-2,Hun Warrior,2014,548,10
+71007-3,Fairytale Princess,2014,548,6
+71007-4,Video Game Guy,2014,548,6
+71007-5,Battle Goddess,2014,548,9
+71007-6,Space Miner,2014,548,9
+71007-7,Lifeguard,2014,548,7
+71007-8,Prospector,2014,548,7
+71007-9,Jester,2014,548,7
+71008-0,LEGO Minifigures - Series 13 [Random Bag],2015,551,0
+71008-1,Classic King,2015,551,9
+71008-10,Evil Wizard,2015,551,10
+71008-11,Fencer,2015,551,6
+71008-12,Samurai,2015,551,8
+71008-13,Disco Diva,2015,551,8
+71008-14,Hot Dog Man,2015,551,5
+71008-15,Lady Cyclops,2015,551,6
+71008-16,Galaxy Trooper,2015,551,8
+71008-17,LEGO Minifigures Series 13 - Complete,2015,551,16
+71008-18,LEGO Minifigures Series 13 - Sealed Box,2015,551,60
+71008-2,Sheriff,2015,551,8
+71008-3,Unicorn Girl,2015,551,7
+71008-4,Snake Charmer,2015,551,7
+71008-5,Goblin,2015,551,7
+71008-6,Paleontologist,2015,551,7
+71008-7,Alien Trooper,2015,551,6
+71008-8,Egyptian Warrior,2015,551,7
+71008-9,Carpenter,2015,551,7
+71009-0,The Simpsons Series 2 {Random bag},2015,550,0
+71009-1,Homer,2015,550,5
+71009-10,Hans Moleman,2015,550,5
+71009-11,Selma,2015,550,6
+71009-12,Patty,2015,550,6
+71009-13,Groundskeeper Willie,2015,550,5
+71009-14,Edna Krabappel,2015,550,7
+71009-15,Smithers,2015,550,6
+71009-16,Dr Hibbert,2015,550,5
+71009-17,The Simpsons Series 2 - Complete,2015,550,16
+71009-18,The Simpsons Series 2 - Sealed Box,2015,550,60
+71009-2,Marge,2015,550,10
+71009-3,Lisa,2015,550,6
+71009-4,Maggie,2015,550,4
+71009-5,Bart,2015,550,6
+71009-6,Milhouse,2015,550,6
+71009-7,Comic Book Guy,2015,550,6
+71009-8,Martin,2015,550,5
+71009-9,Professor Frink,2015,550,5
+710-1,Wrecker with Car,1973,397,91
+71010-0,LEGO Minifigures - Series 14 {Random bag},2015,552,0
+71010-1,Wolf Guy,2015,552,6
+71010-10,Gargoyle,2015,552,6
+71010-11,Skeleton Guy,2015,552,6
+71010-12,Monster Rocker,2015,552,6
+71010-13,Zombie Businessman,2015,552,7
+71010-14,Banshee,2015,552,5
+71010-15,Square Foot,2015,552,5
+71010-16,Spider Lady,2015,552,7
+71010-17,LEGO Minifigures - Series 14 - Complete,2015,552,0
+71010-18,LEGO Minifigures - Series 14 - Sealed Box,2015,552,0
+71010-2,Zombie Pirate,2015,552,7
+71010-3,Monster Scientist,2015,552,6
+71010-4,Wacky Witch,2015,552,8
+71010-5,Plant Monster,2015,552,7
+71010-6,Fly Monster,2015,552,5
+71010-7, Spectre,2015,552,7
+71010-8,Zombie Cheerleader,2015,552,7
+71010-9,Tiger Woman,2015,552,7
+7101-1,Lightsaber Duel,1999,166,52
+71011-0,LEGO Minifigures - Series 15 {Random bag},2016,554,0
+71011-1,Farmer,2016,554,7
+71011-10,Ballerina,2016,554,6
+71011-11,Laser Mech,2016,554,9
+71011-12,Kendo Fighter,2016,554,7
+71011-13,Shark Suit Guy,2016,554,5
+71011-14,Wrestling Champion,2016,554,6
+71011-15,Jewel Thief,2016,554,8
+71011-16,Queen,2016,554,8
+71011-17,LEGO Minifigures - Series 15 - Complete,2016,554,0
+71011-18,LEGO Minifigures - Series 15 - Sealed Box,2016,554,0
+71011-2,Astronaut,2016,554,9
+71011-3,Frightening Knight,2016,554,10
+71011-4,Clumsy Guy,2016,554,7
+71011-5,Tribal Woman,2016,554,8
+71011-6,Flying Warrior,2016,554,11
+71011-7,Faun,2016,554,6
+71011-8,Animal Control Officer,2016,554,7
+71011-9,Janitor,2016,554,7
+71012-1,Stitch,2016,555,4
+71012-10,Donald Duck,2016,555,6
+71012-11,Minnie Mouse,2016,555,6
+71012-12,Mickey Mouse,2016,555,4
+71012-13,Mr. Incredible,2016,555,6
+71012-14,Syndrome,2016,555,6
+71012-15,Peter Pan,2016,555,7
+71012-16,Captain Hook,2016,555,6
+71012-17,Ursula,2016,555,6
+71012-18,Ariel,2016,555,7
+71012-19,LEGO Minifigures - Disney Series - Complete,2016,535,0
+71012-2,Alien,2016,555,4
+71012-3,Buzz Lightyear,2016,555,8
+71012-4,Aladdin,2016,555,6
+71012-5,Genie,2016,555,7
+71012-6,Maleficent,2016,555,10
+71012-7,Alice,2016,555,8
+71012-8,Cheshire Cat,2016,555,5
+71012-9,Daisy Duck,2016,555,6
+71013-1,Ice Queen,2016,556,12
+71013-10,Penguin Boy,2016,556,7
+71013-11,Rogue,2016,556,7
+71013-12,Dog Show Winner,2016,556,7
+71013-13,Mariachi,2016,556,7
+71013-14,Spy,2016,556,9
+71013-15,Banana Guy,2016,556,5
+71013-16,Babysitter,2016,556,8
+71013-17,LEGO Minifigures - Series 16 - Complete,2016,556,0
+71013-2,Desert Warrior,2016,556,6
+71013-3,Cyborg,2016,556,8
+71013-4,Cute Little Devil Set,2016,556,10
+71013-5,Spooky Boy,2016,556,7
+71013-6,Hiker,2016,556,8
+71013-7,Wildlife Photographer,2016,556,8
+71013-8,Kickboxer,2016,556,6
+71013-9,Scallywag Pirate,2016,556,7
+71014-1,Joachim Löw,2016,557,6
+71014-10,Toni Kroos (18),2016,557,6
+71014-11,Sami Khedira (6),2016,557,6
+71014-12,André Schürrle (9),2016,557,6
+71014-13,Marco Reus (21),2016,557,6
+71014-14,Christoph Kramer (20),2016,557,6
+71014-15,Mario Götze (19),2016,557,6
+71014-16,Max Kruse (23),2016,557,6
+71014-17,DFB Series - Complete,2016,557,0
+71014-2,Manuel Neuer (1),2016,557,6
+71014-3,Jérôme Boateng (17),2016,557,6
+71014-4,Mats Hummels (5),2016,557,6
+71014-5,Benedikt Höwedes (4),2016,557,6
+71014-6,Shkodran Mustafi (2),2016,557,6
+71014-7,Bastian Schweinsteiger (7),2016,557,6
+71014-8,Mesut Özil (8),2016,557,6
+71014-9,Thomas Müller (13),2016,557,6
+71016-1,The Kwik-E-Mart,2015,50,2176
+71017-1,Lobster-Lovin’ Batman™,2017,484,7
+71017-10,Pink Power Batgirl™,2017,484,8
+71017-11,Red Hood™,2017,484,9
+71017-12,The Eraser™,2017,484,6
+71017-13,Nurse Harley Quinn™,2017,484,7
+71017-14,Orca™,2017,484,5
+71017-15,Zodiac Master™,2017,484,6
+71017-16,Catman™,2017,484,9
+71017-17,March Harriet™,2017,484,6
+71017-18,The Calculator™,2017,484,8
+71017-19,King Tut™,2017,484,8
+71017-2,Glam Metal Batman™,2017,484,8
+71017-20,The Mime™,2017,484,7
+71017-21,The LEGO Batman Movie Series - Complete,2017,535,0
+71017-3,Fairy Batman™,2017,484,8
+71017-4,Clan of the Cave Batman™,2017,484,7
+71017-5,Vacation Batman™,2017,484,8
+71017-6,Barbara Gordon™,2017,484,8
+71017-7,Commissioner Gordon™,2017,484,7
+71017-8,The Joker™ – Arkham Asylum,2017,484,6
+71017-9,Dick Grayson™,2017,484,7
+71018-1,Professional Surfer,2017,611,6
+71018-10,Battle Dwarf,2017,611,9
+71018-11,Retro Spaceman,2017,611,7
+71018-12,Yuppie,2017,611,8
+71018-13,Rocket Boy,2017,611,7
+71018-14,Dance Instructor,2017,611,7
+71018-15,Elf-Girl,2017,611,7
+71018-16,Highwayman,2017,611,9
+71018-17,Minifigures - Series 17 - Complete 16 Sets,2017,611,0
+71018-18,LEGO Minifigures Series 17 - All Parts,2017,611,116
+71018-2,Circus Strong Man,2017,611,6
+71018-3,Gourmet Chef,2017,611,7
+71018-4,Corn Cob Guy,2017,611,5
+71018-5,Veterinarian,2017,611,6
+71018-6,Hot Dog Man,2017,611,9
+71018-7,Butterfly Girl,2017,611,10
+71018-8,Roman Gladiator,2017,611,6
+71018-9,Connoisseur,2017,611,7
+710-2,Lockable Storage Case,1966,371,1
+710-3,Universal Building Set,1983,469,364
+7103-1,Jedi Duel,2002,167,82
+71040-1,The Disney Castle,2016,608,4060
+7104-1,Desert Skiff,2000,169,55
+71042-1,Silent Mary,2017,263,2286
+710-6,Baseplate Assortment,1984,443,10
+7106-1,Droid Escape,2001,169,45
+7110-1,Landspeeder,1999,169,49
+711-1,Jeep CJ-5,1977,397,58
+7111-1,Droid Fighter,1999,166,62
+7113-1,Tusken Raider Encounter,2002,167,93
+7115-1,Gungan Patrol,2000,166,79
+7116-1,Tahu,2010,345,19
+71170-1,Starter Pack: PS3,2015,604,265
+7117-1,Gresh,2010,345,19
+71171-1,LEGO® DIMENSIONS™ PLAYSTATION® 4 Starter Pack,2015,604,265
+71172-1,LEGO® DIMENSIONS™ Xbox One Starter Pack,2015,604,265
+71173-1,LEGO® DIMENSIONS™ Xbox 360 Starter Pack,2015,604,265
+71174-1,LEGO® DIMENSIONS™ Wii U™ Starter Pack,2015,604,265
+7119-1,Twin-Pod Cloud Car,2002,169,118
+71200-1,Dimensions Starter Pack,2015,604,265
+71201-1,LEGO® DIMENSIONS™ Back to the Future™ Level Pack,2015,604,94
+71202-1,LEGO® DIMENSIONS™ The Simpsons™ Level Pack,2015,604,96
+71203-1,LEGO® DIMENSIONS™ Portal® 2 Level Pack,2015,604,85
+71204-1,LEGO® DIMENSIONS™ Doctor Who Level Pack,2015,604,82
+71205-1,LEGO® DIMENSIONS™ Jurassic World™ Team Pack,2015,604,103
+71206-1,LEGO® DIMENSIONS™ Scooby-Doo™ Team Pack,2015,604,84
+71207-1,LEGO® DIMENSIONS® NINJAGO™ Team Pack,2015,604,98
+71209-1,LEGO® DIMENSIONS™ Wonder Woman Fun Pack,2015,604,41
+712-1,Sea Plane,1977,412,115
+71210-1,LEGO® DIMENSIONS™ Cyborg™ Fun Pack,2015,604,50
+7121-1,Naboo Swamp,1999,166,82
+71211-1,LEGO® DIMENSIONS™ Bart Fun Pack,2015,604,34
+71212-1,LEGO® DIMENSIONS™ Fun Pack Emmet,2015,604,55
+71213-1,LEGO® DIMENSIONS™ Bad Cop Fun Pack,2015,604,62
+71214-1,LEGO® DIMENSIONS™ Benny Fun Pack ,2015,604,46
+71215-1,LEGO® DIMENSIONS™ Jay Fun Pack,2015,604,48
+71216-1,LEGO® DIMENSIONS™ Nya Fun Pack,2015,604,59
+71217-1,LEGO® DIMENSIONS™ Zane Fun Pack,2015,604,46
+71218-1,LEGO® DIMENSIONS™ Gollum Fun Pack,2015,604,39
+71219-1,LEGO® DIMENSIONS™ Legolas Fun Pack,2015,604,36
+71220-1,LEGO® DIMENSIONS™ Gimli Fun Pack,2015,604,56
+71221-1,LEGO® DIMENSIONS™ Wicked Witch™ Fun Pack,2015,604,38
+71222-1,LEGO® DIMENSIONS™ Laval Fun Pack,2015,604,57
+71223-1,LEGO® DIMENSIONS™ Cragger Fun Pack,2015,604,45
+71227-1,LEGO® DIMENSIONS® Krusty Fun Pack,2015,604,38
+71228-1,The Ghostbusters Level Pack,2016,604,115
+71229-1,DC Comics Team Pack,2016,604,92
+71230-1,Doc Brown Fun Pack,2016,604,69
+71231-1,LEGO® DIMENSIONS™ Unikitty Fun Pack,2015,604,58
+71232-1,LEGO® DIMENSIONS™ Eris Fun Pack,2015,604,59
+71233-1,Stay Puft Fun Pack,2016,604,65
+71234-1,Sensei Wu Fun Pack,2016,604,58
+71235-1,Midway Arcade™ Level Pack,2016,604,96
+71236-1,Superman™ Fun Pack,2016,604,48
+71237-1,Aquaman and Aqua Watercraft,2016,604,43
+71238-1,Cyberman Fun Pack,2016,604,40
+71239-1,Lloyd Fun Pack,2016,604,56
+71240-1,Bane™ Fun Pack,2016,604,52
+7124-1,Flash Speeder,2000,166,107
+71241-1,Slimer Fun Pack,2016,604,33
+71242-1,Ghostbusters Story Pack,2016,604,258
+71244-1,Sonic the Hedgehog™ Level Pack,2016,604,101
+71245-1,Adventure Time Level Pack,2016,604,102
+71246-1,Adventure Time Team Pack,2016,604,96
+71247-1,Harry Potter Team Pack,2016,604,119
+71248-1,Mission: Impossible™ Level Pack,2016,604,76
+71251-1,A-Team Fun Pack,2016,604,73
+71253-1,Fantastic Beasts and Where to Find Them™ Story Pack,2016,604,261
+71255-1,"Teen Titans Go!"" Team Pack",2017,604,105
+71256-1,Gremlins™ Team Pack,2016,604,94
+71257-1,Tina Goldstein Fun Pack,2016,604,51
+71258-1,E.T. the Extra-Terrestrial™ Fun Pack,2016,604,42
+7126-1,Battle Droid Carrier,2001,166,133
+71264-1,THE LEGO&reg; BATMAN MOVIE Story Pack,2017,604,156
+71266-1,LEGO&reg; City Fun Pack,2017,604,46
+71267-1,"Goonies"" Level Pack",2017,604,118
+7127-1,Imperial AT-ST,2001,169,107
+7128-1,Speeder Bikes,1999,169,93
+71285-1,Marceline the Vampire Queen,2016,604,60
+71286-1,Michael Knight and K.I.T.T. Knight Ryder Fun Pack,2017,604,54
+71287-1,"Teen Titans Go!"" Fun Pack",2017,604,56
+71300-1,Uxar Creature of Jungle,2016,324,89
+7130-1,Snowspeeder,1999,169,217
+71301-1,Ketar Creature of Stone,2016,324,79
+71302-1,Akida Creature of Water,2016,324,120
+71303-1,Ikir Creature of Fire,2016,324,77
+71304-1,Terak Creature of Earth,2016,324,74
+71305-1,Lewa Uniter of Jungle,2016,324,65
+71306-1,Pohatu Uniter of Stone,2016,324,87
+71307-1,Gali Uniter of Water,2016,324,87
+71308-1,Tahu Uniter of Fire,2016,324,132
+71309-1,Onua Uniter of Earth,2016,324,144
+71310-1,Umarak the Hunter,2016,324,150
+7131-1,Anakin's Podracer,1999,166,136
+71311-1,Kopaka and Melum - Unity set,2016,324,169
+71312-1,Ekimu the Mask Maker,2016,324,94
+71313-1,Lava Beast,2016,324,114
+71314-1,Storm Beast,2016,324,109
+71315-1,Quake Beast,2016,324,102
+71316-1,Umarak the Destroyer,2016,324,190
+7133-1,Bounty Hunter Pursuit,2002,167,254
+71340-1,Supergirl (DC Comics Playstation 4),2016,604,6
+7134-1,A-wing Fighter,2000,169,125
+71342-1,Green Arrow,2016,604,7
+71343-1,"The Powerpuff Girls"" Fun Pack",2017,604,56
+71344-1,"Excalibur Batman"" Fun Pack",2017,604,57
+71346-1,"The Powerpuff Girls"" Team Pack",2017,604,93
+71348-1,"Harry Potter"" Fun Pack",2017,604,64
+71349-1,"Beetlejuice"" Fun Pack",2017,604,56
+7135-1,Takanuva,2010,345,21
+7136-1,Skrall,2010,345,21
+7137-1,Piraka,2010,345,15
+7138-1,Rahkshi,2010,345,18
+7139-1,Ewok Attack,2002,169,121
+7140-1,X-wing Fighter,1999,169,271
+7141-1,Naboo Fighter,1999,166,179
+7142-1,X-wing Fighter (re-release of 7140),2002,169,273
+7143-1,Jedi Starfighter,2002,167,139
+7144-1,Slave I,2000,169,166
+7145-1,Von Nebula,2010,403,156
+7146-1,TIE Fighter,2001,169,171
+7147-1,Xplode,2010,403,45
+7148-1,Meltdown,2010,403,49
+7150-1,TIE Fighter & Y-wing,1999,169,410
+715-1,Basic Building Set,1990,467,410
+7151-1,Sith Infiltrator,1999,166,244
+7152-1,TIE Fighter & Y-wing (re-release of 7150),2002,169,411
+7153-1,Jango Fett's Slave I,2002,167,360
+7155-1,Trade Federation AAT,2000,166,159
+7156-1,Corroder,2010,403,39
+7157-1,Thunder,2010,403,46
+7158-1,Furno Bike,2010,402,165
+7159-1,Star Wars Podracing Bucket,2000,166,292
+7160-1,Drop Ship,2010,402,393
+7161-1,Gungan Sub,1999,166,379
+7162-1,Rotor,2010,403,144
+7163-1,Republic Gunship,2002,167,697
+7164-1,Preston Stormer,2010,401,17
+7165-1,Natalie Breez,2010,401,19
+7166-1,Imperial Shuttle,2001,169,238
+7167-1,William Furno,2010,401,19
+7168-1,Dunkan Bulk,2010,401,17
+7169-1,Mark Surge,2010,401,19
+7170-2,Jimi Stringer,2010,401,17
+7171-1,Mos Espa Podrace,1999,166,913
+7172-1,Apple,2007,22,10
+7173-1,Pear,2007,22,10
+7174-1,Banana,2007,22,8
+7175-1,Grapes,2007,22,10
+7176-1,Watermelon - Capespan Promotional,2007,33,21
+7177-1,Orange,2007,22,8
+7178-1,Chef,2007,22,5
+7179-1,Dunkan Bulk and Vapor,2010,401,89
+7180-1,B-wing at Rebel Control Center,2000,169,346
+7181-1,TIE Interceptor - UCS,2000,174,702
+7184-1,Trade Federation MTT,2000,166,466
+7186-1,Watto's Junkyard,2001,166,449
+7187-1,Escape from Dragon's Prison,2011,196,185
+7188-1,King's Carriage Ambush,2011,196,286
+7189-1,Mill Village Raid,2011,196,667
+7190-1,Millennium Falcon,2000,169,671
+7191-1,X-wing Fighter - UCS,2000,174,1302
+7194-1,Yoda,2002,158,1076
+7195-1,Ambush in Cairo,2009,267,79
+7196-1,Chauchilla Cemetery Battle,2009,265,188
+7197-1,Venice Canal Chase,2009,266,420
+7198-1,Fighter Plane Attack,2009,266,383
+7199-1,Temple of Doom,2009,268,652
+7-2,Universal Building Set,1979,469,64
+7200-1,Final Duel I,2002,169,32
+720-1,Basic Building Set,1985,467,339
+7201-1,Final Duel II,2002,169,26
+720-2,Train with 12V Electric Motor,1969,234,357
+7203-1,Jedi Defense I,2002,166,59
+7204-1,Jedi Defense II,2002,166,53
+7206-1,Fire Helicopter,2010,58,341
+7207-1,Fire Boat,2010,58,305
+7208-1,Fire Station,2010,58,663
+7209-1,Pteranodon,2004,204,28
+7210-1,Apatosaurus,2004,204,33
+721-1,Steam Locomotive,1969,234,114
+7212-1,Sky Squad,2003,204,129
+7213-1,Off-Road Fire Truck & Fireboat,2010,58,387
+7214-1,Sea Plane,2004,110,119
+7216-1,Gold Good Guy - looking Right (Duracell 8 pack AA) {Turaga Lhikan},2006,324,22
+7216-2,Gold Good Guy - looking Left (Duracell 12 pack AA) {Turaga Lhikan},2006,324,22
+7216-3,Gold Good Guy - looking Right (Duracell 12 pack AA) {Turaga Lhikan},2006,324,22
+7217-1,Braca (Duracell 12 pack AA battery promotion),2006,324,16
+7217-2,Braca (Duracell 8 pack AA battery promotion),2006,324,16
+7218-1,Orange Speedboat,2004,204,26
+7219-1,Dinosaur,2004,204,34
+7220-1,Snowman,2004,227,19
+722-1,Universal Building Set,1980,469,302
+7221-1,Robots,2003,204,24
+7221-2,Robots - ANA Promotion,2003,204,23
+722-2,12V Electric Train with 2 Wagons,1970,234,151
+7222-1,Small Red Helicopter (Polybag),2003,204,28
+7223-1,Yellow Truck (Polybag),2003,204,34
+7223-2,Yellow Truck (Box version) - ANA Promotion,2003,204,36
+7224-1,"Santa, Tree, and Present",2003,22,34
+723-1,Diesel Locomotive,1970,234,95
+723-2,Diesel Locomotive with DB Sticker,1974,234,93
+7235-1,"Police Motorcycle, Black Logo",2005,61,28
+7235-2,Police Motorcycle - Blue Sticker Version,2008,61,28
+7236-1,"Police Car, Black Logo",2005,61,59
+7236-2,Police Car - Blue Sticker Version,2008,61,59
+7237-1,Police Station [Lighted Figure],2005,61,593
+7237-2,Police Station [No Lighted Figure],2006,61,606
+7238-1,Fire Helicopter,2005,58,75
+7239-1,Fire Truck,2005,58,215
+7240-1,Fire Station,2005,58,264
+724-1,12V Diesel Locomotive with Crane and Tipper Wagon,1972,234,150
+7241-1,Fire Car,2005,58,47
+7242-1,Street Sweeper,2005,63,64
+7243-1,Construction Site,2005,56,301
+7244-1,Speedboat,2005,50,107
+7245-1,"Prisoner Transport, Black Logo",2005,61,99
+7245-2,Prisoner Transport - Blue Sticker Version,2008,61,99
+7246-1,Mini Digger,2005,56,37
+7248-1,Digger,2005,56,128
+7249-1,XXL Mobile Crane,2005,56,525
+7250-1,Clone Scout Walker,2005,168,109
+725-1,Basic Building Set,1990,467,440
+7251-1,Darth Vader Transformation,2005,168,60
+725-2,12V Freight Train and Track,1974,234,310
+7252-1,Droid Tri-Fighter,2005,168,147
+7255-1,General Grievous Chase,2005,168,112
+7256-1,Jedi Starfighter & Vulture Droid,2005,168,202
+7257-1,Ultimate Lightsaber Duel,2005,168,278
+7258-1,Wookiee Attack,2005,168,368
+7259-1,ARC-170 Starfighter,2005,168,401
+7260-1,Wookiee Catamaran,2005,168,381
+726-1,12V Western Train with 2 Wagons and Cowboys,1976,233,287
+7261-1,Clone Turbo Tank [Light-Up Mace Windu],2005,168,808
+7261-2,Clone Turbo Tank (with Non-Light-Up Mace Windu),2006,168,814
+7262-1,TIE Fighter and Y-wing (TRU exclusive re-release),2004,169,415
+7263-1,TIE Fighter,2005,169,159
+7264-1,Imperial Inspection,2005,169,378
+7266-1,Fireman,2005,58,19
+7267-1,Paramedic,2005,60,13
+7268-1,Crab,2005,204,32
+7269-1,Scorpion,2005,204,37
+7270-1,Bird,2005,204,28
+727-1,12V Locomotive,1977,234,133
+7271-1,Apple - Suntory Promotional,2005,33,8
+7272-1,Pear - Suntory Promotional,2005,33,10
+7274-1,Orange - Suntory Promotional,2005,33,7
+7275-1,Cherry - Suntory Promotional,2005,33,11
+7276-1,Mango - Suntory Promotional,2005,33,6
+7278-1,Melon - Suntory Promotional,2005,33,8
+7279-1,Police Minifigure Collection,2011,61,57
+7280-1,Straight & Crossroad Plates,2005,62,2
+7281-1,T-Junction & Curved Road Plates,2005,62,2
+7283-1,Ultimate Space Battle,2005,168,540
+7285-1,Police Dog Unit,2011,61,95
+7286-1,Prisoner Transport,2011,61,173
+7287-1,Police Boat,2011,61,173
+7288-1,Mobile Police Unit,2011,61,407
+7290-1,Pirates Polybag,2004,286,5
+7291-1,Street Rebel,2012,22,196
+7292-1,Propeller Adventures,2012,22,244
+7294-1,Dino Quad,2005,384,39
+7295-1,Dino Buggy Chaser,2005,384,78
+7296-1,Dino 4WD Trapper,2005,384,282
+7297-1,Dino Track Transport,2005,384,351
+7298-1,Dino Air Tracker,2005,384,710
+7-3,Basic Set,1973,469,412
+7300-1,Double Hover,2001,135,21
+730-1,Steam Shovel with Carrier,1973,416,102
+7301-1,Rover,2001,135,29
+730-2,Basic Building Set,1985,467,432
+7302-1,Worker Robot,2001,135,30
+7303-1,Jet Scooter,2001,135,24
+7305-1,Scarab Attack,2011,437,44
+7306-1,Golden Staff Guardians,2011,437,70
+7307-1,Flying Mummy Attack,2011,437,124
+7308-1,Double Hover,2001,135,21
+7309-1,Rover,2001,135,29
+7310-1,Mono Jet,2001,135,34
+7311-1,Red Planet Cruiser,2001,135,73
+7312-1,T3-Trike,2001,135,99
+73129-1,Four TECHNIC Shocks,1985,453,4
+7313-1,Red Planet Protector,2001,135,193
+7314-1,Recon-Mech RP,2001,135,189
+7315-1,Solar Explorer,2001,135,249
+7316-1,Excavation Searcher,2001,135,467
+7317-1,Aero Tube Hanger,2001,135,716
+7320-1,Vega,2001,135,5
+7321-1,Mizar,2001,135,5
+7322-1,Altair,2001,135,5
+7323-1,Guard,2001,135,5
+7324-1,Advent Calendar 2005 City,2005,208,24
+7324-10,Advent Calendar 2005 City (Day 9) Construction Worker,2005,220,5
+7324-11,Advent Calendar 2005 City (Day 10) Wheelbarrow,2005,220,11
+7324-12,Advent Calendar 2005 City (Day 11) Barricade,2005,220,9
+7324-13,Advent Calendar 2005 City (Day 12) Train Worker,2005,220,6
+7324-14,Advent Calendar 2005 City (Day 13) Crossing Gate,2005,220,13
+7324-15,Advent Calendar 2005 City (Day 14) Signal Post,2005,220,11
+7324-16,Advent Calendar 2005 City (Day 15) Mechanic,2005,220,5
+7324-17,Advent Calendar 2005 City (Day 16) Drill Press,2005,220,11
+7324-18,Advent Calendar 2005 City (Day 17) Oil Barrel & Hand Truck,2005,220,7
+7324-19,Advent Calendar 2005 City (Day 18) Man with Radio,2005,220,5
+7324-2,Advent Calendar 2005 City (Day 1) Fireman,2005,220,5
+7324-20,Advent Calendar 2005 City (Day 19) RC Car,2005,220,8
+7324-21,Advent Calendar 2005 City (Day 20) Skateboard & Helmet,2005,220,4
+7324-22,Advent Calendar 2005 City (Day 21) Pizza Chef,2005,220,5
+7324-23,Advent Calendar 2005 City (Day 22) Food Counter,2005,220,6
+7324-24,Advent Calendar 2005 City (Day 23) Pizza Oven,2005,220,11
+7324-25,Advent Calendar 2005 City (Day 24) Santa & Sled,2005,220,23
+7324-3,Advent Calendar 2005 City (Day 2) Fire Hydrant Hose Airtanks,2005,220,10
+7324-4,Advent Calendar 2005 City (Day 3) Rescue Bucket,2005,220,7
+7324-5,Advent Calendar 2005 City (Day 4) Policeman,2005,220,5
+7324-6,Advent Calendar 2005 City (Day 5) Police Dog & Barricade,2005,220,8
+7324-7,Advent Calendar 2005 City (Day 6) Criminal and Buzz Saw,2005,220,5
+7324-8,Advent Calendar 2005 City (Day 7) Safe,2005,220,12
+7324-9,Advent Calendar 2005 City (Day 8) Welding Tanks & Torch,2005,220,12
+7325-1,Cursed Cobra Statue,2011,437,212
+7326-1,Rise of the Sphinx,2011,437,526
+7327-1,Scorpion Pyramid,2011,437,797
+733-1,Universal Building Set,1980,469,504
+7335-1,Foundation Set - Blue Bucket,2006,37,460
+7336-1,Foundation Set - Red Bucket,2006,37,427
+7344-1,Dump Truck,2005,56,187
+7345-1,Transport Chopper,2012,42,383
+7346-1,Seaside House,2012,43,415
+7347-1,Highway Pickup,2012,39,812
+735-1,Basic Building Set,1990,467,538
+7383-1,Creator Watch,2002,501,0
+740-1,Basic Building Set,1985,467,530
+740-2,12V Transformer for 220V Pack,1969,242,1
+7409-1,Secret of the Tomb,2003,300,42
+7410-1,Jungle River,2003,300,66
+741-1,12V New Transformer for 220V Pack,1974,242,1
+7411-1,Tygurah's Roar,2003,300,94
+7412-1,Yeti's Hideout,2003,300,114
+7413-1,Passage of Jun-Chi,2003,300,101
+7414-1,Elephant Caravan,2003,300,104
+7415-1,Aero Nomad,2003,300,120
+7416-1,Emperor's Ship,2003,300,178
+7417-1,Temple of Mount Everest,2003,300,288
+7418-1,Scorpion Palace,2003,300,354
+7418-2,Scorpion Palace and Foam Scimitar,2003,300,2
+7419-1,Dragon Fortress,2003,300,741
+7420-1,Thunder Blazer,2003,300,69
+742-1,12V New Transformer for 110V Pack,1970,242,1
+7422-1,Airplane,2003,300,33
+7422-2,Red Eagle,2003,300,33
+7423-1,Mountain Sleigh,2003,300,30
+7423-2,Mountain Sleigh (Kabaya Promotional),2003,300,30
+7424-1,Black Cruiser,2003,300,28
+7424-2,Small Car,2003,300,28
+744-1,Universal Building Set,1980,469,540
+745-1,"Baseplate, Green",1978,473,1
+7452-1,Lime/Black Racer,2007,120,34
+7453-1,Yellow/Black Racer,2007,120,28
+746-1,"Baseplates, Green and Yellow",1978,473,2
+7467-1,International Space Station,2003,387,162
+7468-1,Saturn V Moon Mission,2003,387,176
+7469-1,Mission to Mars,2003,387,416
+7470-1,Space Shuttle Discovery,2003,387,827
+747-1,"Baseplates, Red and Blue",1978,473,2
+7471-1,Mars Exploration Rover,2003,387,861
+7473-1,Street Sprinter vs. Mutant Lizard,2005,385,38
+7474-1,Urban Avenger vs. Raptor,2005,385,78
+7475-1,Fire Hammer vs. Mutant Lizards,2005,385,258
+7476-1,Iron Predator vs. T-Rex,2005,385,273
+7477-1,T-1 Typhoon vs. T-Rex,2005,385,579
+7498-1,Police Station,2011,61,785
+7499-1,Flexible Rails,2011,245,24
+75000-1,Clone Troopers vs. Droidekas,2013,167,124
+75001-1,Republic Troopers vs. Sith Troopers,2013,158,62
+75002-1,AT-RT,2013,165,222
+75003-1,A-wing Starfighter,2013,169,177
+75004-1,Z-95 Headhunter,2013,165,371
+75005-1,Rancor Pit,2013,169,380
+75006-1,LEGO Star Wars Jedi Starfighter and Kamino,2013,180,61
+75007-1,Republic Assault Ship & Coruscant,2013,158,74
+75008-1,LEGO Star Wars TIE Bomber and Asteroid Field,2013,180,60
+75009-1,Snowspeeder & Planet Hoth,2013,181,69
+750-1,8 Straight 12V Conducting Rails,1969,242,8
+75010-1,B-wing Starfighter & Planet Endor,2013,181,83
+7501-1,Bangle Minis,2003,500,32
+75011-1,Tantive IV & Planet Alderaan,2013,181,102
+75012-1,BARC Speeder with Sidecar,2013,165,226
+75013-1,Umbaran MHC (Mobile Heavy Cannon),2013,165,491
+75014-1,Battle Of Hoth,2013,169,415
+75015-1,Corporate Alliance Tank Droid,2013,168,271
+75016-1,Homing Spider Droid,2013,167,295
+75017-1,Duel on Geonosis,2013,167,391
+75018-1,JEK-14's Stealth Starfighter,2013,170,548
+75019-1,AT-TE,2013,167,792
+75020-1,Jabba’s Sail Barge,2013,169,848
+7502-1,Photo Minis,2003,500,30
+75021-1,Republic Gunship,2013,167,1173
+75022-1,Mandalorian Speeder,2013,170,210
+75023-1,"Advent Calendar 2013, Star Wars",2013,209,24
+75023-10,"Advent Calendar 2013, Star Wars (Day 9) - Republic Assault Ship",2013,225,12
+75023-11,"Advent Calendar 2013, Star Wars (Day 10) - Clone Trooper",2013,225,4
+75023-12,"Advent Calendar 2013, Star Wars (Day 11) - AT-TE Walker",2013,225,15
+75023-13,"Advent Calendar 2013, Star Wars (Day 12) - Republic Dropship",2013,225,11
+75023-14,"Advent Calendar 2013, Star Wars (Day 13) - Battle Droid",2013,225,5
+75023-15,"Advent Calendar 2013, Star Wars (Day 14) - Geonosian Starfighter",2013,225,11
+75023-16,"Advent Calendar 2013, Star Wars (Day 15) - Geonosian Warrior",2013,225,3
+75023-17,"Advent Calendar 2013, Star Wars (Day 16) - Geonosian Weapons Depot",2013,225,10
+75023-18,"Advent Calendar 2013, Star Wars (Day 17) - Naboo Cruiser",2013,225,16
+75023-19,"Advent Calendar 2013, Star Wars (Day 18) - Scout Trooper",2013,225,4
+75023-2,"Advent Calendar 2013, Star Wars (Day 1) - R5-F7",2013,225,4
+75023-20,"Advent Calendar 2013, Star Wars (Day 19) - Separatist Shuttle",2013,225,18
+75023-21,"Advent Calendar 2013, Star Wars (Day 20) - Jedi Starfighter",2013,225,13
+75023-22,"Advent Calendar 2013, Star Wars (Day 21) - Jango Fett's Slave I",2013,225,20
+75023-23,"Advent Calendar 2013, Star Wars (Day 22) - Young Boba Fett",2013,225,4
+75023-24,"Advent Calendar 2013, Star Wars (Day 23) - Jet Pack Sled",2013,225,16
+75023-25,"Advent Calendar 2013, Star Wars (Day 24) - Holiday Jango Fett",2013,225,9
+75023-3,"Advent Calendar 2013, Star Wars (Day 2) - Dooku's Solar Sailer",2013,225,11
+75023-4,"Advent Calendar 2013, Star Wars (Day 3) - FA-4 Pilot Droid",2013,225,9
+75023-5,"Advent Calendar 2013, Star Wars (Day 4) - Zam Wesell's Speeder",2013,225,14
+75023-6,"Advent Calendar 2013, Star Wars (Day 5) - Twin-Pod Cloud Car",2013,225,16
+75023-7,"Advent Calendar 2013, Star Wars (Day 6) - Endor Rebel Trooper",2013,225,4
+75023-8,"Advent Calendar 2013, Star Wars (Day 7) - Weapons Depot",2013,225,11
+75023-9,"Advent Calendar 2013, Star Wars (Day 8) - Republic Gunship",2013,225,14
+75024-1,HH-87 Starhopper,2014,165,361
+75025-1,Jedi Defender-class Cruiser,2013,170,925
+75028-1,Clone Turbo Tank,2014,162,96
+75029-1,AAT,2014,158,95
+75030-1,Millennium Falcon,2014,159,94
+75031-1,TIE Interceptor,2014,159,92
+75032-1,X-Wing Fighter,2014,159,97
+75033-1,Star Destroyer,2014,159,97
+75034-1,Death Star Troopers,2014,158,100
+75035-1,Kashyyyk Troopers,2014,158,99
+75036-1,Utapau Troopers,2014,158,83
+75037-1,Battle on Saleucami,2014,158,179
+75038-1,Jedi Interceptor,2014,158,222
+75039-1,V-Wing Starfighter,2014,158,200
+75040-1,General Grievous' Wheel Bike,2014,158,261
+7504-1,Friendship Frame / Mirror,2004,500,15
+75041-1,Vulture Droid,2014,158,204
+75042-1,Droid Gunship,2014,158,438
+75043-1,AT-AP,2014,158,715
+75044-1,Droid Tri-Fighter,2014,158,261
+75045-1,Republic AV-7 Anti-Vehicle Cannon,2014,158,434
+75046-1,Coruscant Police Gunship,2014,158,479
+75048-1,The Phantom,2014,182,233
+75049-1,Snowspeeder,2014,158,278
+75050-1,B-Wing,2014,158,447
+7505-1,Flowered Hair Bands,2004,500,16
+75051-1,Jedi Scout Fighter,2014,158,488
+75052-1,Mos Eisley Cantina,2014,169,614
+75053-1,The Ghost,2014,182,927
+75054-1,AT-AT,2014,169,1136
+75055-1,Imperial Star Destroyer,2014,158,1357
+75056-1,Advent Calendar 2014 Star Wars,2014,209,24
+75056-10,Advent Calendar 2014 Star Wars (Day 9) - Anakin's Jedi Starfighter,2014,225,13
+75056-11,Advent Calendar 2014 Star Wars (Day 10) - TIE Fighter,2014,225,11
+75056-12,Advent Calendar 2014 Star Wars (Day 11) - TIE Fighter Pilot,2014,225,4
+75056-13,Advent Calendar 2014 Star Wars (Day 12) - Luke's Landspeeder,2014,225,15
+75056-14,Advent Calendar 2014 Star Wars (Day 13) - Luke Skywalker,2014,225,4
+75056-15,Advent Calendar 2014 Star Wars (Day 14) - Moisture Vaporator ,2014,225,14
+75056-16,Advent Calendar 2014 Star Wars (Day 15) - Snowspeeder,2014,225,19
+75056-17,Advent Calendar 2014 Star Wars (Day 16) - Snowspeeder Pilot,2014,225,4
+75056-18,Advent Calendar 2014 Star Wars (Day 17) - Hoth Command Center,2014,225,16
+75056-19,Advent Calendar 2014 Star Wars (Day 18) - General Rieekan,2014,225,4
+75056-2,Advent Calendar 2014 Star Wars (Day 1) - Armored Assault Tank (AAT),2014,225,14
+75056-20,Advent Calendar 2014 Star Wars (Day 19) - Holiday Speeder Bike,2014,225,19
+75056-21,Advent Calendar 2014 Star Wars (Day 20) - Imperial Shuttle,2014,225,11
+75056-22,Advent Calendar 2014 Star Wars (Day 21) - Anakin's Y-wing Starfighter,2014,225,20
+75056-23,Advent Calendar 2014 Star Wars (Day 22) - Festive Astromech,2014,225,7
+75056-24,Advent Calendar 2014 Star Wars (Day 23) - Holiday Fireplace,2014,225,26
+75056-25,Advent Calendar 2014 Star Wars (Day 24) - Santa Darth Vader,2014,225,6
+75056-3,Advent Calendar 2014 Star Wars (Day 2) - Super Battle Droid,2014,225,4
+75056-4,Advent Calendar 2014 Star Wars (Day 3) - Republic Cannon,2014,225,18
+75056-5,Advent Calendar 2014 Star Wars (Day 4) - Clone Trooper with Santa Hat,2014,225,5
+75056-6,Advent Calendar 2014 Star Wars (Day 5) - Clone Trooper Weapon Station,2014,225,11
+75056-7,Advent Calendar 2014 Star Wars (Day 6) - Vulture Droid,2014,225,9
+75056-8,Advent Calendar 2014 Star Wars (Day 7) - Snowball Missle Launcher,2014,225,16
+75056-9,Advent Calendar 2014 Star Wars (Day 8) - Snowtrooper ,2014,225,4
+75058-1,MTT,2014,166,951
+75059-1,Sandcrawler,2014,169,3294
+75060-1,Slave I,2015,174,1994
+7506-1,Starry Bangles and Rings,2004,500,9
+7507-1,Jewels-n-Rings,2003,500,80
+75072-1,ARC-170 Starfighter,2015,159,95
+75073-1,Vulture Droid,2015,159,77
+75074-1,Snowspeeder,2015,159,97
+75075-1,AT-AT,2015,159,88
+75076-1,Republic Gunship,2015,159,105
+75077-1,Homing Spider Droid,2015,159,102
+75078-1,Imperial Troop Transport,2015,182,141
+75079-1,Shadow Troopers,2015,183,95
+75080-1,AAT,2015,166,251
+7508-1,Jewels-n-Bands,2003,500,80
+75081-1,T-16 Skyhopper,2015,169,247
+75082-1,TIE Advanced Prototype,2015,182,354
+75083-1,AT-DP,2015,182,498
+75084-1,Wookiee Gunship,2015,182,568
+75085-1,Hailfire Droid,2015,167,163
+75086-1,Battle Droid Troop Carrier,2015,166,565
+75087-1,Anakin's Custom Jedi Starfighter,2015,165,369
+75088-1,Senate Commando Troopers,2015,183,106
+75089-1,Geonosis Troopers,2015,183,105
+75090-1,Ezra's Speeder Bike,2015,182,267
+75090-2,Ezra's Speeder Bike,2015,182,253
+7509-1,Jewels-n-Clips,2003,500,72
+75091-1,Flash Speeder,2015,166,311
+75092-1,Naboo Starfighter,2015,166,440
+75093-1,Death Star Final Duel,2015,169,722
+75094-1,Imperial Shuttle Tydirium,2015,158,935
+75095-1,UCS TIE Fighter,2015,158,1683
+75096-1,Sith Infiltrator,2015,166,659
+75097-1,LEGO® Star Wars™ Advent Calendar,2015,209,291
+75098-1,Assault on Hoth,2016,174,2139
+75099-1,Rey's Speeder™,2015,158,194
+75100-1,First Order Snowspeeder™,2015,158,443
+7510-1,Trendy Tote Hot Pink,2003,500,89
+75101-1,First Order Special Forces TIE fighter™,2015,158,519
+75102-1,Poe’s X-Wing Fighter™,2015,158,715
+75103-1,First Order Transporter™,2015,158,783
+75104-1,Kylo Ren’s Command Shuttle™,2015,158,1002
+75105-1,Millennium Falcon™,2015,158,1328
+75106-1,Imperial Assault Carrier,2015,182,1214
+75107-1,Jango Fett™,2015,158,85
+75108-1,Clone Commander Cody™,2015,158,82
+75109-1,Obi-Wan Kenobi™,2015,158,83
+751-1,8 Curved 12V Conducting Rails,1969,242,8
+75110-1,Luke Skywalker™,2015,158,83
+7511-1,Trendy Tote Tangerine,2003,500,94
+75111-1,Darth Vader™,2015,158,160
+75112-1,General Grievous™,2015,158,186
+75113-1,Rey,2016,184,84
+75114-1,First Order Stormtrooper,2016,184,81
+75115-1,Poe Dameron,2016,184,101
+75116-1,Finn,2016,184,98
+75117-1,Kylo Ren,2016,184,86
+75118-1,Captain Phasma,2016,184,82
+75119-1,Sergeant Jyn Erso,2016,185,104
+75120-1,K-2SO,2016,185,169
+7512-1,Trendy Tote Sky Blue,2003,500,94
+75121-1,Imperial Death Trooper,2016,185,105
+75125-1,Resistance X-Wing Fighter,2016,184,87
+75126-1,First Order Snowspeeder,2016,184,91
+75127-1,The Ghost,2016,159,104
+75128-1,TIE Advanced Prototype,2016,182,93
+75129-1,Wookiee Gunship,2016,182,84
+75130-1,AT-DP,2016,182,76
+75131-1,Resistance Trooper Battle Pack,2016,184,112
+75132-1,First Order Battle Pack,2016,184,88
+75133-1,Rebel Alliance Battle Pack,2016,158,99
+75134-1,Galactic Empire™ Battle Pack,2016,158,109
+75135-1,Obi-Wan's Jedi Interceptor,2016,168,212
+75136-1,Droid Escape Pod,2016,169,196
+75137-1,Carbon-Freezing Chamber,2016,169,231
+75138-1,Hoth Attack,2016,169,230
+75139-1,Battle on Takodana,2016,184,403
+75140-1,Resistance Troop Transporter,2016,184,644
+7514-1,Sweet Dreamy Jewels,2004,500,12
+75141-1,Kanan's Speeder Bike,2016,182,227
+75142-1,Homing Spider Droid,2016,167,309
+75144-1,Snowspeeder,2017,158,1702
+75145-1,Eclipse Fighter,2016,170,363
+75146-1,Advent Calendar 2016 Star Wars,2016,209,282
+75147-1,StarScavenger,2016,170,557
+75148-1,Encounter on Jakku,2016,184,529
+75149-1,Resistance X-Wing Fighter,2016,184,738
+75150-1,Vader’s TIE Advanced vs. A-Wing Starfighter,2016,182,701
+75151-1,Clone Turbo Tank,2016,168,902
+75152-1,Imperial Assault Hovertank,2016,185,385
+75153-1,AT-ST Walker,2016,185,448
+75154-1,TIE Striker,2016,185,541
+75155-1,Rebel U-Wing Fighter,2016,185,657
+75156-1,Krennic’s Imperial Shuttle,2016,185,861
+75157-1,Captain Rex’s AT-TE,2016,182,969
+75158-1,Rebel Combat Frigate,2016,182,934
+75159-1,Death Star,2016,158,4023
+75160,U-wing,2017,158,107
+75160-1,U-wing,2017,185,109
+7516-1,Cool Starry Jewels,2004,500,52
+75161-1,Tie Striker Microfighter,2017,159,87
+75162-1,Y-wing,2017,158,90
+75163-1,Krennics Imperial Shuttle Microfighter,2017,159,77
+75164-1,Rebel Trooper Battle Pack,2017,185,119
+75165-1,Imperial Trooper Battle Pack,2017,185,112
+75166-1,First Order Transport Speeder Battle Pack,2017,612,115
+75167-1,"Bounty Hunter Speeder Bike"" Battle Pack",2017,158,125
+75168-1,Yoda's Jedi Starfighter,2017,165,262
+75169-1,Duel on Naboo,2017,166,207
+75170-1,The Phantom,2017,182,268
+75171-1,Battle on Scarif,2017,185,419
+75172-1,Y-Wing Starfighter,2017,185,688
+75173-1,Luke's Landspeeder,2017,169,148
+75174-1,Desert Skiff Escape,2017,158,284
+75175-1,A-Wing Starfighter,2017,158,356
+75176-1,Resistance Transport Pod,2017,612,293
+75177-1,First Order Heavy Scout Walker,2017,612,554
+75178-1,Jakku Quadjumper,2017,158,456
+75179-1,Kylo Ren's TIE Fighter,2017,612,628
+75180-1,"Rathtar"" Escape",2017,184,836
+7518-1,Cool Room Catchers,2003,500,113
+75182-1,Republic Fighter Tank,2017,168,303
+75183-1,"Darth Vader"" Transformation",2017,179,290
+75184-1,"""Star Wars"" Advent Calendar",2017,209,308
+75185-1,Tracker I,2017,613,557
+75186-1,The Arrowhead,2017,613,773
+75187-1,BB-8,2017,612,1105
+75188-1,Resistance Bomber,2017,612,778
+75189-1,First Order Heavy Assault Walker,2017,612,1374
+75190-1,First Order Star Destroyer,2017,612,1408
+75191-1,"Jedi Starfighter"" With Hyperdrive",2017,167,831
+75192-1,UCS Millennium Falcon,2017,171,0
+7522-1,Let's Party,2003,500,3
+7523-1,Hip Hair Set,2005,500,16
+7524-1,Glamour Girl Purse,2004,500,18
+7525-1,Sunshine Picture Stand,2004,500,22
+7526-1,My Starry Notes,2004,500,27
+7527-1,Pretty in Pink Beauty Set,2005,500,136
+7528-1,Designer Desk Set,2004,500,71
+7529-1,Stylin' Stationery Set,2004,500,75
+7530-1,Starry Decoration Set,2004,500,71
+753-1,Automatic Right Electric Switch,1969,242,5
+7531-1,The Ultimate Jewelry Collection,2004,500,152
+7533-1,Pretty in Pink Jewels-n-More,2005,500,66
+7534-1,Stylin' Citrus Jewels-n-More,2005,500,67
+7535-1,Groovy Grape Jewels-n-More,2005,500,67
+7537-1,Cool Carry-All Set,2005,500,72
+7540-1,Friends 4-Ever Jewels & More,2005,500,66
+754-1,Automatic Left Electric Switch,1969,242,5
+7545-1,Pink & Pearls Jewels 'n' More,2006,500,68
+7546-1,Tropical Breeze Jewels 'n' More,2006,500,73
+7548-1,Fun Flamingo Frames 'n' More,2006,500,79
+7549-1,Totally Tropical Decor Set,2006,500,132
+755-1,Left and Right Switches,1974,242,12
+75523-1,Scarif Stormtrooper,2017,158,89
+75524-1,Chirrut Îmwe,2017,158,87
+75525-1,Baze Malbus,2017,158,147
+75526-1,Elite TIE Fighter Pilot,2017,612,94
+75528-1,Rey,2017,612,83
+75529-1,Elite Praetorian Guard,2017,612,88
+75530-1,Chewbacca,2017,612,178
+7553-1,Advent Calendar 2011 City,2011,208,24
+7553-10,Advent Calendar 2011 City (Day 9) Ice Fisherman,2011,220,5
+7553-11,Advent Calendar 2011 City (Day 10) Camp Fire and Fishing Pole,2011,220,6
+75531-1,"Stormtrooper"" Commander",2017,158,100
+7553-12,Advent Calendar 2011 City (Day 11) Wall with Doorway,2011,220,15
+7553-13,Advent Calendar 2011 City (Day 12) Wall with Small Window,2011,220,15
+7553-14,Advent Calendar 2011 City (Day 13) Police Officer with Radio,2011,220,5
+7553-15,Advent Calendar 2011 City (Day 14) Forensic Lab,2011,220,10
+7553-16,Advent Calendar 2011 City (Day 15) Police Car Base,2011,220,14
+7553-17,Advent Calendar 2011 City (Day 16) Police Car Middle Section,2011,220,11
+7553-18,Advent Calendar 2011 City (Day 17) Police Car Top Section,2011,220,7
+7553-19,Advent Calendar 2011 City (Day 18) Robber with Crowbar,2011,220,5
+7553-2,Advent Calendar 2011 City (Day 1) Robber with Snowball,2011,220,6
+7553-20,Advent Calendar 2011 City (Day 19) Safe with Gold Bars,2011,220,10
+7553-21,Advent Calendar 2011 City (Day 20) Orange Snowmobile,2011,220,8
+75532-1,"Scout Trooper"" & Speeder Bike",2017,169,451
+7553-22,Advent Calendar 2011 City (Day 21) Sled with Crate,2011,220,6
+7553-23,Advent Calendar 2011 City (Day 22) White Snowmobile,2011,220,8
+7553-24,Advent Calendar 2011 City (Day 23) Dog with Bone,2011,220,2
+7553-25,Advent Calendar 2011 City (Day 24) Santa and Fireplace,2011,220,18
+7553-3,Advent Calendar 2011 City (Day 2) Catapult,2011,220,8
+7553-4,Advent Calendar 2011 City (Day 3) Police Officer with Handcuffs,2011,220,5
+7553-5,Advent Calendar 2011 City (Day 4) Wall with Barred Window,2011,220,14
+7553-6,Advent Calendar 2011 City (Day 5) Wall with Large Window,2011,220,18
+7553-7,Advent Calendar 2011 City (Day 6) Christmas Tree,2011,220,18
+7553-8,Advent Calendar 2011 City (Day 7) Skateboard and Gifts,2011,220,13
+7553-9,Advent Calendar 2011 City (Day 8) Bed,2011,220,5
+7554-1,Pearly Pink Bracelet & Bands,2006,500,63
+7557-1,Blooms & Butterflies,2005,500,14
+7558-1,Shells & Starfish,2005,500,14
+7559-1,Sports & Stars,2005,500,14
+756-1,Electric Crossing,1974,242,5
+7566-1,Farmer,2010,57,16
+7567-1,Traveler,2010,63,21
+7569-1,Desert Attack,2010,271,57
+7570-1,The Ostrich Race,2010,271,169
+757-1,Storage Tray,1987,443,1
+7571-1,The Fight for the Dagger,2010,271,259
+7572-1,Quest Against Time,2010,271,506
+7573-1,Battle of Alamut,2010,271,821
+7574-1,Advent Calendar 2005 Clikits,2005,213,24
+7574-10,Advent Calendar 2005 Clikits (Day 9) Hair Band,2005,222,4
+7574-11,Advent Calendar 2005 Clikits (Day 10) Paper Clip,2005,222,10
+7574-12,Advent Calendar 2005 Clikits (Day 11) Picture Frame,2005,222,6
+7574-13,Advent Calendar 2005 Clikits (Day 12) Gift Tag with Icons,2005,222,4
+7574-14,Advent Calendar 2005 Clikits (Day 13) Hair Band,2005,222,7
+7574-15,Advent Calendar 2005 Clikits (Day 14) Ring,2005,222,3
+7574-16,Advent Calendar 2005 Clikits (Day 15) Hair Band,2005,222,7
+7574-17,Advent Calendar 2005 Clikits (Day 16) Gift Tag with Icons,2005,222,4
+7574-18,Advent Calendar 2005 Clikits (Day 17) Icons,2005,222,8
+7574-19,Advent Calendar 2005 Clikits (Day 18) Bracelet,2005,222,9
+7574-2,Advent Calendar 2005 Clikits (Day 1) Ring,2005,222,3
+7574-20,Advent Calendar 2005 Clikits (Day 19) Necklace,2005,222,4
+7574-21,Advent Calendar 2005 Clikits (Day 20) Paper Clip,2005,222,3
+7574-22,Advent Calendar 2005 Clikits (Day 21) Bangle,2005,222,2
+7574-23,Advent Calendar 2005 Clikits (Day 22) Hair Band,2005,222,4
+7574-24,Advent Calendar 2005 Clikits (Day 23) Gift Tag with Icons,2005,222,4
+7574-25,Advent Calendar 2005 Clikits (Day 24) Hair Grip,2005,222,3
+7574-3,Advent Calendar 2005 Clikits (Day 2) Hair Band,2005,222,7
+7574-4,Advent Calendar 2005 Clikits (Day 3) Necklace,2005,222,4
+7574-5,Advent Calendar 2005 Clikits (Day 4) Icons,2005,222,8
+7574-6,Advent Calendar 2005 Clikits (Day 5) Bangle,2005,222,3
+7574-7,Advent Calendar 2005 Clikits (Day 6) Magnet,2005,222,3
+7574-8,Advent Calendar 2005 Clikits (Day 7) Trinket Box,2005,222,3
+7574-9,Advent Calendar 2005 Clikits (Day 8) Magnet,2005,222,3
+7575-1,Advent Calendar 2004 Clikits,2004,213,24
+7575-10,Advent Calendar 2004 Clikits (Day 9) Bracelet,2004,222,4
+7575-11,Advent Calendar 2004 Clikits (Day 10) Hair Band,2004,222,5
+7575-12,Advent Calendar 2004 Clikits (Day 11) Icons,2004,222,10
+7575-13,Advent Calendar 2004 Clikits (Day 12) Necklace,2004,222,8
+7575-14,Advent Calendar 2004 Clikits (Day 13) Hair Band,2004,222,4
+7575-15,Advent Calendar 2004 Clikits (Day 14) Gift Tag with Icons,2004,222,4
+7575-16,Advent Calendar 2004 Clikits (Day 15) Ring,2004,222,4
+7575-17,Advent Calendar 2004 Clikits (Day 16) Necklace,2004,222,4
+7575-18,Advent Calendar 2004 Clikits (Day 17) Bangle,2004,222,2
+7575-19,Advent Calendar 2004 Clikits (Day 18) Paper Clip / Hair Clip,2004,222,10
+7575-2,Advent Calendar 2004 Clikits (Day 1) Paper Clip / Hair Clip,2004,222,3
+7575-20,Advent Calendar 2004 Clikits (Day 19) Picture Frame,2004,222,8
+7575-21,Advent Calendar 2004 Clikits (Day 20) Hair Band,2004,222,4
+7575-22,Advent Calendar 2004 Clikits (Day 21) Gift Tag with Icons,2004,222,4
+7575-23,Advent Calendar 2004 Clikits (Day 22) Paper Clip / Hair Clip,2004,222,3
+7575-24,Advent Calendar 2004 Clikits (Day 23) Hair Band,2004,222,5
+7575-25,Advent Calendar 2004 Clikits (Day 24) Carry Case,2004,222,5
+7575-3,Advent Calendar 2004 Clikits (Day 2) Bracelet,2004,222,4
+7575-4,Advent Calendar 2004 Clikits (Day 3) Hair Band,2004,222,7
+7575-5,Advent Calendar 2004 Clikits (Day 4) Ring,2004,222,10
+7575-6,Advent Calendar 2004 Clikits (Day 5) Picture Frame,2004,222,6
+7575-7,Advent Calendar 2004 Clikits (Day 6) Bangle,2004,222,2
+7575-8,Advent Calendar 2004 Clikits (Day 7) Gift Tag with Icons,2004,222,4
+7575-9,Advent Calendar 2004 Clikits (Day 8) Hair Band,2004,222,4
+7577-1,Winter Wonder Palace,2006,319,163
+7578-1,Ultimate Princesses,2006,319,158
+7579-1,Blossom Fairy,2006,319,49
+7580-1,The Skating Princess,2007,319,22
+758-1,Storage Tray,1987,443,1
+7581-1,Winter Royal Stables,2007,319,82
+7582-1,Royal Summer Palace,2007,319,174
+75821-1,Piggy Car Escape,2016,606,74
+75822-1,Piggy Plane Attack,2016,606,168
+75823-1,Bird Island Egg Heist,2016,606,282
+75824-1,Pig City Teardown,2016,606,385
+75825-1,Piggy Pirate Ship,2016,606,615
+75826-1,King Pig’s Castle,2016,606,854
+75827-1,Firehouse Headquarters,2016,301,4640
+75828-1,Ecto1 & 2,2016,607,552
+7583-1,Playful Puppy,2008,322,83
+7585-1,Pony Stable,2008,323,215
+7586-1,Sunshine Home,2008,322,448
+75870-1,Chevrolet Corvette Z06,2016,601,176
+7587-1,Pony Jumping,2008,323,57
+75871-1,Ford Mustang GT,2016,601,188
+75872-1,Audi R18 e-tron quattro,2016,601,168
+75873-1,Audi R8 LMS ultra,2016,601,178
+75874-1,Chevrolet Camaro Drag Race,2016,601,448
+75875-1,Ford F-150 Raptor & Ford Model A Hot Rod,2016,601,671
+75876-1,Porsche 919 Hybrid and 917K Pit Lane,2016,601,742
+75877-1,Mercedes-AMG GT3,2017,601,203
+75878-1,Bugatti Chiron,2017,601,181
+75879-1,Scuderia Ferrari SF16-H,2017,601,184
+75880-1,McLaren 720S,2017,601,161
+75881-1,2016 Ford GT & 1966 Ford GT40,2017,601,366
+75882-1,Ferrari FXX K & Development Center,2017,601,493
+75883-1,"MERCEDES AMG PETRONAS Formula One"" Team",2017,601,940
+75899-1,LaFerrari,2015,601,167
+75900-1,Mummy Museum Mystery,2015,603,110
+7590-1,Woody and Buzz to the Rescue,2010,275,92
+75901-1,Mystery Plane Adventures,2015,603,127
+75902-1,The Mystery Machine,2015,603,300
+75903-1,Haunted Lighthouse,2015,603,435
+75904-1,Mystery Mansion,2015,603,856
+75908-1,458 Italia GT2,2015,601,156
+75909-1,McLaren P1,2015,601,171
+759-1,Storage Cabinet,1985,443,1
+75910-1,Porsche 918 Spyder,2015,601,154
+7591-1,Construct-a-Zurg,2010,275,118
+75911-1,McLaren Mercedes Pit Stop,2015,601,340
+75912-1,Porsche 911 GT Finish Line,2015,601,561
+75913-1,F14 T & Scuderia Ferrari Truck,2015,601,889
+75915-1,Pteranodon Capture,2015,602,173
+75916-1,Dilophosaurus Ambush,2015,602,246
+75917-1,Raptor Rampage,2015,602,321
+75918-1,T-Rex Tracker,2015,602,519
+75919-1,Indominus rex™ Breakout,2015,602,1154
+75920-1,Raptor Escape,2015,602,391
+7592-1,Construct-a-Buzz,2010,275,205
+7593-1,Buzz's Star Command Spaceship,2010,275,251
+7594-1,Woody's Roundup!,2010,275,502
+7595-1,Army Men on Patrol,2010,275,90
+7596-1,Trash Compactor Escape,2010,275,367
+7597-1,Western Train Chase,2010,275,584
+7598-1,Pizza Planet Truck Rescue,2010,275,225
+7599-1,Garbage Truck Getaway,2010,275,404
+76000-1,Arctic Batman vs. Mr. Freeze: Aquaman on Ice,2013,484,197
+7600-1,Advent Calendar 2007 Belville,2007,210,24
+7600-10,Advent Calendar 2007 Belville (Day 9) Sleigh,2007,218,9
+7600-11,Advent Calendar 2007 Belville (Day 10) Snowman,2007,218,9
+76001-1,The Bat vs. Bane: Tumbler Chase,2013,484,366
+7600-12,Advent Calendar 2007 Belville (Day 11) Turret,2007,218,4
+7600-13,Advent Calendar 2007 Belville (Day 12) Rabbit,2007,218,3
+7600-14,Advent Calendar 2007 Belville (Day 13) Fruit Cup and Bottles,2007,218,9
+7600-15,Advent Calendar 2007 Belville (Day 14) Flowers,2007,218,8
+7600-16,Advent Calendar 2007 Belville (Day 15) Vanity Case,2007,218,5
+7600-17,Advent Calendar 2007 Belville (Day 16) Fireplace,2007,218,20
+7600-18,Advent Calendar 2007 Belville (Day 17) Frog Book and Jewel Case,2007,218,6
+7600-19,Advent Calendar 2007 Belville (Day 18) Teddy Bear,2007,218,5
+7600-2,Advent Calendar 2007 Belville (Day 1) Fairy with Wand,2007,218,2
+7600-20,Advent Calendar 2007 Belville (Day 19) Jelly and Ice Cream,2007,218,10
+7600-21,Advent Calendar 2007 Belville (Day 20) Dog and Bowl,2007,218,3
+76002-1,Superman: Metropolis Showdown,2013,489,119
+7600-22,Advent Calendar 2007 Belville (Day 21) Toy Ball,2007,218,13
+7600-23,Advent Calendar 2007 Belville (Day 22) Festive Wreath,2007,218,12
+7600-24,Advent Calendar 2007 Belville (Day 23) Toy Castle,2007,218,17
+7600-25,Advent Calendar 2007 Belville (Day 24) Christmas Tree and Presents,2007,218,9
+7600-3,Advent Calendar 2007 Belville (Day 2) Bed,2007,218,13
+76003-1,Superman: Battle of Smallville,2013,489,417
+7600-4,Advent Calendar 2007 Belville (Day 3) Vanity Unit,2007,218,8
+76004-1,Spider-Man: Spider-Cycle Chase,2013,488,236
+7600-5,Advent Calendar 2007 Belville (Day 4) Jewel Chest,2007,218,11
+76005-1,Spider-Man: Daily Bugle Showdown,2013,488,473
+7600-6,Advent Calendar 2007 Belville (Day 5) Cat,2007,218,6
+76006-1,Iron Man: Extremis Sea Port Battle,2013,490,195
+7600-7,Advent Calendar 2007 Belville (Day 6) Tea Set,2007,218,9
+76007-1,Iron Man: Malibu Mansion Attack,2013,490,363
+7600-8,Advent Calendar 2007 Belville (Day 7) Chair and Desk Lamp,2007,218,15
+76008-1,Iron Man vs. The Mandarin: Ultimate Showdown,2013,490,91
+7600-9,Advent Calendar 2007 Belville (Day 8) Kitten,2007,218,12
+76009-1,Superman: Black Zero Escape,2013,489,166
+760-1,Storage Cabinet,1985,443,5
+76010-1,The Penguin Face Off,2014,484,136
+76011-1,Batman: Man-Bat Attack,2014,484,183
+76012-1,Batman: The Riddler Chase,2014,484,303
+76013-1,The Joker Steam Roller,2014,484,485
+76014-1,Spider-Trike vs. Electro,2014,488,69
+76015-1,Doc Ock Truck Heist,2014,488,236
+76016-1,Spider-Helicopter Rescue,2014,488,298
+76017-1,Captain America vs. Hydra,2014,487,179
+76018-1,Hulk Lab Smash,2014,487,396
+76019-1,Starblaster Showdown,2014,483,195
+760-2,London Bus,1975,397,110
+76020-1,Knowhere Escape Mission,2014,483,432
+7602-1,Jeep,2006,22,46
+76021-1,The Milano Spaceship Rescue,2014,483,664
+76022-1,X-Men vs. The Sentinel,2014,491,335
+76023-1,The Tumbler,2014,485,1866
+76025-1,Green Lantern vs. Sinestro,2015,486,174
+76026-1,Gorilla Grodd Goes Bananas,2015,486,346
+76027-1,Black Manta Deep Sea Strike,2015,486,386
+76028-1,Darkseid Invasion,2015,486,543
+76029-1,Iron Man vs. Ultron,2015,487,92
+76030-1,Avengers Hydra Showdown,2015,487,219
+76031-1,The Hulk Buster Smash,2015,487,247
+76032-1,The Avengers Quinjet Chase,2015,487,720
+76034-1,Batboat Harbor Pursuit,2015,484,263
+76035-1,Jokerland,2015,484,1034
+76036-1,Carnage's Shield Sky Attack,2015,493,97
+76037-1,Rhino and Sandman Supervillain Team-up,2015,493,385
+76038-1,Attack on Avengers Tower,2015,487,513
+76039-1,Ant-Man Final Battle,2015,493,194
+76040-1,Brainiac Attack,2015,486,178
+7604-1,Dinosaur,2006,22,34
+76041-1,The Hydra Fortress Smash,2015,487,404
+76042-1,The SHIELD Helicarrier,2015,487,2995
+76044-1,Clash of the Heroes,2016,482,91
+76045-1,Kryptonite Interception,2016,482,308
+76046-1,Heroes of Justice: Sky High Battle,2016,482,516
+76047-1,Black Panther Pursuit,2016,493,284
+76048-1,Iron Skull Sub Attack,2016,487,333
+76049-1,Avenjet Space Mission,2016,487,521
+76050-1,Crossbones’ Hazard Heist,2016,493,178
+76051-1,Super Hero Airport Battle,2016,482,814
+76052-1,Batman Classic TV Series - Batcave,2016,484,2519
+76053-1,Gotham City Cycle Chase,2016,484,224
+76054-1,Batman: Scarecrow Harvest of Fear,2016,484,561
+76055-1,Batman: Killer Croc Sewer Smash,2016,484,757
+76056-1,Batman: Rescue from Ra's al Ghul,2016,484,256
+76057-1,Spider-Man: Web Warriors Ultimate Bridge Battle,2016,488,1090
+76058-1,Spider-Man: Ghost Rider Team-up,2016,488,216
+76059-1,Spider-Man: Doc Ock's Tentacle Trap,2016,488,445
+76060-1,Doctor Strange's Sanctum Sanctorum,2016,493,357
+7606-1,Frog,2006,22,33
+76061-1,Mighty Micros: Batman™ vs. Catwoman™,2016,482,79
+76062-1,Mighty Micros: Robin™ vs. Bane™,2016,482,77
+76063-1,Mighty Micros: The Flash™ vs. Captain Cold™,2016,482,88
+76064-1,Mighty Micros: Spider-Man vs. Green Goblin,2016,482,85
+76065-1,Mighty Micros: Captain America vs. Red Skull,2016,482,95
+76066-1,Mighty Micros: Hulk vs. Ultron,2016,482,80
+76067-1,Tanker Truck Takedown,2016,493,329
+76068-1,Mighty Micros: Superman™ vs. Bizarro™,2017,489,93
+76069-1,Mighty Micros: Batman vs. Killer Moth,2017,484,83
+76070-1,Mighty Micros: Wonder Woman vs. Doomsday,2017,482,85
+7607-1,Butterfly,2006,22,29
+76071-1,Mighty Micros: Spider-Man vs. Scorpion ,2017,488,79
+76072-1,Mighty Micros: Iron Man vs. Thanos,2017,482,94
+76073-1,Mighty Micros: Wolverine vs. Magneto,2017,493,84
+76075-1,"Wonder Woman"" Warrior Battle",2017,482,285
+76076-1,Captain America Jet Pursuit,2017,493,159
+76077-1,Iron Man: Detroit Steel Strikes,2017,493,376
+76078-1,Hulk vs. Red Hulk,2017,493,374
+76079-1,Ravager Attack,2017,483,196
+76080-1,Ayesha's Revenge,2017,483,321
+7608-1,Shark,2006,22,27
+76081-1,The Milano vs. The Abilisk,2017,483,458
+76082-1,ATM Heist Battle,2017,493,184
+76083-1,Beware the Vulture,2017,493,374
+76084-1,The Ultimate Battle for Asgard,2017,493,399
+76085-1,Battle of Atlantis,2017,482,196
+76086-1,Knightcrawler Tunnel Attack,2017,482,621
+76087-1,Flying Fox: Batmobile Airlift Attack,2017,482,953
+76088-1,Thor vs. Hulk: Arena Clash,2017,596,491
+7609-1,Helicopter,2006,24,28
+7610-1,Speedboat,2006,22,18
+7611-1,Police Car,2008,112,35
+7612-1,Muscle Car,2008,120,37
+7613-1,Track Racer,2008,120,34
+7615-1,Basic Blue Bucket,2009,37,471
+7616-1,Basic Red Bucket,2009,37,428
+7620-1,Motorcycle Chase,2008,266,79
+7621-1,Lost Tomb,2008,267,277
+7622-1,Race for the Stolen Treasure,2008,267,275
+7623-1,Temple Escape,2008,267,553
+7624-1,Jungle Duel,2008,265,91
+7625-1,River Chase,2008,265,233
+7626-1,Jungle Cutter,2008,265,515
+7627-1,Temple of the Crystal Skull,2008,265,929
+7628-1,Peril in Peru,2008,265,625
+7630-1,Front-End Loader,2009,56,107
+7631-1,Dump Truck,2009,56,184
+7632-1,Crawler Crane,2009,56,478
+7633-1,Construction Site,2009,56,897
+7634-1,Tractor,2009,57,77
+7635-1,4WD with Horse Trailer,2009,57,176
+7636-1,Combine Harvester,2009,57,364
+7637-1,Farm,2009,57,613
+7638-1,Tow Truck,2009,63,128
+7639-1,Camper,2009,63,164
+7641-1,City Corner,2009,63,484
+7642-1,Garage,2009,63,957
+7643-1,Air Show Plane,2009,53,114
+7644-1,MX-81 Hypersonic Operations Aircraft,2008,137,794
+7645-1,MT-61 Crystal Reaper,2008,137,598
+764521-1,Co-Pack,2008,52,0
+7646-1,ETX Alien Infiltrator,2008,137,328
+7647-1,MX-41 Switch Fighter,2008,137,234
+7648-1,MT-21 Mobile Mining Unit,2008,137,129
+7649-1,MT-201 Ultra-Drill Walker,2008,137,757
+7654-1,Droids Battle Pack,2007,168,102
+7655-1,Clone Troopers Battle Pack,2007,168,58
+7656-1,General Grievous Starfighter,2007,168,232
+7657-1,AT-ST,2007,169,243
+7658-1,Y-wing Fighter,2007,169,454
+7659-1,Imperial Landing Craft,2007,169,471
+7660-1,Naboo N-1 Starfighter and Vulture Droid,2007,166,279
+7661-1,Jedi Starfighter with Hyperdrive Booster Ring,2007,168,574
+7662-1,Trade Federation MTT,2007,166,1326
+7663-1,Sith Infiltrator,2007,166,310
+7664-1,TIE Crawler,2007,170,546
+7665-1,Republic Cruiser (Limited Edition - with R2-R7),2007,166,920
+7666-1,Hoth Rebel Base [Limited Edition - with K-3PO],2007,169,557
+7667-1,Imperial Dropship,2008,170,80
+7668-1,Rebel Scout Speeder,2008,170,81
+7669-1,Anakin's Jedi Starfighter,2008,165,152
+7669-2,Anakin's Jedi Starfighter Clone Wars White Box,2008,165,144
+7670-1,Hailfire Droid & Spider Droid,2008,167,249
+7670-2,Hailfire Droid & Spider Droid Clone Wars White Box,2008,165,249
+7671-1,AT-AP Walker,2008,168,392
+7672-1,Rogue Shadow,2008,170,481
+7673-1,Magna Guard Starfighter,2008,165,430
+7674-1,V-19 Torrent,2008,165,470
+7675-1,AT-TE Walker,2008,165,809
+7676-1,Republic Attack Gunship,2008,165,1033
+7678-1,Droid Gunship,2008,168,323
+7679-1,Republic Fighter Tank,2008,165,595
+7680-1,The Twilight - Limited Edition,2008,165,887
+7681-1,Separatist Spider Droid,2008,165,214
+7682-1,Shanghai Chase,2009,268,244
+7683-1,Fight on the Flying Wing,2009,267,375
+7684-1,Pig Farm & Tractor,2010,57,256
+7685-1,Dozer,2009,56,351
+7686-1,Helicopter Transporter,2009,63,381
+7687-1,Advent Calendar 2009 City,2009,208,24
+7687-10,Advent Calendar 2009 City (Day 9) Traffic Light,2009,220,7
+7687-11,Advent Calendar 2009 City (Day 10) Letter Carrier,2009,220,5
+7687-12,Advent Calendar 2009 City (Day 11) ATV,2009,220,17
+7687-13,Advent Calendar 2009 City (Day 12) Crate and Present,2009,220,9
+7687-14,Advent Calendar 2009 City (Day 13) Chef and Cup,2009,220,5
+7687-15,Advent Calendar 2009 City (Day 14) Coffee Stand,2009,220,17
+7687-16,Advent Calendar 2009 City (Day 15) Park Bench,2009,220,9
+7687-17,Advent Calendar 2009 City (Day 16) Street Cleaner,2009,220,5
+7687-18,Advent Calendar 2009 City (Day 17) Wheelbarrow and Snowballs,2009,220,14
+7687-19,Advent Calendar 2009 City (Day 18) Fountain,2009,220,9
+7687-2,Advent Calendar 2009 City (Day 1) Minifigure and Snowballs,2009,220,7
+7687-20,Advent Calendar 2009 City (Day 19) Child and RC Car,2009,220,12
+7687-21,Advent Calendar 2009 City (Day 20) RC Car Cones and Flag,2009,220,15
+7687-22,Advent Calendar 2009 City (Day 21) Lumberjack,2009,220,6
+7687-23,Advent Calendar 2009 City (Day 22) Chainsaw Sawhorse and Log,2009,220,14
+7687-24,Advent Calendar 2009 City (Day 23) Christmas Tree,2009,220,21
+7687-25,Advent Calendar 2009 City (Day 24) Santa and Fireplace,2009,220,26
+7687-3,Advent Calendar 2009 City (Day 2) Snowman,2009,220,10
+7687-4,Advent Calendar 2009 City (Day 3) Sleigh,2009,220,5
+7687-5,Advent Calendar 2009 City (Day 4) Minifigure on Skates,2009,220,7
+7687-6,Advent Calendar 2009 City (Day 5) Skate Stand,2009,220,12
+7687-7,Advent Calendar 2009 City (Day 6) Street Light with Garland,2009,220,12
+7687-8,Advent Calendar 2009 City (Day 7) Police Officer with Loudhailer,2009,220,5
+7687-9,Advent Calendar 2009 City (Day 8) Road Barrier,2009,220,11
+7688-1,Sports Plane,2010,53,105
+7690-1,MB-01 Eagle Command Base,2007,137,763
+7691-1,ETX Alien Mothership Assault,2007,137,433
+7692-1,MX-71 Recon Dropship,2007,137,434
+7693-1,ETX Alien Strike,2007,137,245
+7694-1,MT-31 Trike,2007,137,94
+7695-1,MX-11 Astro Fighter,2007,137,56
+7696-1,Commuter Jet,2011,53,107
+7697-1,MT-51 Claw-Tank Ambush,2007,137,373
+7699-1,MT-101 Armored Drilling Unit,2007,137,634
+7700-1,Stealth Hunter,2006,389,163
+770-1,Rescue Set,1976,420,142
+7701-1,Grand Titan,2006,389,196
+7702-1,Thunder Fury,2006,389,196
+7703-1,Fire Vulture,2006,389,176
+7704-1,Sonic Phantom,2006,389,216
+7705-1,Gate Assault,2006,389,401
+7706-1,Mobile Defense Tank,2006,389,371
+7707-1,Striking Venom,2006,389,645
+7708-1,Uplink,2006,389,68
+7709-1,Sentai Fortress,2006,389,1457
+7710-1,Push-Along Passenger Steam Train,1980,235,432
+7711-1,Sentry,2006,389,77
+7712-1,Supernova,2006,389,286
+7713-1,Bridge Walker vs. White Lightning,2006,389,652
+7714-1,Golden Guardian [Limited Gold Edition],2007,389,266
+7715-1,Push-Along Passenger Steam Train,1985,235,448
+7716-1,QUICK Good Guy White,2006,324,21
+7717-1,QUICK Bad Guy Green,2006,324,26
+7718-1,QUICK Bad Guy Yellow,2006,324,26
+7719-1,QUICK Good Guy Red,2006,324,21
+7720-1,"Diesel Freight Train Set, battery",1980,235,427
+7721-1,Combat Crawler X2,2007,389,580
+7722-1,"Steam Cargo Train, battery",1985,235,497
+7723-1,Police Pontoon Plane,2008,61,214
+7724-1,Advent Calendar 2008 City,2008,208,24
+7724-10,Advent Calendar 2008 City (Day 9) Ladder,2008,220,3
+7724-11,Advent Calendar 2008 City (Day 10) Chef and Paddle,2008,220,5
+7724-12,Advent Calendar 2008 City (Day 11) Table and Pizzas,2008,220,13
+7724-13,Advent Calendar 2008 City (Day 12) Oven,2008,220,9
+7724-14,Advent Calendar 2008 City (Day 13) Diver and Spear Gun,2008,220,1
+7724-15,Advent Calendar 2008 City (Day 14) Life Vest Fins and Bouy,2008,220,6
+7724-16,Advent Calendar 2008 City (Day 15) Underwater Scooter,2008,220,9
+7724-17,Advent Calendar 2008 City (Day 16) Police Officer and Camera,2008,220,2
+7724-18,Advent Calendar 2008 City (Day 17) Mug Shot Studio,2008,220,8
+7724-19,Advent Calendar 2008 City (Day 18) Criminal with Handcuffs,2008,220,5
+7724-2,Advent Calendar 2008 City (Day 1) Minifigure and Drumstick,2008,220,5
+7724-20,Advent Calendar 2008 City (Day 19) Train Worker,2008,220,4
+7724-21,Advent Calendar 2008 City (Day 20) Pallet Jack,2008,220,16
+7724-22,Advent Calendar 2008 City (Day 21) Pallet of Bottles,2008,220,18
+7724-23,Advent Calendar 2008 City (Day 22) Hiker with Ice Pick,2008,220,6
+7724-24,Advent Calendar 2008 City (Day 23) Snowmobile,2008,220,16
+7724-25,Advent Calendar 2008 City (Day 24) Female and Snowman,2008,220,15
+7724-3,Advent Calendar 2008 City (Day 2) Barbecue,2008,220,10
+7724-4,Advent Calendar 2008 City (Day 3) Table Cup and Frying Pan,2008,220,4
+7724-5,Advent Calendar 2008 City (Day 4) Female with Ice Cream,2008,220,5
+7724-6,Advent Calendar 2008 City (Day 5) Freezer Chest and Umbrella,2008,220,6
+7724-7,Advent Calendar 2008 City (Day 6) Ice Cream Cart and Sundae,2008,220,11
+7724-8,Advent Calendar 2008 City (Day 7) Fireman and Radio,2008,220,5
+7724-9,Advent Calendar 2008 City (Day 8) Kitten in a Tree,2008,220,6
+7725-1,Electric Passenger Train,1981,234,488
+7726-1,Coast Guard Truck with Speed Boat,2008,55,361
+7727-1,Freight Steam Train,1983,234,569
+7730-1,Electric Goods Train,1980,234,519
+7731-1,Mail Van,2008,50,65
+7732-1,Air Mail,2008,50,87
+7733-1,Truck & Forklift,2008,54,342
+7734-1,Cargo Plane,2008,54,462
+7735-1,Freight Train,1985,234,516
+7736-1,Coast Guard Quad Bike,2008,55,33
+7737-1,Off-Road Vehicle and Jet Scooter,2008,55,130
+7738-1,Coast Guard Helicopter and Life Raft,2008,55,447
+7739-1,Coast Guard Patrol Boat and Tower,2008,55,444
+7740-1,Inter-City Passenger Train,1980,234,784
+7741-1,Police Helicopter,2008,61,93
+7743-1,Police Command Center,2008,61,523
+7744-1,Police Headquarters,2008,61,957
+7745-1,High-Speed City Express Passenger Train,1985,234,735
+7746-1,Single-Drum Roller,2009,56,207
+7747-1,Wind Turbine Transport,2009,63,435
+7748-1,Corporate Alliance Tank Droid,2009,165,216
+7749-1,Echo Base,2009,169,155
+7750-1,Steam Engine,1980,234,267
+775-1,Fire Fighter Ship,1978,363,141
+7751-1,Ahsoka's Starfighter and Vulture Droid,2009,165,290
+7752-1,Count Dooku's Solar Sailer,2009,165,384
+7753-1,Pirate Tank,2009,165,371
+7754-1,Home One Mon Calamari Star Cruiser - Limited Edition,2009,169,788
+7755-1,Diesel Heavy Shunting Locomotive,1983,234,163
+7760-1,Diesel Shunter Locomotive,1980,234,151
+7770-1,Deep Sea Treasure Hunter,2007,310,79
+7771-1,Angler Ambush,2007,310,135
+7772-1,Lobster Strike,2007,310,224
+7773-1,Tiger Shark Attack,2007,310,341
+7774-1,Crab Crusher,2007,310,582
+7775-1,Aquabase Invasion,2007,310,850
+7776-1,The Shipwreck,2007,310,245
+7777-1,Idea Book 7777,1981,499,1
+7778-1,Midi-Scale Millennium Falcon,2009,169,355
+7779-1,The Batman Dragster: Catwoman Pursuit,2006,484,92
+7780-1,The Batboat: Hunt for Killer Croc,2006,484,194
+7781-1,The Batmobile: Two-Face's Escape,2006,484,392
+7782-1,The Batwing: The Joker's Aerial Assault,2006,484,529
+7783-1,The Batcave: The Penguin and Mr. Freeze's Invasion,2006,484,1090
+7784-1,The Batmobile Ultimate Collectors' Edition,2006,485,1045
+7785-1,Arkham Asylum,2006,484,868
+7786-1,The Batcopter: The Chase for the Scarecrow,2007,484,299
+7787-1,The Bat-Tank: The Riddler and Bane's Hideout,2007,484,651
+7789-1,Lotso's Dump Truck,2010,275,129
+7793-1,LEGO Standard Starter Set,2006,37,483
+7795-1,LEGO Deluxe Starter Set,2006,37,1092
+7796-1,House,2008,34,53
+7797-1,Bi-Plane,2008,24,37
+7798-1,Stegosaurus,2008,31,48
+7799-1,Cargo Chopper,2008,22,38
+7800-1,Off Road Racer,2009,120,28
+780-1,Road Construction Set,1976,416,159
+7801-1,Red Racer Polybag,2009,120,41
+7802-1,Black Racer Polybag,2009,120,28
+7803-1,Jeep,2009,30,38
+7804-1,Green Lizard,2009,22,33
+7805-1,Shark,2009,22,44
+7808-1,Yellow Airplane,2009,22,34
+7810-1,Push-Along Steam Engine,1980,235,96
+781-1,Storage Case,1982,473,1
+7813-1,Shell Tanker Wagon,1986,235,120
+7814-1,Crane Wagon with Small Container,1980,235,113
+7815-1,Passenger Carriage / Sleeper,1983,235,228
+7816-1,Shell Tanker Wagon,1980,235,111
+7817-1,Crane Wagon,1985,235,148
+7818-1,Passenger Carriage,1980,235,115
+7819-1,Postal Container Wagon Covered,1983,233,182
+7820-1,Mail Van,1980,233,211
+782-1,Storage Case,1984,473,1
+7821-1,Overhead Gantry and Lighting Maintenance Wagon,1983,235,90
+7822-1,Railway Station,1980,235,382
+7823-1,Container Crane Depot,1986,234,483
+7824-1,Railway Station,1983,235,478
+7825-1,Creator Bucket,2002,37,500
+7830-1,Small Blue Bucket,2002,37,200
+783-1,Storage Case,1985,473,1
+7831-1,Make-believe Bucket,2002,37,200
+7832-1,Small Blue Bucket,2002,37,200
+7834-1,Level Crossing Manual,1980,234,95
+7835-1,Manual Road Crossing,1985,235,134
+7836-1,Halloween Bucket,2003,206,200
+7837-1,Build and Create,2002,37,600
+7838-1,Freight Loading Depot with Wagon,1983,235,324
+7839-1,Car Transport Depot,1986,234,341
+7844-1,Duplo Airport Rescue Truck,2004,504,28
+7848-1,Toys 'R' Us Truck,2010,63,343
+7850-1,8 Straight Rails Gray 4.5v,1980,243,32
+785-1,Red Box,1973,473,1
+7851-1,8 Curved Rails Gray 4.5v,1980,243,32
+7852-1,Left and Right Points Manual Gray 4.5v,1980,243,14
+7853-1,"Crossing, Gray 4.5v",1980,243,5
+7854-1,8 Straight Electric Rails Gray 12v,1980,242,8
+7855-1,8 Curved Electric Rails Gray 12v,1980,242,8
+7856-1,Left and Right Manual Points with Electric Rails,1980,242,16
+7857-1,"Crossing, Electric Rails Gray 12v",1980,242,5
+78579-1,Action Pack (Target Exclusive),1998,50,4
+78579-2,Action Pack,1998,50,4
+7858-1,Remote Controlled Points Right 12v,1980,242,12
+7859-1,Remote Controlled Points Left 12v,1980,242,12
+78597-1,Extreme Action Pack,1999,87,3
+7860-1,Remote Controlled Signal 12v,1980,242,25
+786-1,Storage Cloth,1980,473,1
+7861-1,Lighting Set Electric 12v,1980,242,28
+7862-1,Remote Controlled Decoupling,1981,242,16
+7863-1,Remote Controlled Point Motor,1980,242,7
+7864-1,Transformer / Controller 12V,1980,242,34
+7865-1,12V Motor,1980,242,19
+7866-1,Remote Controlled Road Crossing,1983,234,194
+7867-1,12V Train Light Posts,1983,242,52
+78675-1,Exclusive RoboRiders Six Set Limited Edition Value Pack,2000,16,6
+7868-1,Mace Windu's Jedi Starfighter,2011,165,308
+7869-1,Battle for Geonosis,2011,165,335
+7870-1,Hans Christian Andersen Bucket,2005,37,499
+787-1,Play Mat with Drawstring,1977,473,1
+7871-1,Whale,2007,22,31
+7872-1,Lion,2007,31,57
+7873-1,Airplane,2007,24,38
+7875-1,Backhoe,2007,26,39
+7876-1,Cement Mixer,2007,26,44
+7877-1,Naboo Starfighter,2011,166,317
+78777-1,Alien Discovery,2000,135,3
+7879-1,Hoth Echo Base,2011,169,764
+78800-1,Soccer Bonus Set,2000,462,3
+7880-1,Big Pirate Ship,2006,504,34
+7881-1,Pirate Ship,2006,504,24
+7882-1,Shark Attack,2006,504,11
+7883-1,Treasure Hunt,2006,504,10
+7884-1,Batman's Buggy: The Escape of Mr. Freeze,2008,484,76
+7885-1,Robin's Scuba Jet: Attack of The Penguin,2008,484,207
+7886-1,The Batcycle: Harley Quinn's Hammer Truck,2008,484,273
+7888-1,The Tumbler: Joker's Ice Cream Surprise,2008,484,456
+7890-1,Ambulance,2006,60,117
+789-1,Storage Cloth,1987,473,1
+7891-1,Airport Firetruck,2006,53,147
+7892-1,Hospital,2006,60,385
+7893-1,Passenger Plane,2006,53,403
+7893-2,Passenger Plane - ANA version,2006,53,386
+7894-1,Airport,2006,53,704
+7894-2,Airport - ANA Version,2007,53,685
+7895-1,Switching Tracks,2006,245,8
+7896-1,Straight & Curved Rails,2006,245,16
+7897-1,Passenger Train,2006,240,498
+7898-1,Cargo Train Deluxe,2006,240,834
+7899-1,Police Boat,2006,61,199
+79000-1,Riddles for The Ring,2012,563,105
+7900-1,Heavy Loader,2006,56,348
+79001-1,Escape from Mirkwood Spiders,2012,563,298
+79002-1,Attack of the Wargs,2012,563,400
+79003-1,An Unexpected Gathering,2012,563,666
+79004-1,Barrel Escape,2012,563,333
+79005-1,The Wizard Battle,2013,567,113
+79006-1,The Council of Elrond,2013,567,242
+79007-1,Battle at the Black Gate,2013,569,655
+79008-1,Pirate Ship Ambush,2013,569,754
+79010-1,The Goblin King Battle,2012,563,838
+7901-1,Airplane Mechanic,2006,53,31
+79011-1,Dol Guldur Ambush,2013,564,217
+79012-1,Mirkwood Elf Army,2013,564,276
+79013-1,Lake-town Chase,2013,564,469
+79014-1,Dol Guldur Battle,2013,564,795
+79015-1,Witch-King Battle,2014,565,101
+79016-1,Attack on Lake-town,2014,565,313
+79017-1,The Battle of the Five Armies,2014,565,471
+79018-1,The Lonely Mountain,2014,565,864
+7902-1,Doctor's Car,2006,60,65
+7903-1,Rescue Helicopter,2006,60,248
+7904-1,Advent Calendar 2006 City,2006,208,24
+7904-10,Advent Calendar 2006 City (Day 9) Computer Desk & Chair,2006,220,8
+7904-11,Advent Calendar 2006 City (Day 10) Train Conductor with Signal Paddle,2006,220,6
+7904-12,Advent Calendar 2006 City (Day 11) Level Crossing and Signal,2006,220,22
+7904-13,Advent Calendar 2006 City (Day 12) Train Handcar,2006,220,17
+7904-14,Advent Calendar 2006 City (Day 13) Street Cleaner,2006,220,5
+7904-15,Advent Calendar 2006 City (Day 14) Street Cleaner's Pushcart,2006,220,13
+7904-16,Advent Calendar 2006 City (Day 15) Phone Kiosk,2006,220,12
+7904-17,Advent Calendar 2006 City (Day 16) Police Officer with Signal Paddle,2006,220,6
+7904-18,Advent Calendar 2006 City (Day 17) Police Barricade and Speed Limit Sign,2006,220,9
+7904-19,Advent Calendar 2006 City (Day 18) Speed Radar Gun,2006,220,7
+7904-2,Advent Calendar 2006 City (Day 1) Construction Worker,2006,220,5
+7904-20,Advent Calendar 2006 City (Day 19) Mechanic,2006,220,5
+7904-21,Advent Calendar 2006 City (Day 20) Tool Chest,2006,220,11
+7904-22,Advent Calendar 2006 City (Day 21) Work Bench with Vise,2006,220,13
+7904-23,Advent Calendar 2006 City (Day 22) Firefighter,2006,220,7
+7904-24,Advent Calendar 2006 City (Day 23) Water Cannon and Burning Oil Drum,2006,220,11
+7904-25,Advent Calendar 2006 City (Day 24) Santa Tree Gifts & Fireplace,2006,220,31
+7904-3,Advent Calendar 2006 City (Day 2) Traffic Control Sticks,2006,220,15
+7904-4,Advent Calendar 2006 City (Day 3) Traffic Cone Barricade Cement Finisher,2006,220,12
+7904-5,Advent Calendar 2006 City (Day 4) Airport Ground Crew,2006,220,8
+7904-6,Advent Calendar 2006 City (Day 5) Hand Truck and Luggage,2006,220,4
+7904-7,Advent Calendar 2006 City (Day 6) X-Ray Machine,2006,220,15
+7904-8,Advent Calendar 2006 City (Day 7) Doctor with bag,2006,220,5
+7904-9,Advent Calendar 2006 City (Day 8) Hospital Bed with IV Stand,2006,220,10
+7905-1,Building Crane,2006,56,726
+7906-1,Fireboat,2007,58,175
+7907-1,Advent Calendar 2007 City,2007,208,28
+7907-10,Advent Calendar 2007 City (Day 9) Radar,2007,220,10
+7907-11,Advent Calendar 2007 City (Day 10) Dock Worker,2007,220,4
+7907-12,Advent Calendar 2007 City (Day 11) Small Dock with Life Preserver,2007,220,9
+7907-13,Advent Calendar 2007 City (Day 12) Hand Truck and Load,2007,220,6
+7907-14,Advent Calendar 2007 City (Day 13) Mechanic and Wrench,2007,220,5
+7907-15,Advent Calendar 2007 City (Day 14) Car Wash Kiosk,2007,220,11
+7907-16,Advent Calendar 2007 City (Day 15) Cash Register and Display,2007,220,11
+7907-17,Advent Calendar 2007 City (Day 16) Train Worker and Briefcase,2007,220,5
+7907-18,Advent Calendar 2007 City (Day 17) Bench with Clock,2007,220,11
+7907-19,Advent Calendar 2007 City (Day 18) Signal Mast,2007,220,9
+7907-2,Advent Calendar 2007 City (Day 1) Firefighter and Saw,2007,220,5
+7907-20,Advent Calendar 2007 City (Day 19) Sanitary Engineer and Broom,2007,220,5
+7907-21,Advent Calendar 2007 City (Day 20) Dustbin and Shovel,2007,220,11
+7907-22,Advent Calendar 2007 City (Day 21) Dumpster,2007,220,13
+7907-23,Advent Calendar 2007 City (Day 22) Policeman with Megaphone,2007,220,5
+7907-24,Advent Calendar 2007 City (Day 23) Computer Desk and Chair,2007,220,10
+7907-25,Advent Calendar 2007 City (Day 24) Christmas Tree,2007,220,27
+7907-3,Advent Calendar 2007 City (Day 2) Fire Hydrant and Tools,2007,220,13
+7907-4,Advent Calendar 2007 City (Day 3) Crate with Burning Cylinders,2007,220,10
+7907-5,Advent Calendar 2007 City (Day 4) Construction Worker and Pickaxe,2007,220,5
+7907-6,Advent Calendar 2007 City (Day 5) Barricade,2007,220,12
+7907-7,Advent Calendar 2007 City (Day 6) Directional Sign,2007,220,22
+7907-8,Advent Calendar 2007 City (Day 7) Airline Worker and Radio,2007,220,5
+7907-9,Advent Calendar 2007 City (Day 8) Luggage Cart,2007,220,9
+79100-1,Kraang Lab Escape,2013,570,90
+7910-1,Robot Promotional (Duracell),2004,204,29
+79101-1,Shredder's Dragon Bike,2013,570,197
+79102-1,Stealth Shell in Pursuit,2013,570,160
+79103-1,Turtle Lair Attack,2013,570,485
+79104-1,The Shellraiser Street Chase,2013,570,618
+79104-2,The Shellraiser Street Chase V2.0,2013,570,649
+79104-3,The Shellraiser Street Chase (Technic Base Version),2013,570,635
+79105-1,Baxter Robot Rampage,2013,570,396
+79106-1,Cavalry Builder Set,2013,575,70
+79107-1,Comanche Camp,2013,575,161
+79108-1,Stagecoach Escape,2013,575,279
+79109-1,Colby City Showdown,2013,575,585
+791-1,Storage Box - Red,1972,473,1
+79110-1,Silver Mine Shootout,2013,575,643
+7911-1,Ship Promotional (Duracell),2004,204,33
+79111-1,Constitution Train Chase,2013,575,701
+79115-1,Turtle Van Takedown,2014,570,367
+79116-1,Big Rig Snow Getaway,2014,570,741
+79117-1,Turtle Lair Invasion,2014,570,885
+79118-1,Karai Bike Escape,2014,570,87
+79119-1,Mutation Chamber Unleashed,2014,570,195
+79120-1,T-Rawket Sky Strike,2014,570,285
+7912-1,Helicopter Promotional (Duracell),2004,204,26
+79121-1,Turtle Sub Undersea Chase,2014,570,682
+79122-1,Shredder’s Lair Rescue,2014,570,476
+7913-1,Clone Trooper Battle Pack,2011,165,85
+7914-1,Mandalorian Battle Pack,2011,165,68
+7915-1,Imperial V-wing Starfighter,2011,168,138
+7917-1,McDonald's Sports Set Number 3 - Blue Basketball Player #22,2004,459,4
+7918-1,McDonald's Sports Set Number 8 - Green Basketball Player #35,2004,459,4
+7919-1,McDonald's Sports Set Number 4 - White Hockey Player #5,2004,461,3
+7920-1,McDonald's Sports Set Number 5 - Blue Hockey Player #4,2004,461,3
+792-1,Storage Box - White,1972,473,1
+7921-1,McDonald's Sports Set Number 7 - Gray Vest Skateboarder,2004,460,5
+7922-1,McDonald's Sports Set Number 6 - Orange Vest Snowboarder,2004,460,4
+7923-1,McDonald's Sports Set Number 1 - White Soccer Player #4,2004,462,2
+7924-1,McDonald's Sports Set Number 2 - Red Soccer Player #11,2004,462,2
+7929-1,The Battle of Naboo,2011,166,241
+7930-1,Bounty Hunter Gunship,2011,165,389
+793-1,Storage Box - Blue,1972,473,1
+7931-1,T6 Jedi Shuttle,2011,165,391
+7936-1,Level Crossing,2010,233,138
+7937-1,Train Station,2010,233,367
+7938-1,Passenger Train,2010,240,668
+7939-1,Cargo Train,2010,240,838
+794-1,Storage Box - Yellow,1972,473,1
+7942-1,Off-Road Fire Rescue,2007,58,130
+7944-1,Fire Hovercraft,2007,58,273
+7945-1,Fire Station,2007,58,603
+7946-1,King's Castle,2010,196,932
+7947-1,Prison Tower Rescue,2010,196,365
+7948-1,Outpost Attack,2010,196,193
+7949-1,Prison Carriage Rescue,2010,196,50
+7950-1,Knight's Showdown,2010,196,61
+795-1,"Baseplates, Red and Blue",1971,473,2
+7952-1,Advent Calendar 2010 Kingdoms,2010,211,24
+7952-10,Advent Calendar 2010 Kingdoms (Day 9) - Chest with Jewels,2010,219,5
+7952-11,Advent Calendar 2010 Kingdoms (Day 10) - Skeleton,2010,219,6
+7952-12,Advent Calendar 2010 Kingdoms (Day 11) - Dungeon Cell Window with Handcuffs,2010,219,14
+7952-13,Advent Calendar 2010 Kingdoms (Day 12) - Pig with Apple,2010,219,2
+7952-14,Advent Calendar 2010 Kingdoms (Day 13) - Prince with Sword,2010,219,5
+7952-15,Advent Calendar 2010 Kingdoms (Day 14) - Sword in the Stone,2010,219,6
+7952-16,Advent Calendar 2010 Kingdoms (Day 15) - Jousting Dummy with Helmet and Halberd,2010,219,8
+7952-17,Advent Calendar 2010 Kingdoms (Day 16) - Barmaid,2010,219,4
+7952-18,Advent Calendar 2010 Kingdoms (Day 17) - Keg with Tap,2010,219,9
+7952-19,Advent Calendar 2010 Kingdoms (Day 18) - Cauldron,2010,219,3
+7952-2,Advent Calendar 2010 Kingdoms (Day 1) - Blacksmith with Hammer,2010,219,5
+7952-20,Advent Calendar 2010 Kingdoms (Day 19) - Lion Knight with Spear,2010,219,5
+7952-21,Advent Calendar 2010 Kingdoms (Day 20) - Catapult,2010,219,7
+7952-22,Advent Calendar 2010 Kingdoms (Day 21) - Lion Knight Scale Mail with Quiver and Crossbow,2010,219,6
+7952-23,Advent Calendar 2010 Kingdoms (Day 22) - Owl in Tree,2010,219,6
+7952-24,Advent Calendar 2010 Kingdoms (Day 23) - Cooking Table with Frying Pan,2010,219,12
+7952-25,Advent Calendar 2010 Kingdoms (Day 24) - Blue Wizard with Wand,2010,219,6
+7952-3,Advent Calendar 2010 Kingdoms (Day 2) - Anvil and Forge with Sword,2010,219,13
+7952-4,Advent Calendar 2010 Kingdoms (Day 3) - Weapons Rack,2010,219,11
+7952-5,Advent Calendar 2010 Kingdoms (Day 4) - Dragon Knight with Flail,2010,219,5
+7952-6,Advent Calendar 2010 Kingdoms (Day 5) - Weapons Cart with Spear,2010,219,9
+7952-7,Advent Calendar 2010 Kingdoms (Day 6) - Armor Rack with Plate Armor and Helmet,2010,219,7
+7952-8,Advent Calendar 2010 Kingdoms (Day 7) - Queen with Frog,2010,219,6
+7952-9,Advent Calendar 2010 Kingdoms (Day 8) - Throne,2010,219,7
+7953-1,Court Jester,2010,196,22
+7955-1,Wizard,2010,196,19
+7956-1,Ewok Attack,2011,169,166
+7957-1,Sith Nightspeeder,2011,165,213
+7958-1,Advent Calendar 2011 Star Wars,2011,209,25
+7958-10,Advent Calendar 2011 Star Wars (Day 9) - X-wing Fighter,2011,225,23
+7958-11,Advent Calendar 2011 Star Wars (Day 10) - Imperial Shuttle,2011,225,9
+7958-12,Advent Calendar 2011 Star Wars (Day 11) - Battle Droid Pilot,2011,225,6
+7958-13,Advent Calendar 2011 Star Wars (Day 12) - Rebel Snowspeeder,2011,225,17
+7958-14,Advent Calendar 2011 Star Wars (Day 13) - R2-Q5,2011,225,4
+7958-15,Advent Calendar 2011 Star Wars (Day 14) - Mouse Droid,2011,225,9
+7958-16,Advent Calendar 2011 Star Wars (Day 15) - Republic Gunship,2011,225,14
+7958-17,Advent Calendar 2011 Star Wars (Day 16) - Clone Pilot,2011,225,4
+7958-18,Advent Calendar 2011 Star Wars (Day 17) - Weapon Depot,2011,225,10
+7958-19,Advent Calendar 2011 Star Wars (Day 18) - Anakin's Y-wing Starfighter,2011,225,20
+7958-2,Advent Calendar 2011 Star Wars (Day 1) - Republic Cruiser,2011,225,19
+7958-20,Advent Calendar 2011 Star Wars (Day 19) - TIE Defender Pilot,2011,225,4
+7958-21,Advent Calendar 2011 Star Wars (Day 20) - TIE Fighter,2011,225,7
+7958-22,Advent Calendar 2011 Star Wars (Day 21) - Millennium Falcon,2011,225,13
+7958-23,Advent Calendar 2011 Star Wars (Day 22) - A-wing Fighter,2011,225,9
+7958-24,Advent Calendar 2011 Star Wars (Day 23) - Christmas Tree,2011,225,18
+7958-25,Advent Calendar 2011 Star Wars (Day 24) - Santa Yoda,2011,225,7
+7958-3,Advent Calendar 2011 Star Wars (Day 2) - Nute Gunray,2011,225,4
+7958-4,Advent Calendar 2011 Star Wars (Day 3) - Mechno-Chair,2011,225,13
+7958-5,Advent Calendar 2011 Star Wars (Day 4) - Separatist Spider Droid,2011,225,20
+7958-6,Advent Calendar 2011 Star Wars (Day 5) - Boba Fett's Slave I,2011,225,20
+7958-7,Advent Calendar 2011 Star Wars (Day 6) - Chewbacca,2011,225,3
+7958-8,Advent Calendar 2011 Star Wars (Day 7) - Tool Depot,2011,225,9
+7958-9,Advent Calendar 2011 Star Wars (Day 8) - Zev Senesca,2011,225,4
+7959-1,Geonosian Starfighter,2011,165,163
+796-1,"Baseplates, Green and Yellow",1971,473,2
+7961-1,Darth Maul's Sith Infiltrator,2011,166,478
+7962-1,Anakin's and Sebulba's Podracers,2011,166,810
+7964-1,Republic Frigate,2011,165,1030
+7965-1,Millennium Falcon,2011,169,1253
+7967-1,Fast,2010,116,68
+7968-1,Strong,2010,116,90
+7970-1,Hero,2010,116,67
+797-1,"2 large baseplates, gray/white",1971,473,2
+7971-1,Bad,2010,116,71
+7976-1,Ocean Speeder,2011,315,53
+7977-1,Seabed Strider,2011,315,104
+7978-1,Angler Attack,2011,315,200
+7979-1,Advent Calendar 2008 Castle,2008,211,24
+7979-10,Advent Calendar 2008 Castle (Day 9) - Crossbow on Wheels,2008,219,7
+7979-11,Advent Calendar 2008 Castle (Day 10) - Dwarf with Pick Axe,2008,219,6
+7979-12,Advent Calendar 2008 Castle (Day 11) - Fire and Crystal,2008,219,6
+7979-13,Advent Calendar 2008 Castle (Day 12) - Container on Wheels,2008,219,10
+7979-14,Advent Calendar 2008 Castle (Day 13) - Tools Storage with Frog,2008,219,4
+7979-15,Advent Calendar 2008 Castle (Day 14) - Evil Witch,2008,219,5
+7979-16,Advent Calendar 2008 Castle (Day 15) - Cooking Pot with Snake,2008,219,9
+7979-17,Advent Calendar 2008 Castle (Day 16) - Shelving with Bat,2008,219,12
+7979-18,Advent Calendar 2008 Castle (Day 17) - Crystal Ball,2008,219,5
+7979-19,Advent Calendar 2008 Castle (Day 18) - Maid with Broom and Rat,2008,219,6
+7979-2,Advent Calendar 2008 Castle (Day 1) - Soldier with Spear,2008,219,5
+7979-20,Advent Calendar 2008 Castle (Day 19) - Food Basket,2008,219,4
+7979-21,Advent Calendar 2008 Castle (Day 20) - Dinner Table,2008,219,17
+7979-22,Advent Calendar 2008 Castle (Day 21) - Troll Warrior,2008,219,5
+7979-23,Advent Calendar 2008 Castle (Day 22) - Catapult,2008,219,14
+7979-24,Advent Calendar 2008 Castle (Day 23) - Treasure Chest with Spider,2008,219,6
+7979-25,Advent Calendar 2008 Castle (Day 24) - Jester,2008,219,4
+7979-3,Advent Calendar 2008 Castle (Day 2) - Brick Arch with Flag and Shield,2008,219,10
+7979-4,Advent Calendar 2008 Castle (Day 3) - Armour Stand,2008,219,8
+7979-5,Advent Calendar 2008 Castle (Day 4) - White Skeleton with Flail,2008,219,7
+7979-6,Advent Calendar 2008 Castle (Day 5) - Weapon Stand,2008,219,8
+7979-7,Advent Calendar 2008 Castle (Day 6) - Black Skeleton with Crossbow,2008,219,7
+7979-8,Advent Calendar 2008 Castle (Day 7) - Castle Soldier with Sword,2008,219,5
+7979-9,Advent Calendar 2008 Castle (Day 8) - Archery Target,2008,219,6
+798-1,"Baseplates, Green",1972,473,2
+7984-1,Deep Sea Raider,2011,315,265
+7985-1,City of Atlantis,2011,315,686
+7990-1,Cement Mixer,2007,56,212
+799-1,"Baseplate, Gray",1964,371,1
+7991-1,Garbage Truck,2007,63,205
+7992-1,Container Stacker,2007,54,217
+7993-1,Service Station,2007,50,393
+7994-1,LEGO City Harbor,2007,59,660
+7996-1,Double Crossover Track,2007,245,4
+7997-1,Train Station,2007,240,386
+7998-1,Heavy Hauler,2007,56,331
+8000-1,Pit Droid™ / Star Wars Pit Droid,2000,158,223
+800-1,Gear Set with Motor,1970,472,120
+8001-1,Battle Droid™ / Star Wars Battle Droid,2000,158,336
+800-2,Extra Bricks Red,1986,473,62
+8002-1,Destroyer Droid™ / Star Wars Destroyer Droid,2000,158,567
+8003-1,Volcano Climber,2000,16,35
+8004-1,Dirt Bike,2000,16,32
+8005-1,Ice Explorer,2000,16,34
+8006-1,Swamp Craft,2000,16,25
+8007-1,C-3PO™,2001,158,340
+8008-1,Stormtrooper™,2001,158,360
+8009-1,R2-D2™,2002,158,239
+8010-1,Darth Vader™,2002,158,390
+801-1,Gear Set,1970,472,112
+8011-1,Jango Fett™,2002,158,426
+801-2,Extra Bricks Blue,1986,473,62
+8012-1,Super Battle Droid™,2002,158,379
+8014-1,Clone Walker Battle Pack,2009,165,79
+8015-1,Assassin Droids Battle Pack,2009,165,94
+8016-1,Hyena Droid Bomber,2009,165,231
+8017-1,Darth Vader's TIE Fighter,2009,169,250
+8018-1,Armored Assault Tank (AAT),2009,165,406
+8019-1,Republic Attack Shuttle,2009,165,636
+8020-1,Universal Building Set,1984,21,119
+802-1,Gear Supplementary Set,1970,472,30
+802-2,Extra Bricks White,1986,473,62
+8022-1,TECHNIC Starter Set,1993,21,118
+8024-1,Universal Building Set,1989,21,114
+8026-1,Kraatu,2004,324,20
+8028-1,TIE Fighter - Mini,2008,163,44
+8029-1,Mini Snowspeeder,2008,159,66
+8030-1,Universal Building Set,1982,21,141
+803-1,Extra Bricks Yellow,1986,473,62
+8031-1,V-19 Torrent - Mini,2008,160,66
+803-2,Gear/Wheel Set,1972,472,163
+8032-1,Universal Set,1994,21,212
+8033-1,General Grievous Starfighter - Mini,2009,162,44
+8034-1,Universal Building Set,1989,21,187
+8035-1,Universal Building Set,1986,21,174
+8036-1,Separatist Shuttle,2009,165,258
+8037-1,Anakin's Y-wing Starfighter,2009,165,569
+8038-1,The Battle of Endor,2009,169,890
+8039-1,Venator-Class Republic Attack Cruiser,2009,165,1169
+8040-1,Universal Building Set,1984,21,162
+804-1,Extra Bricks Black,1986,473,62
+8041-1,Race Truck,2010,12,607
+8042-1,Universal Pneumatic Set,1993,21,230
+8043-1,Motorized Excavator,2010,7,1124
+8044-1,Universal Pneumatic Set,1989,21,198
+8045-1,Mini Telehandler,2010,7,118
+8046-1,Helicopter,2010,6,152
+8047-1,Compact Excavator,2010,7,252
+8048-1,Buggy,2010,11,313
+8049-1,Tractor with Log Loader,2010,8,525
+8050-1,Universal Building Set,1982,21,141
+805-1,Extra Bricks Gray,1986,473,62
+8051-1,Motorbike,2010,13,473
+8052-1,Container Truck,2010,7,685
+8053-1,Mobile Crane,2010,7,1288
+8054-1,Universal Building Set,1989,21,196
+8055-1,Universal Building Set with Motor,1986,21,186
+8056-1,Monster Crab Clash,2010,315,68
+8057-1,Wreck Raider,2010,315,64
+8058-1,Guardian of the Deep,2010,315,144
+8059-1,Seabed Scavenger,2010,315,119
+8060-1,Typhoon Turbo Sub,2010,315,197
+806-1,Extra Plates Blue,1986,473,42
+8061-1,Gateway of the Squid,2010,315,354
+8062-1,Universal Set with Storage Case,1994,21,410
+8063-1,Tractor with Trailer,2009,8,1100
+8064-1,Motorized Universal Building Set,1990,21,219
+8065-1,Mini Container Truck,2011,7,119
+8066-1,Off-Roader,2011,11,141
+8067-1,Mini Mobile Crane,2011,7,292
+8068-1,Rescue Helicopter,2011,6,407
+8069-1,Backhoe Loader,2011,7,608
+8070-1,Supercar,2011,1,1280
+807-1,Extra Plates Red,1986,473,42
+8071-1,Lift Truck,2011,5,592
+8072-1,Sea Jet,2010,315,24
+8073-1,Manta Warrior,2010,315,13
+8074-1,Universal Building Set with Flex System,1992,21,313
+8075-1,Neptune Carrier,2010,315,478
+8076-1,Deep Sea Striker,2010,315,260
+8077-1,Atlantis Exploration HQ,2010,315,474
+8078-1,Portal of Atlantis,2010,315,1009
+8079-1,Shadow Snapper,2010,315,244
+8080-1,Undersea Explorer,2010,315,361
+808-1,Wheels and Tires,1986,473,40
+8081-1,Extreme Cruiser,2011,5,589
+8082-1,Universal Building Set,1993,21,456
+8083-1,Rebel Trooper Battle Pack,2010,169,79
+8084-1,Snowtrooper Battle Pack,2010,169,74
+8085-1,Freeco Speeder,2010,165,176
+8086-1,Droid Tri-Fighter,2010,165,267
+8087-1,TIE Defender,2010,170,304
+8088-1,ARC-170 Starfighter,2010,165,395
+8089-1,Hoth Wampa Cave,2010,169,296
+8090-1,TECHNIC Universal Set,1982,21,277
+809-1,Doors and Windows,1986,473,38
+8091-1,Republic Swamp Speeder - Limited Edition,2010,165,175
+8092-1,Luke's Landspeeder,2010,169,163
+8093-1,Plo Koon’s Jedi Starfighter,2010,168,174
+8094-1,TECHNIC Control Center,1990,21,548
+8095-1,General Grievous’ Starfighter,2010,165,453
+8096-1,Emperor Palpatine’s Shuttle,2010,168,591
+8097-1,Slave I (Third Edition) [Initial Release],2010,169,562
+8098-1,Clone Turbo Tank,2010,165,1142
+8099-1,Midi-Scale Imperial Star Destroyer,2010,169,423
+810003-1,LEGO Collector,2008,497,0
+810005-1,LEGO Collector's Guide 2nd Edition,2011,497,0
+8100-1,Cyclone Defender,2007,389,91
+810-1,Basic Motor Set,1985,473,33
+8101-1,Claw Crusher,2007,389,98
+810-2,Town Plan - Continental European,1961,372,760
+8102-1,Blade Titan,2007,389,161
+810-3,Gear Truck Set,1974,472,110
+8103-1,Sky Guardian,2007,389,143
+810-4,"Town Plan - UK, Cardboard box",1962,372,755
+8104-1,Shadow Crawler,2007,389,160
+8105-1,Iron Condor,2007,389,140
+8106-1,Aero Booster,2007,389,311
+8107-1,Fight for the Golden Tower,2007,389,570
+8108-1,Mobile Devastator,2007,389,1009
+8109-1,Flatbed Truck,2011,5,1114
+8110-1,Unimog U400,2011,5,2046
+811-1,"Red Roof Bricks, Steep Pitch",1986,473,59
+8111-1,River Dragon,2008,389,113
+811-2,Gear Crane Set,1974,472,181
+8112-1,Battle Arachnoid,2008,389,130
+8113-1,Assault Tiger,2008,389,164
+8114-1,Chameleon Hunter,2008,389,189
+8115-1,Dark Panther,2008,389,243
+8117-1,Storm Lasher,2008,389,282
+8118-1,Hybrid Rescue Tank,2008,389,346
+8119-1,Thunder Racer,2009,120,47
+8120-1,Rally Sprinter,2009,120,46
+812-1,Gear Supplementary Set,1974,472,101
+8121-1,Track Marshal,2009,120,47
+812-2,"Red Roof Bricks, Shallow Pitch",1986,473,60
+8122-1,Desert Viper,2009,120,40
+8123-1,Ferrari F1 Racers,2009,112,140
+8124-1,Ice Rally,2009,120,170
+8125-1,Thunder Raceway,2009,120,160
+8126-1,Desert Challenge,2009,120,145
+8128-1,Cad Bane's Speeder,2010,165,317
+8129-1,AT-AT Walker,2010,169,811
+8130-1,Terrain Crusher,2007,120,43
+813-1,"Baseplate, Green",1986,473,1
+8131-1,Raceway Rider,2007,120,50
+813-2,Gear Bulldozer Set,1974,472,130
+8132-1,Night Driver,2007,120,40
+8133-1,Rally Rider,2007,120,50
+8134-1,Night Crusher,2007,120,263
+8135-1,Bridge Chase,2007,120,542
+8136-1,Fire Crusher,2007,116,64
+8137-1,Booster Beast,2007,116,69
+8138-1,Phantom Crasher,2007,116,84
+8139-1,Night Blazer,2007,116,65
+8140-1,Tow Trasher,2007,116,183
+814-1,"Baseplates, Green, Red and Yellow",1986,473,3
+8141-1,Off Road Power,2007,116,201
+814-2,Gear Farm Set,1975,472,89
+8142-1,Ferrari 248 1:24 (Vodafone stickers),2007,114,166
+8142-2,Ferrari 248 F1 1:24 (Alice version),2007,114,166
+8143-1,Ferrari 1:17 F430 Challenge,2007,114,690
+8144-1,Ferrari 248 F1 Team (Schumacher Edition),2007,114,710
+8144-2,Ferrari 248 F1 Team (Raikkonen Edition),2007,114,705
+8145-1,Ferrari 599 GTB Fiorano 1:10,2007,114,1325
+8146-1,Nitro Muscle,2007,116,597
+8147-1,Bullet Run,2007,120,794
+8148-1,EZ-Roadster,2008,120,44
+8149-1,Midnight Streak,2008,120,42
+8150-1,ZX Turbo,2008,120,54
+815-1,"Baseplate, Gray",1986,473,1
+8151-1,Adrift Sport,2008,120,51
+8152-1,Speed Chasing,2008,120,141
+8153-1,Ferrari F1 Truck 1:55,2008,114,269
+8154-1,Brick Street Customs,2008,120,1019
+8155-1,Ferrari F1 Pit 1:55,2008,114,480
+8156-1,Ferrari FXX 1:17,2008,114,625
+8157-1,Ferrari F1 1:9,2009,114,996
+8158-1,Speed Racer & Snake Oiler,2008,118,241
+8159-1,Racer X & Taejo Togokhan,2008,118,236
+8160-1,Cruncher Block & Racer X,2008,118,366
+816-1,"Lighting Bricks, 4.5V",1987,473,17
+8161-1,Grand Prix Race,2008,118,598
+8162-1,Race Rig,2009,116,103
+8163-1,Blue Sprinter,2009,116,109
+8164-1,Extreme Wheelie,2009,116,86
+8165-1,Monster Jumper,2009,116,90
+8166-1,Wing Jumper,2009,116,202
+8167-1,Jump Riders,2009,116,208
+8168-1,Ferrari Victory,2009,114,201
+8169-1,Lamborghini Gallardo LP 560-4,2009,115,740
+818-1,"Pullback Motor, Red",1990,473,8
+8182-1,Monster Crushers,2009,120,387
+8183-1,Track Turbo RC,2009,117,91
+8184-1,Twin X-treme RC,2009,117,238
+8185-1,Ferrari Truck,2009,114,536
+8186-1,Street Extreme,2009,120,752
+8188-1,Fire Blaster,2010,439,69
+8189-1,Magma Mech,2010,439,185
+8190-1,Claw Catcher,2010,439,261
+819-1,Blue Sea Plate,1991,473,1
+8191-1,Lavatraz,2010,439,383
+8192-1,Lime Racer,2010,120,43
+8193-1,Blue Bullet,2010,120,49
+8194-1,Nitro Muscle,2010,120,47
+8195-1,Turbo Tow,2010,120,42
+8196-1,Chopper Jump,2010,120,141
+8197-1,Highway Chaos,2010,120,142
+8198-1,Ramp Crash,2010,120,145
+8199-1,Security Smash,2010,120,135
+8-2,Universal Building Set,1979,469,93
+8200-1,Radiator Springs Lightning McQueen,2011,269,35
+820-1,Red Plates Parts Pack,1980,473,34
+8201-1,Radiator Springs Classic Mater,2011,269,52
+820-2,"LegoWooden Storage Box Large (Double Latch) with Contents, with Lattice",1966,365,0
+8202-1,Blast Off Chopper with Bungee Cord Power!,1998,3,70
+8203-1,Rover Discovery,1998,11,36
+8204-1,Sky Flyer I,1998,6,41
+8205-1,Bungee Blaster,1997,12,63
+8206-1,Tokyo Pit Stop,2011,269,142
+8207-1,Dune Duster / Hawaiian Beach Racer,1996,11,81
+8208-1,Custom Cruiser,1998,13,53
+8209-1,F1 Racer / Future F1,1998,12,48
+8210-1,Nitro Bike GTX / GTX 500,1995,13,83
+821-1,"Brick Separator, Gray",1990,473,1
+8211-1,Brick Street Getaway,2010,120,552
+821264-1,The Lego High Speed Adventure Team (TRU Exclusive),1991,67,3
+8213-1,Spy Runner,1998,12,92
+8214-1,Gallardo LP 560-4 Polizia,2010,115,800
+8215-1,Gyro Copter,1997,6,106
+8216-1,Turbo I,1997,12,90
+8217-1,The Wasp,1998,6,63
+8218-1,Trike Tourer,1998,13,70
+8219-1,Go-Cart,1998,12,100
+822-1,Blue Plates Parts Pack,1980,473,34
+8221-1,Storming Enforcer,2011,116,95
+8222-1,V-TOL,1997,6,140
+8223-1,Hydrofoil 7 / Powerboat Columbia,1996,10,125
+8225-1,Road Rally V / Super Kart,1995,12,97
+8226-1,Mud Masher / Desert Stormer,1998,11,120
+8227-1,Dragon Dueller,2011,116,93
+8228-1,Sting Striker,2011,116,81
+8229-1,Tread Trekker,1997,11,185
+8230-1,Coastal Cop Buggy / Miami Police Patrol,1996,1,175
+8231-1,Vicious Viper,2011,116,95
+8232-1,Chopper Force,1997,6,277
+8233-1,MC vs. Stinger,1998,3,118
+8235-1,Front End Loader,1995,7,166
+8236-1,Bike Burner,2000,17,59
+8237-1,Slammer Racer / Formula Force,2000,17,112
+8238-1,Slammer Dragsters / Dueling Dragsters,2000,17,201
+8239-1,Cyber Challenge,1998,3,121
+8240-1,Slammer Stunt Bike,2001,17,152
+8241-1,Battle Cars,2001,17,110
+8242-1,Slammer Turbo,2001,17,251
+8244-1,Convertables,1996,21,275
+8245-1,Robot's Revenge,1998,3,222
+8246-1,Hydro Racer / Swamp Boat,1999,10,46
+8247-1,Road Rebel / Buggy Racer,1999,12,43
+8248-1,Forklift,1998,7,227
+8250-1,Search Sub [No CD],1997,10,370
+8251-1,Sonic Cycle / Motorbike,1999,13,88
+8252-1,Beach Buster / Police Car,1999,1,168
+8253-1,Fire Helicopter,1999,1,210
+8255-1,Rescue Motorbike / Rescue Trike,1999,13,192
+8256-1,Go-Kart,2009,12,143
+8257-1,Cyber Strikers,1998,3,367
+8258-1,Crane Truck,2009,15,1876
+8259-1,Mini Bulldozer,2009,7,165
+8260-1,Tractor,2009,7,104
+8261-1,Rally Truck,2009,11,198
+8262-1,Quad Bike,2009,13,307
+8263-1,Snow Groomer,2009,15,590
+8264-1,Hauler,2009,7,574
+8265-1,Front Loader,2009,7,1060
+8266-1,Spyder Slayer,1998,3,367
+8268-1,Scorpion Attack,1999,3,78
+8269-1,Competition Ultra Challenge [aka Cyber Stinger],1999,3,327
+8270-1,Rough Terrain Crane,2007,7,106
+8271-1,Wheel Loader,2007,7,200
+8272-1,Snowmobile,2007,11,331
+8273-1,Off Road Truck,2007,15,804
+8274-1,Combine Harvester,2007,8,1025
+8275-1,Motorized Bulldozer,2007,7,1381
+8277-1,Giant Model Set,1997,14,553
+8279-1,4WD X-Track,2000,11,448
+8280-1,Fire Engine / Fire Response Unit,1995,9,430
+8281-1,Mini Tractor,2006,8,121
+8282-1,Quad Bike,2006,13,200
+8283-1,Telehandler,2006,7,324
+8284-1,Tractor / Dune Buggy,2006,11,872
+8284-2,Tractor / Dune Buggy,2006,8,872
+8285-1,Tow Truck,2006,15,1877
+8286-1,3 In 1 Car / Amphipower,1996,15,731
+8287-1,Motor Box,2006,19,93
+8288-1,Crawler Crane,2006,7,800
+8289-1,Fire Truck,2006,9,1012
+8290-1,Mini Forklift,2008,7,88
+8291-1,Dirt Bike,2008,13,247
+8292-1,Cherry Picker,2008,7,724
+8293-1,Power Functions Motor Set,2008,438,10
+8294-1,Excavator,2008,7,719
+8295-1,Telescopic Handler,2008,7,1180
+8296-1,Dune Buggy,2008,11,199
+8297-1,Off-Roader,2008,11,1096
+8299-1,Search Sub With CDROM,1997,10,371
+8-3,Basic Set,1973,469,665
+8300-1,LEGO TECHNIC Team,2000,19,6
+830-1,Red Bricks Parts Pack,1980,473,46
+8301-1,Urban Enforcer,2011,120,44
+8302-1,Rod Rider,2011,120,47
+8303-1,Demon Destroyer,2011,120,50
+8304-1,Smokin' Slickster,2011,120,43
+8305-1,Duel Bikes,2000,3,208
+8307-1,Turbo Racer,2000,3,392
+831-1,Black Bricks Parts Pack,1980,473,46
+832-1,Blue Bricks Parts Pack,1980,473,46
+833-1,White Bricks Parts Pack,1980,473,46
+834-1,Yellow Bricks Parts Pack,1980,473,46
+8350-1,Pro Stunt,2003,113,30
+8353-1,Slammer Rhino,2003,113,218
+8354-1,Exo Force Bike,2003,113,99
+8355-1,H.O.T. Blaster Bike,2003,113,87
+8356-1,Jungle Monster,2003,113,115
+8357-1,Zonic Strike,2003,113,106
+8358-1,Off-Roader,2003,113,26
+8359-1,Desert Racer,2003,113,27
+8360-1,Track Racer,2003,113,23
+836-1,Doors and Windows Parts Pack,1980,473,37
+8362-1,Ferrari F1 Racer 1:24 Scale,2004,114,112
+8363-1,Baja Desert Racers,2003,113,318
+8364-1,Multi-Challenge Race Track,2003,121,623
+8365-1,Tuneable Racer,2003,113,195
+8366-1,Supersonic RC,2003,117,428
+8369-1,Dirt Crusher RC,2004,117,87
+8369-2,Dirt Crusher RC (Blue),2005,117,87
+8370-1,Nitro Stunt Bike,2003,113,89
+837-1,Wheels and Tires Parts Pack,1980,473,28
+8371-1,Extreme Power Bike,2003,113,97
+8374-1,Williams F1 Team Racer 1:27,2003,122,92
+8375-1,Ferrari F1 Pit Set,2004,114,217
+8376-1,Hot Flame RC Car,2003,117,256
+8378-1,Red Beast RC,2004,117,64
+8380-1,Red Maniac,2004,116,82
+838-1,"Red Roof Bricks Parts Pack, 45 Degree",1980,473,58
+8381-1,Exo Raider,2003,116,93
+8382-1,Hot Buster,2004,116,66
+8383-1,Nitro Terminator,2004,116,69
+8384-1,Jungle Crasher,2004,116,75
+8385-1,Exo Stealth,2004,116,81
+8386-1,Ferrari F1 Racer 1:10 Scale,2004,114,738
+8389-1,M. Schumacher and R. Barrichello,2004,114,13
+839-1,"Red Roof Bricks Parts Pack, 33 Degree",1980,473,42
+8396-1,Soldier's Arsenal,2009,153,17
+8397-1,Pirate Survival,2009,153,16
+8398-1,BBQ Stand,2009,50,22
+8399-1,K-9 Bot,2009,141,22
+8-4,Magnetic Train Couplers with Plates,1977,456,4
+8400-1,Space Speeder,2009,141,14
+840-1,"Baseplate, Green",1980,473,1
+8401-1,City Minifigure Collection,2009,62,59
+8402-1,Sports Car,2009,63,68
+8403-1,City House,2010,50,384
+8404-1,City Public Transport,2010,63,863
+8408-1,Desert Ranger,1996,11,288
+8409-1,Spidermonkey,2010,270,21
+8410-1,Swampfire,2010,270,22
+841-1,"Baseplates, Green and Yellow",1980,473,2
+8411-1,ChromaStone,2010,270,21
+8412-1,Nighthawk / Sky Wasp,1995,6,283
+8414-1,Mountain Rambler,1997,11,243
+8415-1,Dump Truck,2005,7,284
+8416-1,Forklift,2005,7,729
+8417-1,Mag Wheel Master,1998,13,314
+8418-1,Mini Loader,2005,7,66
+8419-1,Excavator,2005,7,286
+8420-1,Street Bike,2005,13,506
+842-1,"Baseplates, Red and Blue",1980,473,2
+8421-1,Mobile Crane,2005,7,1884
+8422-1,Circuit Shock Racer / V-Twin Super Bike,1995,13,314
+8423-1,World Grand Prix Racing Rivalry,2011,269,135
+8424-1,Mater’s Spy Zone,2011,269,113
+8425-1,Black Hawk / Sky Stormer,1996,6,466
+8426-1,Escape at Sea,2011,269,158
+8428-1,Turbo Command Featuring CD-ROM Experience Expander,1998,11,472
+8429-1,Helicopter,2002,6,146
+8430-1,Motorbike,2002,13,317
+843-1,"Baseplate, Gray",1980,473,1
+8431-1,Crane Truck,2002,7,861
+8432-1,TECHNIC Car,1998,11,471
+8433-1,Cool Movers,2004,15,216
+8434-1,Aircraft,2004,6,445
+8435-1,4WD,2004,11,778
+8436-1,Truck,2004,15,1037
+8437-1,Future Car,1997,11,420
+8438-1,Pneumatic Crane Truck,2003,7,845
+8439-1,Front End Loader,2004,7,591
+8440-1,Formula Flash / Formula Indy Racer,1995,12,418
+8441-1,Fork Lift Truck,2003,7,70
+8443-1,Pneumatic Log Loader / Pneumatic Logger,1996,7,334
+8444-1,Air Enforcer / Supercopter,1999,6,308
+8445-1,Indy Storm / Formula 1 Racer,1999,12,433
+8446-1,Crane Truck,1999,7,572
+8448-1,Super Street Sensation,1999,15,1436
+8450-1,Mission Experience Pack,2000,3,642
+845-1,"Battery Motor, 9V",1992,473,27
+8451-1,Dumper,2003,7,183
+8453-1,Front End Loader,2003,7,214
+8453-2,Front-End Loader Black Box,2004,7,214
+8454-1,Rescue Truck,2003,9,638
+8455-1,Backhoe Loader,2003,7,704
+8456-1,Fiber Optic Multi Set / Multi Racer Set (with Fibre Optics),1996,6,404
+8457-1,Power Puller,2000,12,977
+8458-1,Silver Champion / Formula 1 Racer,2000,12,1430
+8459-1,Pneumatic Front-End Loader,1997,7,595
+8460-1,Pneumatic Crane Truck / Mobile Crane,1995,7,855
+846-1,Lighting Bricks,1992,473,45
+8461-1,Williams F1 Racer,2002,122,1483
+8462-1,Tow Truck,1998,15,784
+8463-1,Forklift Truck,2001,7,232
+8464-1,Pneumatic Front End Loader,2001,7,582
+8465-1,Extreme Off-Roader,2001,11,363
+8465934-1,Muji Christmas Set,2009,301,120
+8465972-1,Muji Basic Set,2009,301,64
+8466-1,4x4 Off Roader,2001,11,1100
+8468-1,Power Crusher,2002,113,86
+8469-1,Slammer Raptor,2002,113,143
+8470-1,Slammer G-Force,2002,113,147
+8471-1,Nitro Burner,2002,113,118
+8472-1,Street 'n' Mud Racer,2002,113,348
+8473-1,Nitro Race Team,2002,113,510
+8475-1,RC Race Buggy,2002,117,283
+8479-1,Barcode Multi-Set,1997,15,1269
+8480-1,Space Shuttle,1996,6,1355
+8482-1,CyberMaster,1998,3,896
+8483-1,CyberMaster,1998,3,897
+8484-1,Ultimate Build Lightning McQueen,2011,269,241
+8485-1,Control Center / Control II,1995,21,1066
+8486-1,Mack’s Team Truck,2011,269,384
+8487-1,Flo's V8 Café,2011,269,516
+8490-1,Desert Hopper,2008,116,91
+8491-1,Ram Rod,2008,116,71
+8492-1,Mud Hopper,2008,116,58
+8493-1,Red Ace,2008,116,81
+8494-1,Ring of Fire,2008,116,268
+8495-1,Crosstown Craze,2008,120,503
+8496-1,Desert Hammer,2008,116,510
+8500-1,Torch / Fire Slizer,1999,20,33
+850-1,Fork lift truck,1977,4,216
+8501-1,Ski / Ice Slizer,1999,20,34
+850150-1,Santa Claus Classic Key Chain,2006,503,0
+850152-1,Blue Brick Key Chain,2007,503,0
+850154-1,LEGO® Red Brick Key Chain,2007,503,1
+8502-1,Turbo / City Slizer,1999,20,45
+8503-1,Scuba / Sub,1999,20,39
+850353-1,Darth Vader Key Chain,2008,503,0
+850355-1,Stormtrooper Key Chain (with Lego logo on back),2002,503,4
+8504-1,Jet / Judge Slizer,1999,20,44
+850423-1,Minifigure Presentation Boxes,2012,501,89
+850425-1,Business Card Holder,2012,501,150
+850426-1,Pencil Holder,2012,501,157
+850445-1,Ninjago Character Card Shrine,2012,435,88
+850446-1,Darth Maul Key Chain,2012,503,0
+850449-1,Minifigure Beach Accessory Pack,2012,535,64
+850452-1,Ghost Key Chain,2012,503,0
+850457-1,I Love LEGOLAND Magnet [Male],2012,501,6
+850458-1,VIP Top 5 Boxed Minifigures,2012,535,37
+850486-1,Rock Band,2012,301,62
+850487-1,Halloween Accessory Set,2012,558,56
+850502-1,I 'L brick' Anaheim Figure Magnet,2012,411,6
+850506-1,Card Making Kit,2012,501,0
+850507-1,LEGO® Marvel Super Heroes Spider-Man Key Chain,2012,503,0
+8505-1,Amazon / Jungle Slizer,1999,20,36
+850513-1,I Love Malaysia Magnet [Male],2012,501,6
+850529-1,Loki Key Chain,2012,501,0
+850581-1,Friends Calendar [English],2013,501,140
+850591-1,LEGO Friends Name Sign,2013,501,29
+850595-1,LEGO® Friends Notebook,2014,501,16
+850597-1,LEGO® Friends Carry Case,2013,501,31
+850598-1,LEGO® Legends of Chima™ Game Cards Binder,2013,502,0
+850602-1,LEGO® Legends of Chima™ Cragger Key Chain,2013,503,4
+850608-1,Key Chain Laval,2013,503,0
+8506-1,Granite / Rock Slizer,1999,20,34
+850617-1,City Police Accessory Set,2013,61,34
+850618-1,City Fire Accessory Set,2013,58,43
+850632-1,Ninjago Battle Pack,2013,435,36
+850635-1,LEGO® Star Wars™ Darth Vader™ Magnet,2013,501,2
+850642-1,LEGO® Star Wars™ Stormtrooper™ Magnet,2013,501,5
+850646-1,LEGO® Teenage Mutant Ninja Turtles™ Donatello Key Chain,2013,503,0
+850648-1,LEGO® Teenage Mutant Ninja Turtles™ Leonardo Key Chain,2013,503,0
+850653-1,LEGO® Teenage Mutant Ninja Turtles™ Michelangelo Key Chain,2013,503,0
+850656-1,LEGO® Teenage Mutant Ninja Turtles™ Raphael Key Chain,2013,503,0
+850664-1,LEGO® DC Universe™ Super Heroes Batman™ Magnet,2013,501,1
+850670-1,LEGO® DC Universe™ Super Heroes Superman™ Magnet,2013,501,0
+850682-1,Bilbo Baggins Magnet,2013,501,3
+850686-1,"Notebook, Baseplate Cover with Alphanumeric Tiles and Lego Logo Clasp",2013,501,83
+850702-1,Classic Picture Frame,2013,501,52
+850705-1,Salt and Pepper Set,2013,501,0
+8507-1,Electro / Energy Slizer,1999,20,37
+850751-1,Orlando Picture Frame,2013,411,101
+850760-1,I Love Paris Magnet [Male],2013,501,6
+850779-1,Legends of Chima Minifigure Accessory Set,2013,571,42
+850789-1,LEGO® Friends Horse Bag Charm,2013,503,6
+850791-1,Minifigure Birthday Set,2013,301,20
+850794-1,Family Window Decals,2013,501,0
+850798-1,LEGO Classic Name Sign,2013,501,41
+850802-1,I Love Tokyo Magnet [Male],2011,501,6
+850807-1,LEGO® Gold Minifigure Key Chain,2013,503,0
+850808-1,LEGO® Gold 2x4 Stud Key Chain,2013,503,1
+8508-1,Supplementary Disks,1999,20,5
+850814-1,LEGO® Marvel Super Heroes The Hulk™ Key Chain,2013,503,0
+850838-1,Splinter Key Chain,2013,503,0
+850839-1,Classic Pirate Set,2013,147,43
+850841-1,LEGO® Classic Gift Wrap,2013,501,0
+850842-1,Fire Truck Holiday Bauble,2013,228,34
+850843-1,Dinosaur Holiday Bauble,2013,228,25
+850849-1,Friends Puppy Holiday Bauble,2013,227,29
+850850-1,Santa Holiday Bauble,2013,228,23
+850851-1,Lego Tree Holiday Bauble,2013,228,26
+850852-1,Lego Reindeer Holiday Bauble,2013,228,21
+850884-1,LEGO® Castle King Key Chain,2014,503,0
+850886-1,LEGO® Castle Dragon Wizard Key Chain,2014,503,0
+850888-1,Castle Knights Accessory Set,2014,371,36
+850889-1,Castle Dragons Accessory Set,2014,202,42
+850894-1,THE LEGO® MOVIE™ Emmet Key Chain,2014,503,0
+850895-1,THE LEGO® MOVIE™ Wyldstyle Key Chain,2014,503,0
+850896-1,THE LEGO® MOVIE™ Bad Cop Key Chain,2014,503,0
+850899-1,LEGO® Legends of Chima™ Playmat,2014,501,0
+850909-1,Sir Fangar Key Chain,2014,503,0
+8509-1,Swamp,2000,16,45
+850910-1,Legends of Chima Minifigure Accessory Set,2014,571,52
+850913-1,Fire and Ice Minifigure Accessory Set,2014,571,48
+850918-1,Ice Cube Tray,2014,501,0
+850929-1,LEGO® City Playmat,2014,501,0
+850932-1,Polar Accessory Set,2014,65,41
+850933-1,LEGO® City Policeman Key Chain,2014,503,0
+850935-1,Classic Minifigure Graduation Set,2014,501,27
+850936-1,Halloween Set,2014,230,11
+850939-1,Santa Set,2014,227,27
+850949-1,Christmas Snow Hut Ornament,2014,228,45
+850950-1,Christmas Cat Ornament,2014,228,34
+850951-1,Girl Minifigure Key Chain,2015,503,0
+850952-1,LEGO® Classic Firetruck Bag Charm,2014,503,0
+850953-1,Police Car Bag Charm,2014,503,0
+850963-1,LEGO® Friends Tumbler 2014,2014,501,14
+850967-1,Jungle Accessory Set,2014,494,39
+850972-1,Friendship Book,2014,501,0
+850996-1,Darth Vader Key Chain,2014,501,0
+850997-1,Princess Leia Key Chain,2014,503,0
+850998-1,LEGO® Star Wars™ Boba Fett™ Key Chain,2014,503,0
+850999-1,LEGO® Star Wars™ Stormtrooper™ Key Chain,2014,503,0
+851003-1,LEGO® Super Heroes The Joker Key Chain,2014,503,0
+851005-1,LEGO® Super Heroes Batgirl Key Chain,2014,503,0
+851007-1,Wolverine Magnet,2014,501,0
+8510-1,Lava,2000,16,35
+851015-1,LEGO® Legends of Chima™ Scorpion Sword & Shield,2014,501,0
+851091-1,R2-D2 Key Chain,2005,503,0
+851097,"Sword, Toa Hordika Blazer Claw with Flame End",2004,501,0
+851-1,Tractor,1977,4,324
+8511-1,Frost,2000,16,44
+8512-1,Onyx,2000,16,38
+851210-1,Lord Vladek Sword,2005,501,1
+8513-1,Dust,2000,16,45
+851317-1,LEGO® Star Wars™ Boba Fett™ Magnet,2014,501,0
+851318-1,Sir Fangar Claw & Shield,2014,501,0
+851320-1,LEGO® Minifigure Notebooks,2014,501,0
+851324-1,Dolphin Bag Charm,2014,503,4
+851325-1,Jungle Playmat,2014,501,0
+851331-1,I Love LEGOLAND Magnet [Female],2015,501,6
+851335-1,Ninja Sword,2015,501,0
+851336-1,Ninja Fork Weapon,2015,501,0
+851338-1,Ninja Belt & Throwing Star,2015,501,0
+851339-1,Ninja Bandana,2015,501,0
+851341-1,LEGO® Elves Playmat,2015,501,0
+851342-1,Ninja Army Building Set,2015,435,37
+851343-1,Drinking Bottle,2015,501,0
+851344-1,Tumbler,2015,501,13
+851351-1,Ninja Kai Key Chain,2015,503,0
+851352-1,Titanium Ninja Zane Key Chain,2015,503,0
+851353-1,Anacondrai Kapau Key Chain,2015,503,0
+851358-1,Holiday Bauble White Bricks,2015,206,62
+851362-1,Friends Party Set,2015,494,60
+851368-1,Laval Key Chain,2015,503,0
+851369-1,Icebite Key Chain,2015,503,0
+851393-1,Mermaid Key Chain,2015,503,0
+851394-1,Gingerbread Man Key Chain,2015,503,0
+851395-1,Robot Key Chain,2015,503,0
+851400-1,Upscaled Mug – Red,2015,501,0
+8514-1,Power,2000,16,32
+851417-1,LEGO Friends Wall Stickers,2015,501,0
+851441,"Headgear, Mask, Soft Foam, Bionicle Toa Hordika Vakama",2004,501,0
+851463-1,Clone Trooper Key Chain,2007,503,0
+851464-1,Chewbacca Key Chain,2007,503,0
+851490-1,Lord Vladek Mask,2005,501,1
+851502-1,Ice Brick Tray - Yellow,2007,501,0
+8515-1,RoboRider Wheels,2000,16,4
+8516-1,The Boss,2000,16,124
+851659-1,Boba Fett Keyring,2008,503,0
+851687-1,Robin Key Chain,2007,503,0
+8517-1,Humungousaur,2010,270,14
+8518-1,Jet Ray,2010,270,16
+8519-1,Big Chill,2010,270,20
+851938-1,Princess Leia Key Chain,2007,503,0
+852001-1,Fantasy Era Castle Chess Set,2007,502,164
+8520-1,Millennium/Millennia,2000,20,134
+852095-1,Yellow Brick Key Chain,2007,503,1
+852-1,Reconnaisance Helicopter,1977,4,364
+8521-1,Flare,2000,20,44
+852113-1,Millennium Falcon Bag Charm,2007,503,0
+852114-1,Y-Wing Fighter (Exclusive Bag Charm),2007,503,0
+852115,Vader's TIE Fighter Key Chain,2007,503,0
+852132-1,Castle Tic Tac Toe,2007,502,86
+852146-1,Professor Henry Jones Key Chain,2008,503,0
+852194-1,Dwarf Key Chain,2008,503,0
+8522-1,Spark,2000,20,35
+852227-1,Pirate Playing Cards,2009,501,0
+852231-1,"Coin Bank, Castle with Drawbridge",2008,501,96
+852271-1,Battle Pack Knights,2008,193,35
+852272-1,Battle Pack Skeletons,2008,193,43
+852273-1,Pink Brick Key Chain,2008,503,1
+852293-1,Fantasy Era Castle Giant Chess Set,2008,502,2455
+8523-1,Blaster / Blaster Slizer,2000,20,89
+852331-1,Vintage Minifigure Collection Vol. 1,2008,535,21
+852333-1,Keychain Name Programme,2008,503,0
+852347-1,Shock Trooper Key Chain,2008,503,0
+852351-1,Obi-Wan Key Chain,2008,503,0
+852354-1,Asajj Ventress Key Chain,2008,503,0
+852445-1,Gold Brick Key Chain,2008,503,0
+852535-1,Vintage Minifigure Collection Vol. 2,2009,535,22
+852548-1,CW R7-A7 Key Chain,2009,503,0
+852549-1,CW Count Dooku Key Chain,2009,503,0
+852550-1,CW Yoda Key Chain,2009,501,0
+852551-1,Magnet Set Darth Maul 2009,2009,501,24
+852552-1,Magnet Set Royal Guard 2009,2009,501,18
+852553-1,Magnet Set Stormtrooper 2009,2009,501,18
+852554-1,Star Wars Magnet Set,2008,501,21
+852555-1,Magnet Set CW Yoda 2009,2009,501,22
+852690-1,Designers' Tool Set,2009,501,2
+852697-1,Vintage Minifigure Collection Vol. 3,2009,535,22
+852701-1,Battle Pack Troll Warriors,2009,193,36
+852702-1,Battle Pack Dwarfs,2009,193,45
+852708-1,LEGO Minifigure Cake Mould,2009,501,0
+8527-1,LEGO Mindstorms NXT,2006,259,578
+852715-1,Star Wars Magnet Set,2009,501,19
+852737-1,Star Wars 10th Anniversary Stormtrooper Magnet,2009,501,6
+852741-1,Build your own Holiday Countdown Candle,2009,227,165
+852744-1,"Christmas Tree Ornaments, Build Your Own Holiday Ornaments",2009,228,66
+852747-1,Battle Pack Pirates,2009,153,42
+852750-1,Pirates Tic Tac Toe,2009,501,86
+852753-1,Vintage Minifigure Collection Vol. 4,2009,535,25
+852769-1,Vintage Minifigure Collection Vol. 5,2010,535,20
+852771-1,Minifigure Ice Cube Tray,2010,501,0
+852774-1,Shark Warrior Key Chain,2010,503,0
+852777-1,Magnet Set,2010,501,21
+852786-1,Rose,2010,206,29
+8528-1,Converter Cables for Mindstorms NXT,2006,259,3
+852815-1, White Spaceman Key Chain,2010,503,0
+852820-1,Minifig Display Box,2010,501,15
+852837-1,C-3PO Key Chain,2010,503,0
+852838-1,Wicket Key Chain,2010,501,0
+852842-1,Biker Scout Key Chain,2010,503,0
+852843-1,Star Wars Magnet Set,2010,501,14
+852844-1,Star Wars Magnet Set,2010,501,16
+852845-1,Star Wars Magnet Set,2010,501,19
+852848-1,Woody Key Chain,2010,503,0
+852856-1,LEGO Club Max Key Chain,2010,503,0
+852858-1,Foldable red shopping bag,2010,501,0
+8529-1,Connector Cables for Mindstorms NXT,2006,259,7
+852921-1,Battle Pack Lion Knights,2010,196,36
+852922-1,Battle Pack Dragon Knights,2010,196,37
+852942-1,Prince of Persia Magnet Set,2010,501,23
+852948-1,Female Minifigure Magnet Set,2010,501,20
+852949-1,Toy Story Magnet Set,2010,501,15
+852950-1,Alien Key Chain,2010,503,0
+852979-1,Albus Dumbledore Key Chain,2010,503,0
+852980-1,Se verus Snape Key Chain,2010,503,0
+852981-1,Dobby Key Chain,2010,503,0
+852985-1,Duck Key Chain,2010,503,0
+852986-1,Crocodile Key Chain,2010,503,0
+852987-1,Penguin Key Chain,2010,501,0
+852995-1,{Ducks},2010,301,15
+852996-1,Lego Club Max,2010,301,4
+852997-1,LEGO 2011 US Calendar,2010,501,0
+8530-1,Masks,2001,348,3
+853037-1,Star Wars Magnet Set,2010,501,20
+853091-1,City Policeman Key Chain,2011,503,0
+853092-1,City Burglars Magnet Set,2011,501,0
+853-1,Auto Chassis,1977,4,608
+8531-1,Pohatu,2001,348,49
+853111-1,Exclusive Weapon Training Set - Limited Edition,2011,435,28
+853118-1,Key Chain Emperor Palpatine,2011,503,0
+8531-2,Pohatu - With mini CD-ROM,2001,348,50
+853130-1,Star Wars Magnet Set,2011,501,0
+853143-1,LEGO Signature Minifigure Stationery Set,2011,501,0
+853146-1,LEGO Signature Minifigure Playing Cards,2011,501,0
+853148-1,LEGO Classic Logo Magnet,2011,501,0
+853175-1,"Coin Bank, Pharaoh's Quest",2011,501,117
+853176-1,Skeleton Mummy Battle Pack,2011,437,29
+853187-1,Captain Jack Sparrow Key Chain,2011,501,0
+853191-1,Pirates of the Caribbean Magnet Set,2011,501,0
+853195-1,"Calendar, Brick Calendar - Days and Months in English",2011,501,120
+8532-1,Onua,2001,348,30
+853213-1,Drink Tumbler,2012,501,9
+853219-1,Pirates of the Caribbean Battle Pack,2011,263,30
+8532-2,Onua - With mini CD-ROM,2001,348,33
+853261-1,LEGO Large Tote,2011,501,1
+853301-1,Alien Conquest Battle Pack,2011,127,27
+853305-1,Copenhagen Key Chain,2011,501,7
+8533-1,Gali,2001,348,35
+853313-1,Copenhagen LEGO Store Magnet [Male],2011,408,6
+8533-2,Gali - With mini CD-ROM,2001,348,36
+853340-1,Minifigure Wedding Favor Set,2011,408,30
+853344-1,Holiday Ornament with Red Bricks ,2011,227,32
+853345-1,Holiday Ornament with Gold Bricks,2011,227,42
+853346-1,Holiday Ornament with Green Bricks,2011,227,38
+853352-1,2012 US Calendar,2011,501,0
+853353-1,Holiday Scene Magnet,2011,501,47
+853358-1,Heroica Storage Mat,2011,501,18
+853373-1,LEGO Kingdoms Chess Set,2012,501,329
+853378-1,City Firemen Minifigure Pack,2012,58,22
+853379-1,Purple Brick Key Chain,2015,503,1
+853380-1,Turquoise Brick Key Chain,2015,503,1
+853393-1,Friends Picture Frame,2012,494,51
+853395-1,Friends Tumbler,2012,501,1
+8534-1,Tahu,2001,348,33
+8534-2,Tahu - With mini CD-ROM,2001,348,34
+853429-1,Batman Key Chain,2012,503,0
+853430-1,Superman Key Chain,2012,503,0
+853433-1,Wonder Woman Key Chain,2012,501,0
+853439-1,Upscaled Mug ,2015,501,0
+853440-1,LEGO Friends Jewelery Set,2015,501,22
+853441-1,Mini-doll Carry Case,2015,501,0
+853444-1,LEGO® Friends Mirror,2015,501,0
+853447-1,Ninja Sword & Sheath,2015,501,0
+853448-1,LEGO® Elves Diary,2015,501,0
+853449-1,Yoda™ Key Chain,2015,503,0
+853450-1,Emperor's Royal Guard™ Key Chain,2015,503,0
+853451-1,Chewbacca™ Key Chain,2015,503,0
+853461-1,LEGO Elves Bag Charm,2015,503,0
+853463-1,Swamp Police Key Chain,2015,503,0
+853464-1,Swamp Police Drinking Bottle,2015,501,0
+853465-1,Upscaled Mug – Blue,2015,501,0
+853469-1,Wicket™ Key Chain,2015,503,0
+853470-1,R2 D2™ Key Chain,2015,503,0
+853471-1,C 3PO™ Key Chain,2015,503,0
+853472-1,Luke Skywalker™ Key Chain,2015,503,0
+853474-1,Commander Gree™ Key Chain,2015,503,0
+853475-1,Imperial Gunner Key Chain,2015,503,0
+853476-1,Yoda™ Magnet,2015,501,2
+8535-1,Lewa,2001,348,36
+853515-1,Knights Army-Building Set,2016,605,26
+853516-1,Monsters Army-Building Set,2016,605,24
+8535-2,Lewa - With mini CD-ROM,2001,348,37
+853556-1,Mini-doll Campsite Set,2016,494,35
+853605-1,Poe Dameron™ Key Chain,2016,503,0
+853609-1,Minecraft Skin Pack,2016,577,1
+8536-1,Kopaka,2001,348,33
+8536-2,Kopaka - With mini CD-ROM,2001,348,34
+853638-1,BATMAN™ MINIFIGURE COLLECTOR FRAME,2017,609,46
+853648-1,Elves Roblin Bag Charm,2017,600,1
+853651-1,The Batman Movie Accessory Set,2017,484,30
+853671-1,Heartlake City Playmat 2017 with Parts,2017,494,90
+853677-1,NEXO KNIGHTS Stone Monsters Accessory Set,2017,605,23
+853687-1,NINJAGO Accessory Set,2017,435,26
+8537-1,Nui-Rama,2001,343,148
+8538-1,Muaka and Kane-ra,2001,343,633
+8539-1,Manas,2001,343,456
+8540-1,Vakama,2001,356,26
+854-1,Go-Kart,1978,4,211
+8541-1,Matau,2001,356,25
+8542-1,Onewa,2001,356,29
+8543-1,Nokama,2001,356,27
+8544-1,Nuju,2001,356,29
+8545-1,Whenua,2001,356,28
+8546-1,Power Pack,2001,346,10
+8547-1,Mindstorms NXT 2.0,2009,259,620
+8548-1,Nui-Jaga,2001,343,226
+8549-1,Tarakava,2001,343,403
+8550-1,Gahlok Va,2002,329,26
+855-1,Mobile crane,1978,4,512
+8551-1,Kohrak Va,2002,329,28
+8552-1,Lehvak Va,2002,329,28
+8553-1,Pahrak Va,2002,329,27
+8554-1,Tahnok Va,2002,329,27
+8555-1,Nuhvok Va,2002,329,26
+8556-1,Boxor,2002,347,157
+8557-1,Exo-Toa,2002,347,378
+8558-1,Cahdok and Gahdok,2002,347,636
+8559-1,Krana,2002,324,0
+8560-1,Pahrak,2002,328,41
+856-1,Bulldozer,1979,4,372
+8561-1,Nuhvok,2002,328,41
+8562-1,Gahlok,2002,328,41
+8563-1,Tahnok,2002,328,41
+8564-1,Lehvak,2002,328,41
+8565-1,Kohrak,2002,328,41
+8566-1,Onua Nuva,2002,354,41
+8567-1,Lewa Nuva,2002,354,37
+8568-1,Pohatu Nuva,2002,354,43
+8569-1,Krana,2002,324,0
+8570-1,Gali Nuva,2002,354,44
+857-1,Motorcycle with sidecar,1979,4,409
+8571-1,Kopaka Nuva,2002,354,42
+8572-1,Tahu Nuva,2002,354,36
+8573-1,Nuhvok-Kal,2003,330,42
+8574-1,Tahnok-Kal,2003,330,42
+8575-1,Kohrak-Kal,2003,330,42
+8576-1,Lehvak-Kal,2003,330,42
+8577-1,Pahrak-Kal,2003,330,42
+8578-1,Gahlok-Kal,2003,330,42
+8580-1,Kraata,2003,346,3
+858-1,Auto Engines,1980,4,242
+8581-1,Kopeke,2003,335,25
+8582-1,Matoro,2003,335,25
+8583-1,Hahli,2003,335,25
+8584-1,Hewkii,2003,335,25
+8584-2,Hewkii (Kabaya Promotional),2003,335,25
+8585-1,Hafu,2003,335,25
+8585-2,Hafu (Kabaya Promotional),2003,335,25
+8586-1,Macku,2003,335,25
+8586-2,Macku (Kabaya Promotional),2003,335,25
+8587-1,Panrahk,2003,344,45
+8587-2,Panrahk - With Shadow Kraata (Promotional Set),2003,344,45
+8587-3,Panrahk - With mini CD-ROM,2003,344,46
+8588-1,Kurahk,2003,344,45
+8588-2,Kurahk - With Shadow Kraata (Promotional Set),2003,344,45
+8588-3,Kurahk - With mini CD-ROM,2003,344,45
+8589-1,Lerahk,2003,344,45
+8589-2,Lerahk - With Shadow Kraata (Promotional Set),2003,344,45
+8589-3,Lerahk - With mini CD-ROM,2003,344,46
+8590-1,Guurahk,2003,344,45
+8590-2,Guurahk - With Shadow Kraata (Promotional Set),2003,344,45
+8590-3,Guurahk - With mini CD-ROM,2003,344,46
+8591-1,Vorahk,2003,344,45
+8591-2,Vorahk - With Shadow Kraata,2003,344,45
+8591-3,Vorahk - With mini CD-ROM,2003,344,45
+8592-1,Turahk,2003,344,45
+8592-2,Turahk - With Shadow Kraata,2003,344,45
+8592-3,Turahk - With mini CD-ROM,2003,344,46
+8593-1,Makuta,2003,347,199
+8594-1,Jaller and Gukko,2003,347,172
+8595-1,Takua and Pewku,2003,347,221
+8596-1,Takanuva,2003,347,200
+8597-1,Krana Nuva,2002,324,0
+8601-1,Toa Vakama,2003,353,48
+8601-2,Toa Vakama - 2004 San Diego Comic-Con Exclusive (Does Not Contain Exclusive Disk),2004,353,48
+8602-1,Toa Nokama,2004,353,46
+8603-1,Toa Whenua,2004,353,49
+8604-1,Toa Onewa,2004,353,44
+8605-1,Toa Matau,2004,353,46
+8606-1,Toa Nuju,2004,353,48
+8607-1,Nuhrii,2004,336,27
+8608-1,Vhisola,2004,336,27
+8609-1,Tehutti,2004,336,27
+8610-1,Ahkmou,2004,336,27
+8611-1,Orkahm,2004,336,27
+8612-1,Ehrye,2004,336,27
+8613-1,Kanoka Disk Launcher Pack,2004,346,4
+8614-1,Vahki Nuurakh,2004,357,32
+8614-2,Vahki Nuurakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,357,33
+8615-1,Vahki Bordakh,2004,357,32
+8615-2,Vahki Bordakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,357,33
+8616-1,Vahki Vorzakh,2004,357,32
+8616-2,Vahki Vorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,357,33
+8617-1,Vahki Zadakh,2004,357,32
+8617-2,Vahki Zadakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,357,33
+8618-1,Vahki Rorzakh,2004,357,32
+8618-2,Vahki Rorzakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,357,33
+8619-1,Vahki Keerakh,2004,357,32
+8619-2,Vahki Keerakh Limited Edition with Movie Edition Vahi and Disk Of Time,2004,357,33
+8620-1,Snow Scooter,1986,2,101
+8621-1,Turaga Dume and Nivawk,2004,347,180
+8622-1,Nidhiki,2004,347,170
+8623-1,Krekka,2004,347,214
+8624-1,Race for the Mask of Life,2006,341,507
+8625-1,Umbra,2006,347,179
+8626-1,Irnakk,2006,347,11
+8630-1,Mission 3: Gold Hunt,2008,302,351
+8631-1,Mission 1: Jetpack Pursuit,2008,302,87
+8632-1,Mission 2: Swamp Raid,2008,302,230
+8633-1,Mission 4: Speedboat Rescue,2008,302,339
+8634-1,Mission 5: Turbocar Chase,2008,302,496
+8635-1,Mission 6: Mobile Command Center,2008,302,1153
+8636-1,Mission 7: Deep Sea Quest,2008,302,520
+8637-1,Mission 8: Volcano Base,2008,302,714
+8638-1,Spy Jet Escape,2011,269,332
+8639-1,Big Bentley Bust Out,2011,269,743
+8640-1,Polar Copter,1986,2,240
+8641-1,Flame Glider,2005,120,53
+8642-1,Monster Crusher,2005,120,42
+8643-1,Power Cruiser,2005,120,45
+8644-1,Street Maniac,2005,120,35
+8645-1,Muscle Slammer Bike,2005,116,126
+8646-1,Speed Slammer Bike,2005,116,126
+8647-1,Night Racer,2005,116,76
+8648-1,Buzz Saw,2005,116,64
+8649-1,Nitro Menace,2005,116,621
+8650-1,Furious Slammer Racer,2005,116,254
+8651-1,Jumping Giant,2005,116,241
+8652-1,Enzo Ferrari 1:17,2005,114,477
+8653-1,Enzo Ferrari 1:10,2005,114,1357
+8654-1,Scuderia Ferrari Truck,2005,114,831
+8655-1,RX-Sprinter,2005,120,57
+8656-1,F6 Truck,2005,120,46
+8657-1,ATR 4,2005,120,38
+8658-1,Big Bling Wheelie,2005,120,31
+8660-1,Arctic Rescue Unit,1986,2,387
+8661-1,Carbon Star,2006,120,43
+8662-1,Blue Renegade,2006,120,48
+8663-1,Fat Trax,2006,120,41
+8664-1,Road Hero,2006,120,54
+8665-1,Highway Enforcer {Box},2006,120,52
+8666-1,TunerX,2006,120,60
+8667-1,Action Wheelie,2006,116,78
+8668-1,LEGO Competition Racers: Racers Fly Wheel Side Rider,2006,116,109
+8669-1,Fire Spinner 360,2006,116,112
+8670-1,Jump Master,2006,116,104
+8671-1,Ferrari 430 Spider 1:17,2006,114,559
+8672-1,Ferrari Finish Line,2006,114,575
+8673-1,Ferrari F1 Fuel Stop,2006,114,188
+8674-1,Ferrari F1 Racer 1:8,2006,114,1245
+8675-1,Outdoor Challenger,2006,117,98
+8676-1,Sunset Cruiser,2006,117,53
+8677-1,Ultimate Build Mater,2011,269,287
+8678-1,Ultimate Build Francesco,2011,269,195
+8679-1,Tokyo International Circuit,2011,269,848
+8680-1,Arctic Rescue Base,1986,2,525
+8681-1,Tuner Garage,2006,120,654
+8682-1,Nitro Intimidator,2006,116,723
+8683-0,Minifigure Series 1 [Random Bag],2010,536,0
+8683-1,Tribal Hunter - Complete Set,2010,536,8
+8683-10,Super Wrestler - Complete Set,2010,536,5
+8683-11,Nurse - Complete Set,2010,536,7
+8683-12,Ninja - Complete Set,2010,536,6
+8683-13,Spaceman - Complete Set,2010,536,8
+8683-14,Forestman - Complete Set,2010,536,8
+8683-15,Deep Sea Diver - Complete Set,2010,536,9
+8683-16,Cowboy - Complete Set,2010,536,7
+8683-17,Collectable Minifigures - LEGO Minifigures Series 1 - Complete,2010,536,16
+8683-18,Minifigure Series 1 (Box of 60),2010,536,60
+8683-2,Cheerleader - Complete Set,2010,536,7
+8683-3,Caveman - Complete Set,2010,536,6
+8683-4,Circus Clown - Complete Set,2010,536,6
+8683-5,Zombie - Complete Set,2010,536,6
+8683-6,Skater - Complete Set,2010,536,8
+8683-7,Robot - Complete Set,2010,536,5
+8683-8,Demolition Dummy - Complete Set,2010,536,6
+8683-9,Magician - Complete Set,2010,536,7
+8684-0,Minifigure Series 2 [Random Bag],2010,537,0
+8684-1,Mariachi / Maraca Man - Complete Set,2010,537,9
+8684-10,Weightlifter - Complete Set,2010,537,8
+8684-11,Pop Star - Complete Set,2010,537,6
+8684-12,Skier - Complete Set,2010,537,9
+8684-13,Disco Dude - Complete Set,2010,537,6
+8684-14,Karate Master - Complete Set,2010,537,6
+8684-15,Surfer - Complete Set,2010,537,6
+8684-16,Pharaoh - Complete Set,2010,537,6
+8684-17,Collectable Minifigures - LEGO Minifigures Series 2 - Complete,2010,537,16
+8684-18,Minifigure Series 2 (Box of 60),2010,537,60
+8684-2,Spartan Warrior - Complete Set,2010,537,8
+8684-3,Circus Ringmaster - Complete Set,2010,537,6
+8684-4,Witch - Complete Set,2010,537,6
+8684-5,Vampire - Complete Set,2010,537,7
+8684-6,Traffic Cop - Complete Set,2010,537,7
+8684-7,Explorer - Complete Set,2010,537,7
+8684-8,Lifeguard - Complete Set,2010,537,6
+8684-9,Mime - Complete Set,2010,537,7
+8685-1,Toa Kopaka,2008,339,53
+8686-1,Toa Lewa,2008,339,51
+8687-1,Toa Pohatu,2008,339,67
+8688-1,Toa Gali,2008,338,60
+8689-1,Toa Tahu,2008,338,73
+8690-1,Toa Onua,2008,338,62
+8691-1,Antroz,2008,339,52
+8692-1,Vamprah,2008,339,48
+8693-1,Chirox,2008,339,48
+8694-1,Krika,2008,338,40
+8695-1,Gorast,2008,338,51
+8696-1,Bitil,2008,338,54
+8697-1,Toa Ignika,2008,359,140
+8698-1,Vultraz,2008,359,133
+8699-1,Takanuva,2008,359,267
+8700-1,Expert Builder Power Pack,1982,4,27
+870-1,Supplementary Set,1977,4,22
+8701-1,King Jayko,2006,198,130
+8702-1,Lord Vladek,2006,198,112
+8703-1,Sir Kentis,2006,198,42
+8704-1,Sir Adric,2006,198,40
+8705-1,Dracus,2006,198,38
+8706-1,Karzon,2006,198,44
+8707-1,Boulder Blaster,2009,439,295
+8708-1,Cave Crusher,2009,439,259
+8709-1,Underground Mining Station,2009,439,635
+8710-1,Supplementary Set,1980,4,124
+871-1,Supplementary Set,1977,4,78
+8712-1,Action Figures,1988,19,14
+8714-1,The LEGO TECHNIC Team / Team,1993,19,9
+8715-1,Ultimate Creatures Accessory Set,2005,346,401
+8719-1,Zamor Spheres,2006,346,10
+8720-1,Power Pack,1991,19,57
+872-1,Supplementary Set,1978,4,77
+8721-1,Velika,2006,337,21
+8722-1,Kazi,2006,337,25
+8723-1,Piruk,2006,337,27
+8724-1,Garan,2006,337,21
+8725-1,Balta,2006,337,22
+8726-1,Dalu,2006,337,25
+8727-1,Inika Toa Jaller,2006,351,46
+8728-1,Inika Toa Hahli,2006,351,46
+8729-1,Inika Toa Nuparu,2006,351,55
+8730-1,Inika Toa Hewkii,2006,351,62
+8731-1,Inika Toa Kongu,2006,351,46
+8732-1,Inika Toa Matoro,2006,351,47
+8733-1,Axonn,2006,347,196
+8734-1,Brutaka,2006,347,191
+8735-1,Power Pack Motor Set,1998,19,60
+8736-1,Toa Hordika Vakama,2005,350,48
+8737-1,Toa Hordika Nokama,2005,350,48
+8738-1,Toa Hordika Whenua,2005,350,48
+8739-1,Toa Hordika Onewa,2005,350,48
+8740-1,Toa Hordika Matau,2005,350,48
+874-1,Supplementary Set,1979,4,38
+8741-1,Toa Hordika Nuju,2005,350,48
+8742-1,Visorak Vohtarak,2005,358,48
+8743-1,Visorak Boggarak,2005,358,48
+8744-1,Visorak Oohnorak,2005,358,48
+8745-1,Visorak Roporak,2005,358,48
+8746-1,Visorak Keelerak,2005,358,48
+8747-1,Visorak Suukorak,2005,358,48
+8748-1,Rhotuka Spinners,2005,346,5
+875-1,Supplementary Set,1979,4,38
+8755-1,Keetongu,2005,347,203
+8756-1,Sidorak,2005,347,211
+8757-1,Visorak Battle Ram,2005,341,190
+8758-1,Tower of Toa,2005,341,407
+8759-1,Battle of Metru Nui,2005,341,871
+876-1,Supplementary Set,1979,4,38
+8761-1,Roodaka,2005,347,233
+8762-1,Toa Iruini,2005,349,53
+8763-1,Toa Norik,2005,349,55
+8764-1,Vezon & Fenrakk,2006,347,281
+8769-1,Visorak's Gate,2005,341,330
+8770-1,Danju (European version without Cards),2004,198,42
+877-1,Supplementary Set,1979,4,30
+8771-1,Jayko (European version without Cards),2004,198,45
+8772-1,Rascus (European version without Cards),2004,198,46
+8773-1,Santis (European version without Cards),2004,198,46
+8774-1,Vladek (European version without Cards),2004,198,48
+8777-1,Vladek Encounter,2004,198,42
+8778-1,Border Ambush,2004,198,177
+8779-1,The Grand Tournament,2004,198,321
+8780-1,Citadel of Orlan,2004,198,443
+878-1,Supplementary Set,1979,4,52
+8781-1,Castle of Morcia,2004,198,658
+8782-1,Danju (USA version with 3 Cards),2004,198,45
+8782-2,"Danju (USA version with 6 Cards, Target Promo)",2004,198,48
+8783-1,Jayko (USA version with 3 Cards),2004,198,48
+8783-2,"Jayko (USA version with 6 Cards, Target Promo)",2004,198,51
+8784-1,Rascus (USA version with 3 Cards),2004,198,49
+8784-2,"Rascus (USA version with 6 Cards, Target Promo)",2004,198,52
+8785-1,Santis (USA version with 3 Cards),2004,198,49
+8785-2,"Santis (USA version with 6 Cards, Target Promo)",2004,198,52
+8785452-1,MUJI Transparent Set,2010,301,0
+8785476-1,MUJI Sea Set,2010,301,91
+8785483-1,MUJI Circus Set,2010,301,91
+8785490-1,MUJI Animals Set,2010,301,0
+8785506-1,MUJI Colour Paper Pad and Perforation Grid,2010,301,0
+8786-1,Vladek (USA version with 3 Cards),2004,198,51
+8786-2,"Vladek (USA version with 6 Cards, Target Promo)",2004,198,54
+8790-1,"King Mathias (Series 1) Limited Edition with Map and Cape, European",2004,198,41
+879-1,Supplementary Set,1979,4,87
+8791-1,Sir Danju,2005,198,42
+8792-1,Sir Jayko,2005,198,42
+8793-1,Sir Rascus,2005,198,44
+8794-1,Sir Santis,2005,198,44
+8795-1,Lord Vladek,2005,198,44
+8796-1,King Mathias (Series 2),2005,198,43
+8799-1,Knights' Castle Wall,2004,198,178
+88000-1,Power Functions AAA Battery Box,2011,438,1
+880001-1,Competition Racers with Stopwatch,1998,3,2
+880002-1,World Cup German Starter Set,1998,462,7
+880002-2,World Cup Dutch Starter Set,1998,462,7
+880002-3,World Cup UK Starter Set,1998,462,7
+8800-1,Vladek's Siege Engine,2004,198,192
+880010-1,Exclusive Roboriders Pack,2001,16,2
+880011-1,Exclusive Roboriders Pack,2001,16,2
+880012-1,Exclusive Roboriders Pack,2001,16,2
+88002-1,Power Functions Train Motor,2011,438,7
+88003-1,Power Functions L-Motor,2013,438,1
+88004-1,Power Functions Servo Motor,2013,438,1
+880-1,Supplementary Set,1979,4,22
+8801-1,Knights' Attack Barge,2005,198,167
+8802-1,Dark Fortress Landing,2005,198,145
+8803-0,Minifigure Series 3 [Random Bag],2011,538,0
+8803-1,Fisherman - Complete Set,2011,538,9
+8803-10,Tennis Player - Complete Set,2011,538,6
+8803-11,Race Car Driver - Complete Set,2011,538,7
+8803-12,Gorilla Suit Guy - Complete Set,2011,538,6
+8803-13,Space Alien - Complete Set,2011,538,6
+8803-14,Hula Dancer - Complete Set,2011,538,8
+8803-15,Rapper - Complete Set,2011,538,7
+8803-16,Baseball Player - Complete Set,2011,538,6
+8803-17,Collectable Minifigures - LEGO Minifigures Series 3 - Complete,2011,538,16
+8803-18,Minifigure Series 3 (Box of 60),2011,538,60
+8803-2,Pilot - Complete Set,2011,538,7
+8803-3,Tribal Chief - Complete Set,2011,538,6
+8803-4,Samurai Warrior - Complete Set,2011,538,7
+8803-5,Snowboarder - Complete Set,2011,538,7
+8803-6,Space Villain - Complete Set,2011,538,8
+8803-7,Sumo Wrestler - Complete Set,2011,538,6
+8803-8,Mummy - Complete Set,2011,538,5
+8803-9,Elf - Complete Set,2011,538,8
+8804-0,Minifigure Series 4 [Random Bag],2011,539,0
+8804-1,Lawn Gnome - Complete Set,2011,539,8
+8804-10,Sailor - Complete Set,2011,539,6
+8804-11,Soccer Player - Complete Set,2011,539,8
+8804-12,Werewolf - Complete Set,2011,539,6
+8804-13,Hazmat Guy - Complete Set,2011,539,6
+8804-14,Artist - Complete Set,2011,539,7
+8804-15,Ice Skater - Complete Set,2011,539,8
+8804-16,Crazy Scientist - Complete Set,2011,539,6
+8804-17,Collectable Minifigures - LEGO Minifigures Series 4 - Complete,2011,539,16
+8804-18,Minifigure Series 4 (Box of 60),2011,539,60
+8804-2,Kimono Girl - Complete Set,2011,539,6
+8804-3,Musketeer - Complete Set,2011,539,7
+8804-4,Punk Rocker - Complete Set,2011,539,6
+8804-5,Surfer Girl - Complete Set,2011,539,6
+8804-6,Viking - Complete Set,2011,539,10
+8804-7,The Monster - Complete Set,2011,539,5
+8804-8,Hockey Player - Complete Set,2011,539,11
+8804-9,Street Skater - Complete Set,2011,539,8
+8805-0,Minifigure Series 5 [Random Bag],2011,540,0
+8805-1,Graduate - Complete Set,2011,540,7
+8805-10,Fitness Instructor - Complete Set,2011,540,6
+8805-11,Detective - Complete Set,2011,540,6
+8805-12,Evil Dwarf - Complete Set,2011,540,10
+8805-13,Boxer - Complete Set,2011,540,5
+8805-14,Egyptian Queen - Complete Set,2011,540,6
+8805-15,Gangster - Complete Set,2011,540,7
+8805-16,Snowboarder Guy - Complete Set,2011,540,6
+8805-17,Collectable Minifigures - LEGO Minifigures Series 5 - Complete,2011,540,16
+8805-18,Minifigure Series 5 (Box of 60),2011,540,60
+8805-2,Gladiator - Complete Set,2011,540,7
+8805-3,Royal Guard - Complete Set,2011,540,6
+8805-4,Ice Fisherman - Complete Set,2011,540,8
+8805-5,Cave Woman - Complete Set,2011,540,7
+8805-6,Lizard Man - Complete Set,2011,540,6
+8805-7,Zookeeper - Complete Set,2011,540,7
+8805-8,Lumberjack - Complete Set,2011,540,6
+8805-9,Small Clown - Complete Set,2011,540,6
+8808-1,F1 Racer,1994,12,93
+8809-1,"King Mathias (Series 1) Limited Edition with Map and Cape, US",2004,198,44
+8810-1,Cafe Racer,1991,13,80
+8811-1,Toa Lhikan & Kikanalo,2004,347,217
+8812-1,Aero Hawk II,1994,6,148
+8813-1,Battle at the Pass,2006,198,377
+8815-1,Speedway Bandit,1991,12,78
+8816-1,Off-Road Rambler,1994,11,185
+8818-1,Baja Blaster,1993,11,119
+8820-1,Mountain Rambler,1991,11,139
+8821-1,Rogue Knight Battleship,2006,198,153
+8822-1,Gargoyle Bridge,2006,198,234
+8823-1,Mistlands Tower,2006,198,437
+8824-1,Hovercraft,1994,10,192
+8825-1,Night Chopper,1991,6,113
+8826-1,ATX Sport Cycle,1993,13,95
+8827-0,Minifigure Series 6 [Random Bag],2012,541,0
+8827-1,Classic Alien - Complete Set,2012,541,6
+8827-10,Roman Soldier - Complete Set,2012,541,7
+8827-11,Surgeon - Complete Set,2012,541,7
+8827-12,Skater Girl - Complete Set,2012,541,8
+8827-13,Intergalactic Girl - Complete Set,2012,541,9
+8827-14,Butcher - Complete Set,2012,541,7
+8827-15,Mechanic - Complete Set,2012,541,7
+8827-16,Genie - Complete Set,2012,541,7
+8827-17,Collectable Minifigures - LEGO Minifigures Series 6 - Complete,2012,541,16
+8827-18,Minifigure Series 6 (Box of 60),2012,541,60
+8827-2,Highland Battler - Complete Set,2012,541,7
+8827-3,Sleepyhead - Complete Set,2012,541,6
+8827-4,Lady Liberty - Complete Set,2012,541,8
+8827-5,Bandit - Complete Set,2012,541,8
+8827-6,Flamenco Dancer - Complete Set,2012,541,6
+8827-7,Clockwork Robot - Complete Set,2012,541,6
+8827-8,Minotaur - Complete Set,2012,541,8
+8827-9,Leprechaun - Complete Set,2012,541,9
+8828-1,Front End Loader,1993,7,175
+8829-1,Dune Blaster,1994,11,277
+8830-1,Rally 6-wheeler,1990,12,169
+8831-0,Minifigure Series 7 [Random Bag],2012,542,0
+8831-1,Swimming Champion - Complete Set,2012,542,6
+8831-10,Jungle Boy - Complete Set,2012,542,7
+8831-11,Hippie - Complete Set,2012,542,9
+8831-12,Computer Programmer - Complete Set,2012,542,7
+8831-13,Viking Woman - Complete Set,2012,542,9
+8831-14,Evil Knight - Complete Set,2012,542,8
+8831-15,Rocker Girl - Complete Set,2012,542,6
+8831-16,Grandma Visitor - Complete Set,2012,542,7
+8831-17,LEGO Minifigures Series 7 - Complete,2012,542,16
+8831-18,Minifigure Series 7 (Box of 60),2012,542,60
+8831-2,Aztec Warrior - Complete Set,2012,542,7
+8831-3,Bunny Suit Guy - Complete Set,2012,542,7
+8831-4,Bride - Complete Set,2012,542,11
+8831-5,Ocean King - Complete Set,2012,542,7
+8831-6,Bagpiper - Complete Set,2012,542,7
+8831-7,Daredevil - Complete Set,2012,542,8
+8831-8,Galaxy Patrol - Complete Set,2012,542,7
+8831-9,Tennis Ace - Complete Set,2012,542,6
+8832-1,Roadster,1988,12,86
+8833-0,Minifigure Series 8 [Random Bag],2012,543,0
+8833-1,Evil Robot - Complete Set,2012,543,8
+8833-10,Santa - Complete Set,2012,543,7
+8833-11,Vampire Bat - Complete Set,2012,543,5
+8833-12,DJ - Complete Set,2012,543,7
+8833-13,Red Cheerleader - Complete Set,2012,543,7
+8833-14,Actor - Complete Set,2012,543,7
+8833-15,Pirate Captain - Complete Set,2012,543,7
+8833-16,Alien Villainess - Complete Set,2012,543,10
+8833-17,LEGO Minifigures Series 8 - Complete,2012,543,16
+8833-18,Minifigure Series 8 (Box of 60),2012,543,60
+8833-2,Conquistador - Complete Set,2012,543,8
+8833-3,Lederhosen Guy - Complete Set,2012,543,7
+8833-4,Cowgirl - Complete Set,2012,543,6
+8833-5,Football Player - Complete Set,2012,543,8
+8833-6,Diver - Complete Set,2012,543,8
+8833-7,Downhill Skier - Complete Set,2012,543,9
+8833-8,Businessman - Complete Set,2012,543,7
+8833-9,Fairy - Complete Set,2012,543,8
+8835-1,Forklift,1989,7,240
+8836-1,Sky Ranger,1993,6,273
+8837-1,Pneumatic Excavator,1992,7,257
+8838-1,Shock Cycle,1991,13,248
+8839-1,Supply Ship,1992,10,531
+8840-1,Rally Shock n' Roll Racer,1991,12,229
+8841-1,Desert Racer,1983,11,180
+8842-1,Go-Cart,1986,12,280
+8843-1,Fork Lift Truck,1984,7,272
+8844-1,Helicopter,1981,4,316
+8845-1,Dune Buggy,1981,4,174
+8846-1,Tow Truck,1982,4,379
+8847-1,Dragster,1983,4,250
+8848-1,Power Truck,1981,4,398
+8849-1,Tractor,1986,8,347
+8850-1,Rally Support Truck,1990,12,360
+885-1,Space Scooter,1979,130,20
+8851-1,Excavator,1984,7,362
+8852-1,Robot,1987,14,327
+8853-1,Excavator / Digger,1988,7,326
+8854-1,Power Crane,1989,7,516
+8855-1,Prop Plane,1988,6,572
+8856-1,Whirlwind Rescue,1991,6,516
+8857-1,Street Chopper / Trike,1993,13,377
+8857-2,LEGO Motorcycle,1980,4,409
+8858-1,Rebel Wrecker,1994,11,452
+8858-2,Auto Engines,1980,4,244
+8859-1,Tractor,1981,4,614
+8860-1,Car Chassis,1980,4,676
+886-1,Space Buggy,1979,130,20
+8862-1,Backhoe Grader,1989,7,679
+8863-1,Blizzard's Peak,2010,123,502
+8864-1,Desert of Destruction,2010,123,964
+8865-1,Test Car,1988,15,900
+8866-1,Train Motor (RC),2009,245,7
+8867-1,Flexible Train Track,2009,245,64
+8868-1,Airtech Claw Rig,1992,7,979
+8869-1,Power Functions Control Switch,2009,438,1
+8870-1,Power Functions Light,2009,438,1
+8871-1,Power Functions Extension Wire 50cm,2009,438,1
+8872-1,Forklift Transporter,1993,7,763
+8873-1,Fireball Catapult,2005,198,45
+8874-1,Battle Wagon,2005,198,126
+8875-1,King's Siege Tower,2005,198,131
+8876-1,Scorpion Prison Cave,2005,198,281
+8877-1,Vladek's Dark Fortress,2005,198,989
+8878-1,Rechargeable Battery Box,2009,438,1
+8879-1,IR Speed Remote Control,2009,438,1
+8880-1,Super Car,1994,15,1345
+8881-1,Power Functions Battery Box,2008,438,1
+8882-1,Power Functions XL-Motor,2008,438,1
+8883-1,Power Functions M-Motor,2008,438,1
+8884-1,Power Functions IR Receiver,2008,438,1
+8885-1,Power Functions IR Remote Control,2008,438,1
+8886-1,Power Functions Extension Wire,2008,438,1
+8887-1,Power Functions Transformer 10VDC,2009,438,1
+8888-1,Idea Book 8888,1980,498,1
+8889-1,Idea Book 8889,1984,498,1
+8890-1,Idea Book 8890,1988,498,1
+889-1,Radar Truck,1979,130,29
+8891-1,"Idea Book 8891, Technic",1991,498,1
+8892-1,Piraka Outpost,2006,341,211
+8893-1,Lava Chamber Gate,2006,341,375
+8894-1,Piraka Stronghold,2006,341,649
+8896-1,Snake Canyon,2010,123,56
+8897-1,Jagged Jaws Reef,2010,123,190
+8898-1,Wreckage Road,2010,123,267
+8899-1,Gator Swamp,2010,123,352
+8900-1,Reidak,2006,340,41
+890-1,Windup Motor,1981,473,10
+8901-1,Hakann,2006,340,42
+890-2,"Lockable Storage Box, Empty",1967,371,1
+8902-1,Vezok,2006,340,41
+8903-1,Zaktan,2006,340,42
+8904-1,Avak,2006,340,41
+8905-1,Thok,2006,340,42
+8907-1,Rock Hacker,2009,439,29
+8908-1,Monster Launcher,2009,439,15
+8909-0,Team GB Minifigures [Random Bag],2012,546,0
+8909-1,Brawny Boxer - Team GB,2012,546,6
+8909-17,Team GB Minifigures - Complete Set,2012,546,9
+8909-18,Team GB Minifigures - Sealed Box,2012,546,60
+8909-2,Stealth Swimmer - Team GB Complete Set with Stand and Accessories,2012,546,6
+8909-3,Relay Runner - Team GB Complete Set with Stand and Accessories,2012,546,7
+8909-4,Judo Fighter - Team GB Complete Set with Stand and Accessories,2012,546,6
+8909-5,Tactical Tennis Player - Team GB Complete Set with Stand and Accessories,2012,546,7
+8909-6,Flexible Gymnast - Team GB Complete Set with Stand and Accessories,2012,546,9
+8909-7,Wondrous Weightlifter - Team GB Complete Set with Stand and Accessories,2012,546,9
+8909-8,Horseback Rider - Team GB Complete Set with Stand and Accessories,2012,546,6
+8909-9,Agile Archer - Team GB Complete Set with Stand and Accessories,2012,546,7
+8910-1,Toa Mahri Kongu,2007,352,63
+891-1,Two-Man Scooter,1979,130,39
+8911-1,Toa Mahri Jaller,2007,352,67
+8912-1,Toa Mahri Hewkii,2007,352,61
+8913-1,Toa Mahri Nuparu,2007,352,58
+8914-1,Toa Mahri Hahli,2007,352,58
+891501-1,Ninjago Kai,2015,435,9
+891503-1,Cole polybag,2015,435,11
+891504-1,Weapon Rack,2015,435,25
+891505-1,Jay,2015,435,9
+891507-1,Zane foil pack,2015,435,9
+8915-1,Toa Mahri Matoro,2007,352,62
+8916-1,Takadox,2007,326,62
+891610-1,Clouse foil pack,2016,435,8
+891611-1,Cole foil pack,2016,435,16
+891613-1,Kai’s dragon,2016,435,21
+8917-1,Kalmah,2007,326,53
+8918-1,Carapar,2007,326,50
+8919-1,Mantax,2007,326,58
+8920-1,Ehlek,2007,326,54
+8921-1,Pridak,2007,326,47
+8922-1,Gadunka,2007,359,176
+8923-1,Hydraxon,2007,359,165
+8924-1,Maxilos and Spinax,2007,359,256
+8925-1,Barraki Deepsea Patrol,2007,341,200
+8926-1,Toa Undersea Attack,2007,341,357
+8927-1,Toa Terrain Crawler,2007,341,603
+8929-1,Defilak,2007,334,37
+8930-1,Dekar,2007,334,37
+8931-1,Thulox,2007,334,39
+8932-1,Morak,2007,334,40
+8934-1,Squid Ammo,2007,346,7
+8935-1,Nocturn,2007,359,114
+8939-1,Lesovikk,2007,359,149
+8940-1,Karzahni,2007,359,375
+894-1,Mobile Ground Tracking Station,1979,130,79
+8941-1,Rockoh T3,2008,327,388
+8942-1,Jetrax T6,2008,327,420
+8942-2,Jetrax T6 Limited Edition,2008,327,420
+8943-1,Axalara T9,2008,327,694
+8944-1,Tanma,2008,333,14
+8945-1,Solek,2008,333,14
+8946-1,Photok,2008,333,14
+8947-1,Radiak,2008,333,16
+8948-1,Gavla,2008,333,14
+8949-1,Kirop,2008,333,14
+895-1,Windup Motor,1986,473,10
+8952-1,Mutran & Vican,2008,359,90
+8953-1,Makuta Icarax,2008,359,159
+8954-1,Mazeka,2008,359,301
+8956-1,Stone Chopper,2009,439,33
+8957-1,Mine Mech,2009,439,69
+8958-1,Granite Grinder,2009,439,96
+8959-1,Claw Digger,2009,439,199
+8960-1,Thunder Driller,2009,439,237
+8961-1,Crystal Sweeper,2009,439,479
+8962-1,Crystal King,2009,439,169
+8963-1,Rock Wrecker,2009,439,224
+8964-1,Titanium Command Rig,2009,439,708
+8967-1,Gold Tooth's Getaway,2009,302,67
+8968-1,River Heist,2009,302,202
+8969-1,4-Wheeling Pursuit,2009,302,319
+8970-1,Robo Attack,2009,302,412
+897-1,Mobile Rocket Launcher,1979,130,77
+8971-1,Aerial Defense Unit,2009,302,698
+8972-1,Atakus,2009,325,13
+8973-1,Raanu,2009,325,14
+8974-1,Tarduk,2009,325,17
+8975-1,Berix,2009,325,15
+8976-1,Metus,2009,325,14
+8977-1,Zesk,2009,325,16
+8978-1,Skrall,2009,331,50
+8979-1,Malum,2009,331,59
+8980-1,Gresh,2009,331,55
+8981-1,Tarix,2009,331,57
+8982-1,Strakk,2009,331,46
+8983-1,Vorox,2009,331,51
+8984-1,Stronius,2009,332,55
+8985-1,Ackar,2009,332,55
+8986-1,Vastus,2009,332,52
+8987-1,Kiina,2009,332,43
+8988-1,Gelu,2009,332,52
+8989-1,Mata Nui,2009,332,52
+8990-1,Fero and Skirmix,2009,359,148
+8991-1,Tuma,2009,359,187
+8992-1,Cendox V1,2009,327,151
+8993-1,Kaxium V3,2009,327,251
+8994-1,Baranus V7,2009,327,263
+8995-1,Thornatus V9,2009,327,438
+8996-1,Skopio XV-1,2009,327,848
+8998-1,Toa Mata Nui,2009,359,366
+900-1,Universal Motor Set,1973,473,24
+9001-2,Medium Blue Storage Bin (16.5in x 12in x 6in),2007,528,1
+900-2,4 Small Wheels with Accessories,1969,371,12
+901-1,4.5V Motor Set,1976,473,31
+901-2,2 Large Wheels with Accessories,1969,371,7
+901503-1,Krait Polybag,2015,435,7
+90-2,Educational Box - Empty,1965,513,1
+9020-1,LEGO Soft Starter Set,1998,526,84
+902-1,5 Turntables,1969,371,5
+9021-1,Medium set of Soft Bricks,1999,526,52
+9022-1,Extra Soft Bricks,1999,526,32
+9023-1,Soft Brick Activity Set,2000,526,7
+9027-1,Duplo Bulk Set,2007,504,144
+903-1,Train Wheels and Couplers,1969,371,10
+906-1,12 doors and 5 hinges,1969,371,17
+9089-1,Tubes Experiment Set,2004,507,150
+9090-1,XL Duplo Bulk Set,1993,507,564
+9091-1,Playhouse Set,2010,504,125
+9092-1,Crazy Demon,2012,112,85
+9093-1,Bone Cruncher,2012,112,86
+9094-1,Star Striker,2012,112,88
+9095-1,Nitro Predator,2012,112,86
+9-1,Universal Building Set,1978,469,116
+910-1,Universal Building Set,1976,469,318
+911-1,Universal Building Set,1976,469,401
+911506-1,Null Set-Use SW911506-1,2015,301,1
+911609-1,Naboo Starfighter,2016,164,34
+911611-1,AAT,2016,158,37
+911613-1,TIE Bomber,2016,164,26
+911614-1,Yoda's Hut,2016,158,29
+911615-1,AT-AT,2016,158,48
+911618-1,Flash Speeder,2017,158,43
+912-1,Universal Building Set,1976,469,471
+914-1,"Windows, Red",1969,371,10
+914-2,"Windows, White",1969,371,10
+915-1,6 bricks with 16 and 20 studs and 3 Angle Bricks White/Red,1969,371,9
+915-2,6 bricks with 16 and 20 studs and 3 Angle Bricks Blue/Yellow,1969,371,9
+918-1,Space Transport,1979,130,86
+918-2,21 8-Stud Bricks,1969,371,126
+918-black-2,21 Black 2x4 Bricks,1969,371,21
+918-blue-2,21 Blue 2x4 Bricks,1969,371,21
+918-red-2,21 Red 2x4 Bricks,1969,371,21
+918-tclear-2,21 Trans-Clear 2x4 Bricks,1969,371,21
+918-white-2,21 White 2x4 Bricks,1969,371,21
+918-yellow-2,21 Yellow 2x4 Bricks,1969,371,21
+919-1,"31 bricks with 2, 4 and 6 studs",1969,371,186
+9-2,Trees & Flowers,1981,455,18
+920-2,Alpha-1 Rocket Base,1979,130,187
+9209-1,Community Services Set,2012,507,130
+9213-1,Dinosaurs Set,2007,504,95
+9217-1,Farm Set,2010,504,150
+9218-1,Wild Animals Set,2012,507,96
+922-1,"28 Bricks with 1, 2, 4, 6 and 8 Studs [Red/White]",1969,371,28
+922-2,"28 Bricks with 1, 2, 4, 6 and 8 Studs [Blue/Yellow]",1969,371,28
+9222-1,Duplo World People,2007,504,16
+922-3,"28 Bricks with 1, 2, 4, 6 and 8 Studs [Black/Trans-Clear]",1969,371,28
+9224-1,Duplo Community People,2006,504,19
+9227-1,Farm,2007,504,104
+9230-1,Duplo Town Set,2004,505,204
+923-1,"50 bricks, curved and round",1969,371,150
+924-1,Space Cruiser,1979,130,172
+9241-1,Wheels Set,2007,528,360
+9243-1,Doors Windows and Roof Tiles,2002,528,270
+9247-1,Community Workers,2005,533,133
+9247-2,Community Workers,2006,533,218
+9248-1,Bonus Lego Basic Town,1998,534,2
+9249-1,LEGO Basic Airport,1988,534,0
+9251-1,Lego Basic Just Bricks,2000,507,576
+9255-1,Basic Set,1992,534,185
+9256-1,"Faces, Fences, Wheels and Windows",2000,528,110
+926-1,Command Centre (Center),1979,130,177
+9279-2,Small Lego System Baseplates,2008,528,9
+9280-1,Giant Lego Dacta Basic Set,1997,534,1417
+928-1,Galaxy Explorer,1979,130,342
+9286-1,Large Building Plates,1998,528,4
+9287-1,Bonus Lego Basic Town,1996,534,2496
+9293-1,Community Workers,1996,533,80
+9-3,Magnetic Train Couplers,1977,456,4
+930-1,Red Bricks,1973,473,45
+9301-1,Road Signs,1999,533,172
+9302-1,Creator Community Builders,2004,514,1690
+9303-1,Creator Community Builders,2004,514,1190
+9305-1,Jack Stone Transportation,2003,508,4
+9306-1,Creator Bulk,2003,22,610
+9310-1,Dinosaurs Set,2001,515,4
+931-1,White Bricks,1973,473,45
+9311-1,City Buildings Set,2010,533,815
+9314-1,Rescue Service Set,2010,533,1493
+9320-1,Voyage into Space,2003,527,637
+932-1,Blue and Yellow Bricks,1973,473,45
+9322-1,Town Developers Set,2007,533,1835
+9324-1,Micro Building Set,2007,533,1657
+933-1,Doors and Windows,1973,473,38
+9331-1,BuildToExpress Set,2009,507,207
+9333-1,Vehicles,2010,533,934
+9334-1,Animals,2010,507,1082
+9335-1,Space & Airport Set,2010,533,1182
+9337-1,Harbor Set,2011,533,906
+9338-1,LEGO SERIOUS Play mini-kit,2011,507,57
+934-1,"Roof Bricks, 45 Degrees",1973,473,58
+9348-1,Community Minifigures,2011,533,264
+9349-1,Fairytale and Historic Minifigures,2011,507,232
+935-1,"Roof Bricks, 33 Degrees",1973,473,43
+9353-1,Dacta Theme Set,1991,533,900
+9354-1,Town Street Theme,1991,533,534
+9355-1,Dacta Space Theme Set,1990,527,559
+9356-1,Town Environment,1986,533,639
+9360-1,{Roadplates and Scenery},1986,533,85
+936-1,Wheels and Tires,1973,473,20
+9361-1,People,1991,533,174
+9362-1,Road Plates,1991,533,8
+9364-1,Hospital,1993,533,584
+9365-1,Lego Dacta Community Vehicles,1993,533,739
+9369-1,Lego Dacta Community Vehicles,1998,533,6
+9370-1,Lego System Road Plates,1998,533,10
+937-1,Doors and Fences,1973,473,34
+9371-1,Town Vehicles,1999,533,353
+9373-1,Lego System Road Plates,2003,533,5
+9376-1,Lego Dacta Castle Set,1997,512,337
+9377-1,Lego Dacta Adventurers Set,1998,509,3
+9380-1,Lego Technic Racers,1998,529,5
+938-1,"Plates, Hinges and Turntables",1973,473,17
+9384-1,Bricks,2010,528,884
+9385-1,Sceneries Set,2010,22,1229
+9386-1,Doors Windows & Roof Tiles,2010,528,278
+9387-1,Wheels Set,2011,507,286
+9388-1,Small building plates,2012,507,22
+9389-1,Community Starter Set,2012,507,1903
+9390-1,Mini Tow Truck,2012,1,138
+939-1,"Flags, Trees and Road Signs",1972,473,19
+9391-1,Mini Crane,2012,5,218
+9392-1,Quad Bike,2012,5,198
+9393-1,Tractor,2012,5,353
+9394-1,Jet Plane,2012,5,498
+9395-1,Pick-Up Tow Truck,2012,5,953
+9396-1,Helicopter,2012,5,1055
+9397-1,Logging Truck,2012,1,1311
+9398-1,4 x 4 Crawler,2012,11,1326
+940-1,"Flags, Signs and Trees",1973,473,18
+941-1,Black and Clear Bricks,1974,473,48
+9440-1,Venomari Shrine,2012,435,86
+9441-1,Kai’s Blade Cycle,2012,435,187
+9442-1,Jay's Storm Fighter,2012,435,242
+9443-1,Rattlecopter,2012,435,324
+9444-1,Cole’s Tread Assault,2012,435,285
+9445-1,Fangpyre Truck Ambush,2012,435,451
+9446-1,Destiny's Bounty,2012,435,683
+9447-1,Lasha's Bite Cycle,2012,435,248
+9448-1,Samurai Mech,2012,435,451
+9449-1,Ultra Sonic Raider,2012,435,620
+9450-1,Epic Dragon Battle,2012,435,907
+9452-1,Giant Lego Topic Set,1991,534,2195
+9453-1,Universal School Set,1997,534,697
+9454-1,Function Set,1992,534,350
+9455-1,Fangpyre Mech,2012,435,246
+9456-1,Spinner Battle Arena,2012,435,410
+9457-1,Crane Wrecking Ball,2012,435,414
+9461-1,The Swamp Creature,2012,558,70
+9462-1,The Mummy,2012,558,91
+9463-1,The Werewolf,2012,558,243
+9464-1,The Vampire Hearse,2012,558,313
+9465-1,The Zombies,2012,558,447
+9466-1,The Crazy Scientist & His Monster,2012,558,429
+9467-1,The Ghost Train,2012,558,741
+9468-1,The Vampyre Castle,2012,558,942
+9469-1,Gandalf Arrives,2012,567,83
+9470-1,Shelob Attacks,2012,569,227
+9471-1,Uruk-hai Army,2012,568,257
+9472-1,Attack on Weathertop,2012,567,429
+9473-1,The Mines of Moria,2012,567,780
+9474-1,The Battle of Helm’s Deep,2012,568,1365
+9476-1,The Orc Forge,2012,568,362
+9478-1,Fransesco Bernoulli,2012,269,49
+9479-1,Ivan Mater,2012,269,52
+9480-1,Finn McMissile,2012,269,52
+948-1,Go-Kart,1978,4,211
+9481-1,Jeff Gorvette,2012,269,54
+9483-1,Agent Mater’s Escape,2012,269,144
+9484-1,Red’s Water Rescue,2012,269,198
+9485-1,Ultimate Race Set,2012,269,279
+9486-1,Oil Rig Escape,2012,269,421
+9488-1,Elite Clone Trooper & Commando Droid Battle Pack,2012,165,105
+9489-1,Endor Rebel Trooper & Imperial Trooper Battle Pack,2012,169,77
+9490-1,Droid Escape,2012,169,136
+9491-1,Geonosian Cannon,2012,165,133
+9492-1,TIE Fighter,2012,169,413
+9493-1,X-wing Starfighter,2012,169,559
+9494-1,Anakin's Jedi Interceptor,2012,168,299
+9495-1,Gold Leader's Y-wing Starfighter,2012,169,457
+9496-1,Desert Skiff,2012,169,220
+9497-1,Republic Striker Starfighter,2012,158,378
+9498-1,Saesee Tiin's Jedi Starfighter,2012,165,243
+9499-1,Gungan Sub,2012,166,464
+9500-1,Sith Fury-class Interceptor,2012,170,746
+950-1,Fork Lift,1979,4,216
+9509-1,"Advent Calendar 2012, Star Wars",2012,209,25
+9509-10,"Advent Calendar 2012, Star Wars (Day 9) - Imperial Officer",2012,225,4
+9509-11,"Advent Calendar 2012, Star Wars (Day 10) - AT-AT Walker",2012,225,13
+9509-12,"Advent Calendar 2012, Star Wars (Day 11) - Hoth Blaster Station",2012,225,6
+9509-13,"Advent Calendar 2012, Star Wars (Day 12) - Hoth Rebel Trooper",2012,225,6
+9509-14,"Advent Calendar 2012, Star Wars (Day 13) - Gonk Droid (GNK Power Droid)",2012,225,14
+9509-15,"Advent Calendar 2012, Star Wars (Day 14) - General Grievous Weapon Depot",2012,225,10
+9509-16,"Advent Calendar 2012, Star Wars (Day 15) - Snowtrooper",2012,225,4
+9509-17,"Advent Calendar 2012, Star Wars (Day 16) - Naboo Royal Shuttle",2012,225,18
+9509-18,"Advent Calendar 2012, Star Wars (Day 17) - Flash Speeder",2012,225,14
+9509-19,"Advent Calendar 2012, Star Wars (Day 18) - Rebel Scout Trooper",2012,225,5
+9509-2,"Advent Calendar 2012, Star Wars (Day 1) - Gungan Sub",2012,225,13
+9509-20,"Advent Calendar 2012, Star Wars (Day 19) - Trade Federation AAT",2012,225,15
+9509-21,"Advent Calendar 2012, Star Wars (Day 20) - General Grievous Starfighter",2012,225,14
+9509-22,"Advent Calendar 2012, Star Wars (Day 21) - Super Battle Droid",2012,225,4
+9509-23,"Advent Calendar 2012, Star Wars (Day 22) - Sith Infiltrator",2012,225,15
+9509-24,"Advent Calendar 2012, Star Wars (Day 23) - Snowman R2-D2",2012,225,8
+9509-25,"Advent Calendar 2012, Star Wars (Day 24) - Santa Darth Maul",2012,225,7
+9509-3,"Advent Calendar 2012, Star Wars (Day 2) - Gungan Soldier",2012,225,3
+9509-4,"Advent Calendar 2012, Star Wars (Day 3) - Gungan Battle Depot",2012,225,8
+9509-5,"Advent Calendar 2012, Star Wars (Day 4) - Star Destroyer",2012,225,14
+9509-6,"Advent Calendar 2012, Star Wars (Day 5) - Trade Federation MTT",2012,225,9
+9509-7,"Advent Calendar 2012, Star Wars (Day 6) - Battle Droid Security",2012,225,5
+9509-8,"Advent Calendar 2012, Star Wars (Day 7) - Naboo Starfighter",2012,225,16
+9509-9,"Advent Calendar 2012, Star Wars (Day 8) - Vulture Droid",2012,225,9
+951-1,Bulldozer,1979,4,372
+951178-1,Basic Bricks,1987,534,18
+951-2,Lego TC logo Starter Pack,1988,529,16
+9515-1,Malevolence,2012,165,1098
+9516-1,Jabba’s Palace,2012,169,716
+952-1,Tractor,1978,4,322
+9525-1,Pre Vizsla's Mandalorian Fighter,2012,165,399
+9526-1,Palpatine’s Arrest,2012,168,646
+9530-1,Letters Set,2008,507,134
+9531-1,Numbers and Mosaics Set,2008,507,352
+954-1,Sky Copter,1978,4,364
+9544-1,Math Machines Set,2006,507,554
+955-1,Mobile Crane,1979,4,512
+9551-1,Kendo Cole,2012,435,28
+9552-1,Lloyd Garmadon,2012,435,26
+9553-1,Jay ZX,2012,435,29
+9554-1,Zane ZX,2012,435,38
+9555-1,Mezmo,2012,435,32
+9556-1,Bytar,2012,435,25
+9557-1,Lizaru,2012,435,25
+9558-1,Training Set,2012,435,218
+956-1,Auto Chassis,1978,4,603
+9561-1,Kai ZX,2012,435,21
+9562-1,Lasha,2012,435,21
+9563-1,Kendo Zane,2012,435,35
+9564-1,Snappa,2012,435,20
+9566-1,Samurai X,2012,435,23
+9567-1,Fang-Suei,2012,435,21
+9569-1,Spitta,2012,435,20
+9570-1,NRG Jay,2012,435,20
+9571-1,Fangdam,2012,435,19
+9572-1,NRG Cole,2012,435,15
+9573-1,Slithraa,2012,435,15
+9574-1,Lloyd ZX,2012,435,18
+9579-1,Starter Set,2012,435,53
+9580-1,WeDo Robotics Construction Set,2009,507,157
+9581-1,WeDo Robotics USB Hub,2009,521,1
+9583-1,WeDo Robotics Motion Sensor,2009,521,1
+9584-1,WeDo Robotics Tilt Sensor,2009,521,1
+9585-1,LEGO® Education WeDo Resource Set,2009,521,326
+9590-1,NRG Zane,2012,435,24
+9591-1,Weapon Pack,2012,435,73
+9594-1,Green City,2011,518,1356
+960-1,Power Pack,1978,4,22
+9604-1,LEGO TECHNIC and Pneumatic elements,1992,1,128
+9605-1,4.5V Technic Resource Set,1990,532,1534
+9607-1,Technology Activity Set,1994,529,318
+9608-1,Teacher's Guide for Technology Group Activity Set,1994,529,16
+9609-1,Technology Resource Set,1995,1,1730
+9610-1,Gear Set,1993,1,76
+961-1,Expert Builder/Gear Parts,1978,4,78
+9612-1,Lever Set,1993,1,63
+9614-1,Pulley Set,1995,1,77
+9615-1,Motor Add-On for Simple Mechanisms,1997,1,3
+9616-1,Wheels and Axles Mini Set,1995,529,82
+9617-1,Pneumatics I: Introduction to Air Power Set,1997,1,97
+9618-1,Structures Set,1997,529,439
+9628-1,Mechanisms Power Add-On Set,2008,532,3
+9630-1,Simple Mechanisms Set,1997,1,218
+9631-1,Simple and Motorized Machines Activity Pack,1997,529,24
+9632-1,Science & Technology Base Set,2006,529,352
+9633-1,Advanced Air Power Set,1999,1,217
+9636-1,Solar Add-on,2000,1,3
+9637-1,Speed Computer Add-on,2000,1,2
+9640-1,Gears Classroom Pack,1994,529,0
+964-1,"10 building plates 2 x 8, 4 x 8, 6 x 8",1969,371,10
+9641-1,Mechanisms Pneumatics Add-On Set,2008,528,31
+9642-1,Levers Classroom Pack,1994,529,0
+9644-1,Pulley Classroom Pack,1994,529,0
+9645-1,Motorized Simple Machines Set,1997,529,2
+9646-1,Wheel and Axle Classroom Pack,1994,529,0
+9648-1,Education Resource Set [NXT Supplemental Set],2006,1,674
+9649-1,Technology Resource Set,2003,1,1154
+9650-1,Scenery Resource Set,2002,518,717
+9656-1,Early Simple Machines Set,2008,504,99
+9657-1,FIRST LEGO League Challenge 2012 - Senior Solutions,2012,398,1612
+9660-2,Motorized Mechanisms Set,2008,529,2
+9664-1,FIRST LEGO League Challenge 2013 - Nature's Fury,2013,398,1995
+9665-1,Mechanical Engineering Set,2001,1,315
+9667-1,Solar Panel,2010,532,1
+9668-1,Energy Display,2010,532,1
+9669-1,Electric Battery Box 9V 150 mAh (Rechargeable),2010,532,1
+9670-1,E-Motor with Gear Reduction Ratio 9.5 : 1,2010,532,1
+9674-1,Naboo Starfighter & Naboo,2012,166,56
+9675-1,Sebulba's Podracer & Tatooine,2012,166,80
+9676-1,TIE Interceptor & Death Star,2012,169,65
+9677-1,X-wing Starfighter & Yavin 4,2012,177,77
+9678-1,Twin-pod Cloud Car & Bespin,2012,177,78
+9679-1,AT-ST & Endor,2012,177,65
+9681-1,eLAB Renewable Energy Set,1999,531,713
+9684-1,Renewable Energy Set II,2003,1,732
+9685-1,Green Car Set,2003,1,47
+9686-1,Simple and Motorized Mechanisms Base Set,2009,507,400
+9688-1,Renewable Energy Add-On Set,2010,532,12
+9689-1,Simple Machines Set,2009,521,194
+9693-1,"Rechargeable Battery for Lego Mindstorms NXT, DC plug",2010,259,1
+9694-1,NXT Color Sensor,2010,259,1
+9695-1,Mindstorms Education Resource Set,2010,259,816
+9696-1,FIRST LEGO League Challenge 2010 - Body Forward v46,2010,398,1515
+9697-1,FIRST LEGO League Challenge 2011 - Food Factor,2011,398,2115
+9698-1,FIRST LEGO League Challenge 2009 - Smart Move,2009,398,1310
+9699-1,FIRST LEGO League Challenge 2008 - Climate Connections,2008,398,834
+970004-1,Yellow Band (Pack of 25),2002,524,25
+970005-1,9-Volt 1 x 2 Lamp Brick (Pack of 2),2002,524,2
+970008-1,1 x 2 Red Bricks (Pack of 50),2002,524,50
+970009-1,1 x 2 Blue Plates (Pack of 100),2002,524,100
+9700-1,Technic Control Center,1987,529,472
+970010-1,Hubs Gray (Pack of 50),2002,525,50
+970017-1,14-Tooth Beveled Gears (Pack of 100),2002,525,100
+970018-1,Gray Pulley Wheel (Pack of 50),2008,525,50
+970021-1,Red Rover Tires and Hubs (4 tires 4 hubs),2002,524,8
+970028-1,Shock Absorber (Pack of 10),2002,525,10
+970030-1,Lift Arm (Pack of 50),2002,525,50
+970036-1,2 x 2 Angle Plate (Pack of 25),2002,524,25
+970039-1,Lever Arm (Pack of 50),2002,525,50
+970040-1,Caterpillar Hub and Tread (Set of 2 treads 4 Hubs),2002,524,6
+970041-1,128 MM Connecting Leads (Pack of 3),2002,525,3
+970042-1,Piston Rod (Pack of 75),2002,525,75
+970043-1,Small Half Beam (Pack of 100),2002,525,100
+970047-1,Large Tire and Hub (2 tires 2 hubs),2002,524,4
+970098-1,Special Elements for Control Lab Set,2001,1,125
+970-1,Lighting Bricks,1978,473,17
+9701-1,Control Lab Building Set,1995,1,565
+970110-1,Pneumatic T-Pieces (Pack of 25),2002,525,25
+970111-1,Large Lawn Tire & Hub (4 tires 4 hubs),2002,524,8
+970112-1,Small Lawn Tire & Hub (4 tires 4 hubs),2002,524,8
+970113-1,Tire Pack (Set of 8),2002,524,8
+970115-1,1280 mm Connecting Leads (Pack of 3),2002,525,3
+970116-1,12 Tooth Double Bevel Gears (Pack of 25),2002,525,25
+970117-1,Pneumatic Hand Pump (Pack of 2),2002,525,2
+970118-1,Pneumatic Cylinder (Set of 2 small),2002,525,2
+970119-1,Pneumatic Tubing Service Pack,2002,525,2
+970120-1,Black Bands (Pack of 50),2002,524,25
+970121-1,Red Bands (Pack of 25),2002,524,25
+970122-1,Small White Bands (Pack of 24),2002,524,24
+970-2,47 1/3 elements (plates),1969,371,141
+9702-1,Control System Building Set,1993,1,222
+970600-1,1 x 2 Plate with Slides (Pack of 100),2002,524,100
+970601-1,Small Pulleys (Pack of 100),2002,525,100
+970602-1,Bushings (Pack of 100),2002,525,100
+970603-1,Connector Pegs (Pack of 100),2002,525,100
+970604-1,Friction Connector Pegs (Pack of 100),2002,525,101
+970605-1,Long Black Connector Pegs (Pack of 100),2002,525,100
+970606-1,Connector Pegs with Axles (Pack of 100),2002,525,100
+970607-1,Connector Pegs with Knobs (Pack of 100),2002,525,100
+970608-1,Connector Pegs (Pack of 100),2002,525,100
+970609-1,2-Stud Axles with Grooves (Pack of 100),2002,525,100
+970610-1,3-Stud Axles (Pack of 100),2002,525,100
+970611-1,Cross Axles with Knobs (Pack of 100),2002,525,100
+970612-1,4-Stud Axles (Pack of 50),2002,525,50
+970613-1,5-Stud Axles (Pack of 50),2002,525,50
+970614-1,6-Stud Axles (Pack of 50),2002,525,50
+970615-1,8-Stud Axles (Pack of 50),2002,525,50
+970616-1,10-Stud Axles (Pack of 50),2002,525,50
+970617-1,12-Stud Axles (Pack of 50),2002,525,50
+970618-1,Axle Extenders (Pack of 50) {Axle Joiners},2002,525,50
+970619-1,Catches {Technic Pole Reverser Handles},2002,525,50
+970620-1,8 Tooth Gears (Pack of 100) 'Spur' Gears,2002,525,100
+970621-1,12 Tooth Bevel Gears (Pack of 50),2002,525,50
+970622-1,16 Tooth Gears (Pack of 50),2002,525,50
+970623-1,20 Tooth Double Bevel Gears (Pack of 25),2002,525,25
+970624-1,24-Tooth Crown Gears,2003,525,50
+970625-1,24 Tooth Gears (Pack of 50),2002,525,50
+970626-1,Technic Clutches,2003,525,10
+970627-1,40 Tooth Gears (Pack of 25),2002,525,25
+970628-1,Cross Blocks (Pack of 50),2002,525,50
+970629-1,Catches with Cross Holes (Pack of 50),2002,525,50
+970630-1,Pulleys (For micromotor pack of 10),2002,525,10
+970631-1,Bricks with Cross (axle) Holes (Pack of 50),2002,525,50
+970632-1,1 x 2 Beams,2002,525,50
+970633-1,1 x 4 Beams,2002,525,30
+970634-1,1 x 6 Beams,2002,525,30
+970635-1,1 x 8 Beams,2002,525,20
+970636-1,1 x 10 Beams,2002,525,20
+970637-1,1 x 12 Beams,2002,525,10
+970638-1,1 x 16 Beams,2002,525,10
+970639-1,2 x 2 Skid Plates (Pack of 50),2002,524,50
+970640-1,Tacho Wheels (Pack of 20),2002,525,20
+970641-1,Gear Casings (Pack of 10 contained 20 prior to 2005 Dacta catalog),2002,525,10
+970643-1,Bobbins {Technic Reels},2002,525,25
+970645-1,Chain Links,2003,525,100
+970646-1,Gear Blocks (Pack of 5),2002,525,5
+970653-1,Pole Reversing Switch,2003,524,1
+970654-1,9-Volt Connecting Leads (One each of 128mm 256 mm 1280 mm),2002,525,3
+970658-1,Air Storage Tanks,2002,525,2
+970659-1,Pneumatic Parts,2002,525,5
+970660-1,O-Ring and Pulley Wheels,2002,525,50
+970661-1,Skeleton and Ghost for Amusement Park Set,2002,524,70
+970662-1,Steering Wheels (Pack of 25),2002,525,25
+970663-1,Pneumatic Switch (Pack of 5),2002,525,5
+970665-1,Universal Joints (Pack of 10),2002,525,10
+970669-1,Special Elements for Simple Machines Set,2002,524,49
+970670-1,Special Elements for Team Challenge Set,2002,524,292
+970671-1,Special Elements for Cities and Transportation Set,2002,524,119
+970672-1,Special Elements for Amusement Park Set,2002,524,78
+970673-1,Special Elements for ROBO Technology Set,2002,524,71
+970674-1,Car Project Set,2002,524,79
+970675-1,House Project Set,2002,524,80
+970676-1,Bug Project Set,2002,524,83
+970677-1,Gadget Project Set,2002,524,48
+970678-1,Special Elements for eLAB Renewable Energy Set,2002,524,315
+970679-1,Special Elements For Mechanical Engineering Set,2004,524,130
+970680-1,Special Elements for Early Simple Machines Set,2002,524,19
+970683-1,Black Plates - Large Package,2002,524,165
+970684-1,Wheels (Tires hubs axle plates and bricks),2002,524,184
+970686-1,Roof Tiles,2002,524,180
+970687-1,Team Challenge Upgrade Kit,2002,524,95
+9707-1,Intelligent House Building Set,1996,1,164
+9709-1,RCX Programmable Brick,1998,1,1
+971-1,52 flat tile bricks,1969,371,156
+9713-1,Infrared Transmission Tower,1998,520,2
+9719-1,"Robotics Invention System, Version 1.0",1998,260,736
+9723-1,Cities and Transportation,2000,1,394
+9725-1,ROBOLAB Amusement Park Set,1999,520,248
+9730-1,RoboSports,1998,260,91
+9731-1,Vision Command [RCX Digital Colour Camera],2000,260,139
+9732-1,Extreme Creatures,1998,260,148
+9735-1,Robotics Discovery Set,1999,260,390
+9736-1,Exploration Mars,1999,260,158
+9738-1,Remote Control,1998,260,1
+9742-1,Photosynthesis Student Set,2008,517,74
+9743-1,Chromosomes - Student Set,2003,517,136
+9747-1,"Robotics Invention System, Version 1.5",1999,260,729
+9748-1,Droid Developer Kit,1999,261,658
+9749-1,NXT Temperature Sensor,2009,259,1
+9750-1,LEGO Interface,1986,532,4
+9751-1,Control Lab Serial Interface & Adapter,1995,530,2
+9752-1,Technic Control Center II,1996,532,14
+9753-1,TECHNIC Control Center [Dacta Kit],1993,1,14
+9754-1,Dark Side Developers Kit,2000,261,578
+9755-1,Temperature Sensor,1999,260,1
+9756-1,Rotation Sensor,1999,260,1
+9757-1,Touch Sensor with Cable,1999,260,2
+9758-1,Light Sensor 9V,1999,260,1
+9761-1,FIRST LEGO League Challenge 2004 - No Limits,2004,398,1437
+9762-1,FIRST LEGO League Challenge 2005 - Ocean Odyssey,2005,398,1471
+9763-1,FIRST LEGO League Challenge 2006 - Nano Quest,2006,398,1505
+9764-1,FIRST LEGO League Challenge 2007 - Power Puzzle,2007,398,1575
+9767-1,Interface Card/Cable for Apple IIe and IIGS,1989,529,1
+9771-1,Interface Card and Cable for TC Logo - IBM compatible,1989,532,3
+9776-1,Pneumatic Circuit,1999,1,4
+9780-1,ROBOLAB Starter Building Set,1998,520,1712
+9780545703307-1,Klutz: LEGO Chain Reactions,2015,497,39
+9781409350545-1,LEGO Legends of Chima: Character Encyclopedia,2014,497,0
+9783-1,Infrared Transmitter with USB Cable,2001,520,2
+9784-1,FIRST LEGO League Challenge 2001 - Arctic Impact,2001,398,1388
+9785-1,Robo Technology Set [Serial Cable],2003,1,221
+9786-1,Robo Technology Set [USB Cable],2003,1,221
+9789-2,FIRST LEGO League Challenge 2002 - City Sights,2002,398,1017
+9790-1,ROBOLAB Team Challenge Set (Serial),1999,520,727
+9793-1,ROBOLAB Team Challenge Set Version 2.5 [Serial Transmitter],2002,520,833
+9794-1,ROBOLAB Team Challenge Set Version 2.5 [USB],2003,1,832
+9795-1,ROBOLAB Intelligent House Building Set,2001,520,164
+9797-1,LEGO MINDSTORMS Education NXT Base Set,2006,519,434
+979760-1,Mars Exploration,2003,518,810
+9798-1,NXT Rechargeable Battery,2006,259,1
+9799-1,Sensor Adaptor for Mindstorms NXT to Vernier,2008,259,0
+980-1,"23 sloping bricks, including roof peak bricks, Red",1969,371,23
+980-2,"23 sloping bricks, including roof peak bricks, Blue",1969,371,23
+981-1,"34 sloping profile bricks, including profile peak bricks, Red",1969,371,39
+981-2,"34 sloping profile bricks, including profile peak bricks, Blue",1969,371,39
+9820-1,Geared Turntable,1989,1,64
+9822-1,Beams (Red),1994,1,68
+9823-1,Beams (Blue),1994,1,68
+9824-1,Beams (Yellow),1994,1,68
+9825-1,Pneumatic Elements,1994,1,3
+9826-1,Pneumatic Tubing,1994,1,1
+9831-1,Battery Box with Switch - 9v,1995,1,1
+9833-1,AC Adapter 230V - 10V Transformer,1996,259,1
+9833-2,"AC Adapter, 120V - 10V Transformer",1996,259,1
+9833-3,AC Adapter 230V - 10V Transformer Type G Plug (British),2006,259,1
+9840-1,X-Large Blue Storage Bin (16.5in x 12in x 10in),2006,528,2
+9841-1,NXT Intelligent Brick,2006,259,1
+9842-1,NXT Servo Motor,2006,259,1
+9843-1,NXT Touch Sensor,2006,259,1
+9844-1,NXT Light Sensor,2006,259,1
+9845-1,NXT Sound Sensor,2006,259,1
+9846-1,NXT Ultrasonic Sensor,2006,259,1
+9847-1,Activity Cards for Non-Motorized Simple Machines (979630),1997,532,19
+9847-2,NXT Bluetooth Dongle,2006,259,0
+9848-1,Lamps and Fittings,1997,1,9
+9849-1,9V Micromotor,1995,525,4
+985-1,Lighting Device Parts Pack,1969,371,4
+9851-1,Assortment of Connectors,1992,1,453
+9852-1,Chain Link Pack,1992,1,229
+9853-1,Assortment of Gears,1992,1,122
+9854-1,Worm Gear Pack,1992,1,22
+9855-1,Assortment of Tires/Wheels,1992,1,56
+9856-1,Assortment of Cross Axles,1992,1,124
+9857-1,Assortment of Plate Pieces,1992,1,166
+9858-1,Assortment of Beams,1992,1,126
+9859-1,TECHNIC Motor 4.5 Volt,1992,1,1
+9860-1,Battery Box (4.5 Volt),1992,1,1
+986-1,One Light Bulb,1969,371,1
+9861-1,Connecting Leads,1992,1,8
+9862-1,Random Special Pieces,1992,1,96
+9863-1,Weighted Brick Pack,1992,1,4
+9864-1,Green Building Plates,1992,1,3
+9865-1,Optosensor,1992,1,2
+9866-1,Light and Transparent Bricks,1992,1,12
+9867-1,Touch Sensor,1992,1,1
+9868-1,Plugholders and Leads,1992,1,42
+9869-1,Building Plates (24 x 24),1992,524,3
+9870-1,Pneumatic Rubber Bands and Pneumatic Tubing,1992,1,144
+987-1,Number Bricks,1969,371,52
+9871-1,Yellow Beams,1992,1,76
+9872-1,"Pneumatic Pump, Cylinder, Valves, Tubing",1992,1,10
+9874-1,Building Cards - 1090,1992,532,5
+9875-1,Building Cards - 1092,1992,532,4
+9876-1,Large Turntables,1992,1,2
+988-1,Alphabet Bricks,1969,371,45
+9883-1,Motor - 9v,1995,1,1
+9885-1,Sound element - 9v,1995,1,1
+9888-1,Touch Sensor,2002,1,1
+9889-1,Temperature Sensor,1995,1,1
+9890-1,Light Sensor,1995,1,1
+989-1,10 Traffic Signs,1969,371,10
+9891-1,Angle Sensor,1995,1,1
+9892-1,Brick Separators,1995,1,2
+98959-1,Motor,1977,4,40
+9897-1,9-Volt Connecting Leads,1998,1,3
+9898-1,9-Volt Long Connecting Leads,1996,1,2
+9899-1,Hubs and Tires,1999,1,20
+9900-1,Small Gear Wheels,1999,1,21
+990-1,Trees and Signs (1971 version with granulated trees and 4 bricks),1971,473,12
+990-2,Trees and Signs (1969 version with old style trees and 3 bricks),1969,473,11
+9911-1,9-Volt Touch Sensor and Leads,2004,260,3
+991118-1,3M Connecting Lead (Set of 2),2002,524,2
+9912-1,LEGO Solar Cell,1999,1,1
+991268-1,Special Elements Pack,2009,528,674
+991319-1,Medium Gray Storage Bin,2008,528,1
+991327-1,12-Tooth Black Double Conical Wheels (Pack of 25),2007,525,25
+991328-1,36-Tooth Double Conical Wheels (Pack of 25),2007,525,25
+991329-1,7-Stud Axles (Pack of 50),2007,525,50
+991330-1,New Turntables (Pack of 2),2007,525,2
+991331-2,Small Wide Tire & Hub (Pack of 8 each),2007,524,16
+991332-1,Technic Triangle (Pack of 25),2007,525,25
+991333-1,Cam Wheel (Pack of 25),2007,525,25
+991335-1,Swivel Magnet Pack (Pack of 10 each),2007,524,20
+991336-1,2-Stud Axles with Grooves (Pack of 100),2007,525,100
+991337-1,Connector Peg with Axle (Pack of 100),2007,525,100
+991369-1,Tracks and Sprockets Pack,2008,525,110
+991402-1,Studless Technic Beams,2008,525,35
+991403-1,Technic Angle Beams,2008,525,30
+991404-1,Technic Beams with Snaps,2008,525,30
+991405-1,Technic Crossblocks,2008,525,30
+991426-1,Black Plates - Large Package,2009,525,165
+991451-1,Tracks,2009,525,120
+991452-1,Sprockets,2009,525,22
+991464-1,LEGO Smart Kit,2009,507,20
+9916-1,LEGO Electrical Capacitor,1999,1,1
+991751-1,MINDSTORMS Energy Parts Pack,2012,525,46
+9918-1,Gear Block Yellow,1999,525,1
+9927-1,Beams (red),1999,1,44
+9928-1,Beams (blue),1999,1,44
+9929-1,Plates Red,1998,524,72
+9930-1,Plates Blue,1998,524,72
+9931-1,Plates Yellow,1998,524,72
+9932-1,Plates Black,1998,524,72
+9933-1,Basic Bricks (red),1999,524,62
+9934-1,Basic Bricks (yellow),1999,524,62
+9935-1,Basic Bricks (black),1999,524,62
+9936-1,Weight Elements,1998,524,2
+9937-1,Small Chain Links,1998,1,108
+9938-1,Conveyor Belt Links,1999,1,36
+9939-1,Assorted Pulleys,1999,1,14
+9940-1,Rubber Bands and String,1999,1,36
+994-1,LEGO fences with garden gates,1969,371,19
+9941-1,Cams & Linkages,1998,1,18
+9942-1,Connectors & Bushings,1998,1,160
+9943-1,Axles and Extenders,1998,1,54
+9945-1,Differentials,1998,525,14
+995-1,Lighting Bricks with Color Filters,1969,371,23
+9954-1,Special Elements for Mini Sets,2001,524,56
+9959-1,Special Elements for Intelligent House Building Set,2001,524,41
+9960-1,"Crane Hook, Cam, Propellor",1994,1,13
+9961-1,White Belts,1994,1,16
+9962-1,Flat Tiles,1994,524,12
+9963-1,Axle Extenders and Bushings,1995,1,88
+9964-1,Connector Pegs,1994,1,64
+9965-1,Gears 8- and 10-Tooth,1994,1,18
+9966-1,Large Gear Wheels,1999,1,16
+9967-1,Differential and Bevel Gears,1994,1,18
+9968-1,Pulley Wheels,1994,1,22
+9969-1,Tires and Spoked Hubs,1994,1,24
+9970-1,Axles - Short,1994,1,36
+9971-1,Axles - Long,1994,1,24
+9972-1,Plates (Red),1994,1,88
+9973-1,Plates (Blue),1994,1,88
+9974-1,Plates (Yellow),1994,1,88
+9975-1,Simple Machines,1987,529,122
+9999-1,Upgrade Kit for 9654,2008,507,7
+Alpharetta-1,"LEGO Store Grand Opening Exclusive Set, North Point Mall, Alpharetta, GA",2012,408,15
+AMFlag-1,American Flag with Sticker For Stars (Legoland California),2002,427,62
+Annapolis-1,"LEGO Store Grand Opening Exclusive Set, Westfield Annapolis, Annapolis, MD",2009,408,45
+auditt-1,Audi TT Roadster (Legoland Deutschland),2002,425,57
+Austin-1,"LEGO Store Grand Opening Exclusive Set, Barton Creek Square, Austin, TX",2010,408,82
+B001-1,"1 x 4 x 5 Black Window Frames, Transparent Blue Panes",2001,254,20
+B002-1,1 x 4 x 3 Train Window Clear,2000,254,25
+B003-1,"Red Frame, Black Door, Green Pane",2003,254,10
+B004-1,2 x 4 Ridge Roof Tile Low Sloped Black,2003,254,25
+B005-1,2 x 4 Ridge Roof Tile Low Sloped Red,2003,254,25
+B100-1,Crazy Action Contraptions (Klutz),1998,529,64
+B110-1,Crazy Action Contraptions (Klutz) Vol. 2,2008,529,112
+b55dk-01,Lego Mursten - System i Leg Byggebog,1955,497,0
+b56de-01,Lego Bausteine - System im Spiel,1956,497,0
+b63de-01,LEGO Hobby und Modellbau,1963,497,0
+b66de-01,LEGO Motor Eisenbahn,1966,499,0
+BAG6-1,Gray Brick Separator with Black Frame Pieces,2006,254,56
+BAT8369-1,Battery Pack,2004,119,6
+BauMit-1,BAU MIT!,2009,301,1
+Beachwood-1,"LEGO Store Grand Opening Exclusive Set, Beachwood Place, Beachwood, OH",2011,408,3
+Berlin-1,"LEGO Store Grand Opening Exclusive Set, Berlin, Germany",2009,408,69
+bilmasks-1,Special Masks! - 2 (Dark) Copper Color Kanohi (Legoland Billund),2001,426,2
+BIO601601-1,Scorpion,2016,324,19
+BIO601602-1,Ekimu Falcon,2016,324,29
+Birmingham-1,"LEGO Store Grand Opening Exclusive Set, Riverchase Galleria, Birmingham, AL",2009,408,79
+Braintree-1,"LEGO Store Grand Opening Exclusive Set, South Shore Plaza, Braintree, MA",2008,408,58
+C001-1,LEGO Star Wars Clock,2008,501,0
+C8500-1,Robotops (8500 + 8501 + 8502 + 8503),1999,20,96
+C8504-1,Ultrarex (8504 + 8505 + 8506 + 8507),1999,20,88
+C8509-1,Swamp + Lava (8509 + 8510),2000,16,63
+C8509-2,Dust + Lava + Swamp [8509 + 8510 + 8513],2000,16,96
+C8509-3,Swamp + Frost + Onyx + Dust [8509 + 8511 + 8512 + 8513],2000,16,146
+C8509-4,Swamp + Frost + Onyx + Dust + Power [8509 + 8511 + 8512 + 8513 + 8514],2000,16,153
+C8509-5,Swamp + Lava + Frost + Onyx + Dust + Power [8509 + 8510 + 8511 + 8512 + 8513 + 8514],2000,16,211
+C8511-1,Frost + Dust (8511 + 8513),2000,16,73
+C8511-2,Frost + Onyx + Power [8511 + 8512 + 8514],2000,16,90
+C8512-1,Onyx + Power (8512 + 8514),2000,16,47
+C8521-1,Dynamo (8521 + 8522 + 8523),2000,20,142
+Calgary-1,"LEGO Store Grand Opening Exclusive Set, Chinook Centre, Calgary, AB, Canada",2010,408,130
+casbon-1,Castle Bonus Pack,1998,186,3
+CCegg-1,Chupa Chups Egg with Surprise Lego Set,2003,301,1
+celeb2015-1,Tatooine Mini-build - Star Wars Celebration Exclusive,2015,158,178
+CELEB2017-1,Detention Block Rescue (Star Wars Celebration 2017 Exclusive Set),2017,169,220
+CELEBV-1,Fan Celebration V - CubeDude - The Bounty Hunter Edition,2010,170,497
+celebvi-1,Boba Fett’s Slave I - Mini - Star Wars Celebration VI Exclusive,2012,169,81
+Chandler-1,"LEGO Store Grand Opening Exclusive Set, Chandler Fashion Center, Chandler, AZ",2008,408,67
+Cincinnati-1,"LEGO Store Grand Opening Exclusive Set, Kenwood Towne Centre, Cincinnati, OH",2009,408,93
+CITY951701-1,Policeman and Crook Foil Pack,2017,61,16
+cnminifigs-1,Ninja Minifig Packs 3-Pack,2000,434,3
+cokejpiii-1,Japanese Coca-Cola Studios Polybag Collection sets 4056 thru 4079,2001,273,24
+cokesoccer-1,Japanese Coca-Cola Soccer collection sets 4443 thru 4472,2002,462,30
+Columbus-1,"LEGO Store Grand Opening Exclusive Set, Easton Town Center, Columbus, OH",2009,408,72
+comcon001-1,Clone Wars Pack - San Diego Comic-Con 2008 Exclusive,2008,165,12
+comcon002-1,Indiana Jones Brickmaster Pack - San Diego Comic-Con 2008 Exclusive,2008,265,114
+comcon003-1,Batman and Joker Minifig Pack - San Diego Comic-Con 2008 Exclusive,2008,484,9
+comcon004-1,Collectible Display Set 1 - San Diego Comic-Con 2009 Exclusive,2009,165,5
+comcon005-1,Collectible Display Set 2 - San Diego Comic-Con 2009 Exclusive,2009,169,12
+comcon006-1,Collectible Display Set 4 - San Diego Comic-Con 2009 Exclusive,2009,165,30
+comcon007-1,Collectible Display Set 5 - San Diego Comic-Con 2009 Exclusive,2009,169,17
+comcon008-1,Collectible Display Set 3 - San Diego Comic-Con 2009 Exclusive,2009,169,16
+comcon009-1,Collectible Display Set 6 - San Diego Comic-Con 2009 Exclusive,2009,165,5
+comcon010-1,Mini Republic Dropship Mini AT-TE Brickmaster Pack - San Diego Comic-Con 2009 Exclusive,2009,161,202
+comcon011-1,LEGO Star Wars Holo-Brick Archives San Diego Comic-Con 2009 Exclusive,2009,170,3
+comcon013-1,Super Heroes Unite - Green Lantern - San Diego Comic-Con 2011 Exclusive,2011,486,4
+comcon014-1,Super Heroes Unite - Batman - San Diego Comic-Con 2011 Exclusive,2011,484,1
+comcon015-1,Star Wars Advent Calendar - San Diego Comic-Con 2011 Exclusive,2011,158,1
+comcon016-1,Super Heroes Unite - Green Lantern - New York Comic-Con 2011 Exclusive,2011,486,4
+comcon017-1,Super Heroes Unite - Superman - New York Comic-Con 2011 Exclusive,2011,489,5
+comcon018-1,Super Heroes Unite - Batman - New York Comic-Con 2011 Exclusive,2011,484,1
+comcon019-1,Darth Maul’s Sith Infiltrator - Mini - San Diego Comic-Con 2012 Exclusive,2012,158,91
+comcon020-1,Super Heroes Unite - Shazam Captain Marvel - San Diego Comic-Con 2012 Exclusive,2012,486,1
+comcon021-1,Super Heroes Unite - Phoenix Jean Gray - San Diego Comic-Con 2012 Exclusive,2012,491,5
+comcon022-1,Super Heroes Unite - Bizarro - San Diego Comic-Con 2012 Exclusive,2012,486,1
+comcon023-1,Super Heroes Unite - Venom - San Diego Comic-Con 2012 Exclusive,2012,488,3
+comcon024-1,Luke Skywalker's Landspeeder - Mini - New York Comic-Con 2012 Exclusive,2012,169,110
+comcon025-1,Shadow Leonardo - New York Comic-Con 2012 Exclusive,2012,570,0
+comcon026-1,Kraang - New York Comic-Con 2012 Exclusive,2012,570,0
+comcon027-1,Spiderwoman - San Diego Comic-Con 2013 Exclusive,2013,488,0
+comcon028-1,Spider-Man - San Diego Comic-Con 2013 Exclusive,2013,488,1
+comcon029-1,Black Superman - San Diego Comic-Con 2013 Exclusive,2013,489,3
+comcon030-1,Green Arrow - San Diego Comic-Con 2013 Exclusive,2013,486,1
+comcon031-1,Azog - San Diego Comic-Con 2013 Exclusive,2013,562,6
+comcon032-1,JEK-14 Mini Stealth Starfighter - San Diego Comic-Con 2013 Exclusive,2013,158,123
+comcon033-1,Micro Scale Bag End - San Diego Comic-Con 2013 Exclusive,2013,563,130
+comcon034-1,Rocket Raccoon’s Warbird,2014,483,145
+comcon035-1,The Collector - San Diego Comic-Con 2014 Exclusive,2014,483,8
+comcon037-1,Batman Classic TV Series Batmobile,2014,484,152
+comcon038-1,Bard the Bowman,2014,562,5
+comcon039-1,The Ghost Starship,2014,182,127
+comcon042-1,Tahu Mask - New York Comic-Con 2014 Exclusive,2014,324,1
+comcon046-1,All New Captain America (Sam Wilson) - San Diego Comic-Con 2015 Exclusive,2015,487,5
+Concord-1,"LEGO Store Grand Opening Exclusive Set, Concord Mills, Concord, NC",2009,408,69
+CostaMesa-1,"LEGO Store Grand Opening Exclusive Set, South Coast Plaza, Costa Mesa, CA",2011,408,3
+COWT-1,Cities of Wonders - Taiwan: Chiang Kai-shek Memorial Hall,2017,619,147
+COWT-3,Cities of Wonders - Taiwan: Chikan House,2017,619,148
+D100340-1,LogIT Sensor Adapter,2010,259,0
+Dallas-1,"LEGO Store Grand Opening Exclusive Set, NorthPark Center, Dallas, TX",2009,408,92
+DC1-1,Commemorative Limited Edition Batman Announcement,2006,484,13
+DCBHZ-1,Wonder Woman,2017,610,145
+DCSHDVD1-1,Justice League vs Bizarro League DVD/Blu-Ray,2015,501,5
+DCSHDVD2-1,Justice League: Attack of the Legion of Doom DVD/Blu-ray,2015,501,0
+DesPeres-1,"LEGO Store Grand Opening Exclusive Set, West County Center, Des Peres, MO",2013,408,14
+DKAtlantis-1,Lego Brickmaster Atlantis (Hardcover),2010,497,157
+DKBATMANVD-1,Batman: The Visual Dictionary,2012,501,0
+DKCastle-1,Lego Brickmaster Castle (Hardcover),2009,497,141
+DKCity-1,Lego Brickmaster City (Hardcover),2011,497,146
+DKFriends-1,Friends Brickmaster: Treasure Hunt in Heartlake City,2012,497,103
+DKIDEASBOOK-1,The LEGO Ideas Book,2011,501,0
+DKLEGOBOOK-1,The LEGO Ideas Book - Unlock Your Imagination [ISBN-13 9780756686062],2009,497,1
+DKLEGOBOOK-2,The LEGO Ideas Book - You Can Build Anything [ISBN-13 9781405350679],2011,497,1
+DKNinjago-1,Lego Brickmaster Ninjago (Hardcover),2011,497,154
+DKNINJAGO2-1,Brickmaster: Ninjago 2 - Fight The Power Of The Snakes,2012,435,155
+DKPirates-1,Lego Brickmaster Pirates (Hardcover),2009,497,162
+DKSS-1,Standing Small,2009,501,1
+DKStarWars-1,Lego Brickmaster Star Wars (Hardcover),2010,497,251
+DKSTICKER-1,DK Minifigure Ultimate Sticker Collection,2010,501,0
+DKSWYoda-1,LEGO Star Wars: The Yoda Chronicles,2013,497,0
+Duck75-1,75th Anniversary Duck on Wheels,2007,301,44
+e1a1401-1,MUJI Basic Set,2011,301,64
+e1a1402-1,MUJI Animal / Vehicle Set,2011,301,196
+e1a1403-1,MUJI Moving Set,2011,301,109
+e1a1404-1,MUJI Christmas Set,2011,301,120
+Edmonton-1,"LEGO Store Grand Opening Exclusive Set, Southgate Mall, Edmonton, AB, Canada",2013,408,3
+EL241501-1,Enki the Panther,2015,600,14
+EL241502-1,Flamy the Fox,2015,600,12
+Elizabeth-1,"LEGO Store Grand Opening Exclusive Set, Jersey Gardens, Elizabeth, NJ",2012,408,15
+Elmhurst-1,"LEGO Store Grand Opening Exclusive Set, Queens Center Mall, Elmhurst, NY",2010,408,95
+EMMETSCAR-1,TRU Emmet's car,2014,578,40
+F6316-1,Flags and Posts,2006,254,100
+fdp01-1,LEGO Familiedage Puzzle Promo 2009,2009,301,7
+FR561502-1,Dressing table,2015,494,22
+FR561601-1,Baby Parrot And Nest,2016,494,16
+FR561602-1,Valentine’s day,2016,494,24
+FR561603-1,Cookie The Superstar,2016,494,20
+FR561604-1,Cute Kitchen,2016,494,24
+FR561605-1,Ice Cream Cart,2016,494,24
+FR561606-1,Rabbit and hutch,2016,494,18
+FR561607-1,Happy Beach,2016,494,17
+FR561608-1,Cookie Cart,2016,494,29
+FR561609-1,Olivia’s laboratory,2016,494,19
+FR561610-1,Scary Shop,2016,494,27
+FR561611-1,Gifts wrapping table,2016,494,22
+FR561612-1,Kitten foil pack,2016,494,23
+FR561701-1,Bear in Ice Cave foil pack,2017,494,24
+Frankfurt-1,"LEGO Store Grand Opening Exclusive Set, MyZeil, Frankfurt, Germany",2009,408,157
+Frisco-1,"LEGO Store Grand Opening Exclusive Set, Stonebriar Centre, Frisco, TX",2009,408,60
+FRNDSMAGBEACH-1,LEGO Friends Magazine Issue 'Friends on the beach' Polybag,2014,494,20
+FRNDSMAGJNGLE-1,LEGO Friends Magazine Issue 'Jungle adventures' Polybag,2014,494,28
+fruit1-1,Apple - Hong Kong Lego Show Promotional,2007,33,8
+fruit2-1,Cherry - Hong Kong Lego Show Promotional,2007,33,11
+fruit3-1,Grapes - Hong Kong Lego Show Promotional,2007,33,7
+fruit4-1,Mango - Hong Kong Lego Show Promotional,2007,33,6
+fruit5-1,Melon - Hong Kong Lego Show Promotional,2007,33,8
+fruit6-1,Orange - Hong Kong Lego Show Promotional,2007,33,7
+fruit7-1,Pear - Hong Kong Lego Show Promotional,2007,33,10
+fruit8-1,Tree - Hong Kong Lego Show Promotional,2007,33,0
+G577-1,Vikings Chess Set,2006,502,206
+GardenCity-1,"LEGO Store Grand Opening Exclusive Set, Roosevelt Field Mall, Garden City, NY",2010,408,88
+Glasgow-1,"LEGO Store Grand Opening Exclusive Set, Glasgow UK",2013,408,15
+Glendale-1,"LEGO Store Grand Opening Exclusive Set, Arrowhead Towne Center, Glendale AZ",2010,408,140
+Hanover-1,"LEGO Store Grand Opening Exclusive Set, Arundel Mills, Hanover, MD",2009,408,69
+Honolulu-1,"LEGO Store Grand Opening Exclusive Set, Ala Moana Center, Honolulu, HI",2009,408,85
+Houston-1,"LEGO Store Grand Opening Exclusive Set, Baybrook Mall, Houston, TX",2008,408,65
+Houston-2,"LEGO Store Grand Opening Exclusive Set, The Galleria, Houston, TX",2010,408,143
+Houston-3,"LEGO Store Grand Opening Exclusive Set, The Woodlands Mall, Houston, TX",2012,408,15
+HPG01-1,Harry Potter Gallery 1 - Potter L. Malfoy Lockhart Madame Hooch,2002,246,0
+HPG02-1,Harry Potter Gallery 2 - Hagrid V. Dursley Crabbe Ron Weasley,2002,246,0
+HPG03-1,Harry Potter Gallery 3 - Dumbledore Ginny Weasley D. Malfoy Snape,2002,246,2
+HPG04-1,Harry Potter Gallery 4 - Tom Riddle McGonagall Dobby Goyle Hermione,2002,246,0
+iFountain-1,iFountain (Lego / Coca-Cola Employee Exclusive),2001,301,331
+Indianapolis-1,"LEGO Store Grand Opening Exclusive Set, Castleton Square, Indianapolis, IN",2011,408,10
+ISBN1338112120-1,The LEGO Batman Movie: Chaos in Gotham City,2017,497,6
+JUNGLE-ADV-1,Jungle Adventures,2015,494,28
+K10001-1,Metroliner Kit,2001,236,2
+K10020-1,Santa Fe Starter Kit,2002,236,7
+K10022-1,Santa Fe Train Kit,2002,236,7
+K10039-1,LEGO Legend Castle Collection,2003,186,3
+K10041-1,LEGO Town Kit,2003,99,4
+K10068-1,Holiday Kit,2002,227,3
+K10079-1,Holiday Decoration II,2003,227,5
+K10124-1,Ultimate Plane Kit,2003,276,3
+K10131-1,Battle of Yavin Collection,2004,169,3
+K10158-1,Deluxe High Speed Train Collection,2005,239,4
+K10176-1,Classic Castle,2006,197,1
+K10194-1,Emerald Night Collection,2009,240,8
+K1062-1,Lego Road Safety Kit,1981,533,140
+k1062b,Set K1062 Activity Booklet,1981,533,1
+K1376-1,Spider-Man Adventure Kit,2003,488,3
+K1383-1,Scary Monster Madness Kit,2002,273,4
+K2159-1,Holiday Train Starter Collection,2006,236,31
+K3409-1,Ultimate Soccer Stadium Kit,2000,462,6
+K3433-1,Ultimate NBA Arena Kit,2004,459,3
+k34431-1,Lego Mosaic Cat,2003,277,2126
+k34432-1,Lego Mosaic Dino,2003,277,2846
+k34433-1,Lego Mosaic Johnny Thunder,2003,277,2126
+k34434-1,Lego Mosaic Tiger,2003,277,2216
+K3451-1,Famous Planes Kit,2002,276,2
+K3538-1,Snowboard Cross Race Kit,2003,460,3
+K3731-1,3D Pumpkin Pack Kit,2000,230,2
+K3801-1,RIS 2.0 Builders Kit,2003,260,3
+K4103-1,Creator Bucket bundled with 4782 (TRU Exclusive),2005,37,2
+K4346-1,X-Pod Kit,2004,478,4
+K4415-1,X-Pod Creator Collection,2006,479,4
+K4479-1,TIE Bomber & TIE Fighter Kit,2003,169,2
+K4480-1,Jabba's Palace Kit,2003,169,3
+K4482-1,Episode II Final Scene Kit,2003,167,3
+K4487-1,Star Wars Miniatures Kit I,2003,159,4
+K4488-1,Star Wars Miniatures Kit II,2003,159,4
+K4492-1,Star Wars Miniatures Kit III,2004,159,5
+K4511-1,Passenger Train Kit,2003,239,2
+K4512-1,Cargo Train Kit,2003,239,0
+K4515-1,Ultimate Track Kit,1992,244,15
+K4516-1,Oval Track Kit,1992,244,3
+K4519-1,Cross Track Kit,1992,244,6
+K4520-1,Special Track Kit,1992,244,4
+K4531-1,Deluxe Track Kit,1992,244,7
+K4609-1,Jack Stone Fire Rescue Kit,2001,283,3
+K4611-1,Jack Stone Police Rescue Kit,2001,281,4
+K4612-1,Jack Stone Kit,2002,282,3
+K4701-1,Chamber of Secrets Kit,2002,246,3
+K4706-1,Sorcerers Stone Kit,2002,251,7
+K4729-1,Deluxe Hogwarts Kit,2003,246,3
+K4751-1,Marauder's Map Kit (contains 4750 4751 4695),2004,250,3
+K4755-1,Knight Bus Collection,2004,250,2
+K4852-1,Spider-Man Movie Kit,2003,488,5
+K4915-1,Mini Pods Collection,2006,23,4
+K5300-1,Train Accessories Kit,2003,244,3
+K5613-1,City Fire Station Collection,2008,58,0
+K5850-1,Belville Kit,2003,319,4
+K5858-1,The Golden Palace Collection,2003,320,3
+K5862-1,Flower Fairy Party Collection,2003,319,3
+K5974-1,Space Police Collection,2009,141,8
+K6243-1,Big Pirates Collection,2009,153,7
+K6290-1,Classic Pirates Kit,2001,148,3
+K6762-1,Western Kit,2002,475,3
+K7000-1,Dinosaurs Kit,2001,386,4
+K7029-1,Complete Castle Collection,2007,193,7
+K7035-1,World City Police Kit,2003,111,6
+K7094-1,Castle Collection US version,2007,193,6
+K7153-1,Episode II Ultimate Action Kit,2002,167,4
+K7204-1,Jedi Adventure Kit,2002,170,4
+K720x-1,Story Teller Pack,2002,170,4
+K7283-1,V-wing Space Battle Collection,2005,168,3
+K7317-1,Life on Mars Kit,2001,135,4
+K7417-1,Orient Expedition in Mount Everest Kit,2003,300,4
+K7418-1,Orient Expedition in India Kit,2003,300,4
+K7419-1,Orient Expedition in China Kit,2003,300,4
+K7422-1,Orient Expedition World Travel Kit,2003,300,3
+K7467-1,Space Exploration Kit,2003,387,3
+K7471-1,Discovery Space Kit,2003,387,5
+K7623-1,Indiana Jones Classic Adventures Collection,2008,264,4
+K7690-1,Mars Mission Collection,2008,137,7
+K7699-1,Complete Mars Mission Collection,2007,137,8
+K7734-1,Cargo Transport Collection,2008,54,4
+K7741-1,City Police Collection,2009,61,3
+K7744-1,Ultimate City Police Collection,2008,61,5
+K7775-1,Complete Aqua Raiders Collection,2007,310,6
+K7776-1,Ultimate Aqua Raiders Collection,2007,310,7
+K7890-1,Rescue Collection,2007,60,0
+K7894-1,City Airport Collection,2007,53,4
+K7895-1,Oval Track for RC Trains,2006,245,3
+K7896-1,Deluxe Track for RC Trains,2006,245,6
+K7906-1,Ultimate Firefighter Collection,2007,58,0
+K7945-1,Firefighter Collection,2007,58,0
+K8008-1,Darth Vader / Stormtrooper Kit,2002,18,2
+K8102-1,Humans vs. Robots Battle Machine Collection,2007,389,6
+K8107-1,Golden City Collection,2009,389,3
+K8111-1,Battle Machine Collection,2008,389,5
+K8130-1,Tiny Turbo III Collection,2007,120,4
+K8148-1,Mini Racers Collection,2008,120,4
+K8355-1,Twin Powered Street Racer Kit,2003,113,2
+K8358-1,Night Sprinter Kit,2003,113,3
+K8362-1,Ferrari Collection,2004,114,2
+K8371-1,Twin Powered Street Racer Kit 2,2003,113,2
+K8380-1,All-Terrain Racers Collection,2003,116,2
+K8381-1,High-Speed Racers Collection,2003,116,2
+K8383-1,Off-Road Racers Collection,2003,116,2
+K8533-1,Find the Power BIONICLE Kit,2001,324,9
+K8563-1,Bohrok Swarm Kit,2002,328,8
+K8564-1,Ultimate Bohrok Swarm Kit,2002,324,12
+K8566-1,Toa Nuva Hero Kit,2003,354,2
+K8572-1,Toa Nuva Kit,2003,354,6
+K8573-1,Bohrok-Kal Kit,2003,330,2
+K8578-1,Ultimate Bohrok-Kal Kit,2003,330,6
+K8586-1,Matoran Villagers Kit,2003,335,6
+K8587-1,Rahkshi Set (Panrahk and Kurahk),2003,344,2
+K8588-1,Ultimate Rahkshi Kit,2003,344,6
+K8590-1,Rahkshi Kaita Vo Kit,2003,344,3
+K8591-1,Rahkshi Kit (Panrahk and Vorahk),2003,344,2
+K8592-1,Rahkshi Kaita Za Kit,2003,344,3
+K8596-1,Takutanuva Kit,2003,347,2
+K8603-1,Toa Metru Legends Kit,2004,353,2
+K8605-1,Toa Metru Kit I,2004,353,3
+K8606-1,Toa Metru Kit II,2004,353,3
+k8612-1,Metru Nui Matoran Kit,2004,336,6
+K8614-1,Vahki Kit,2004,357,6
+K8615-1,Vahki Enforcers Kit (8614 & 8615),2004,357,2
+K8645-1,Slammer Propeller Hotrod,2005,116,2
+k8647-1,Dual-Engine Truck,2005,116,2
+K8667-1,Pullback Racer Collection,2006,116,2
+K8672-1,Ferrari Racing Collection,2006,114,2
+K8685-1,Phantoka Collection,2008,339,6
+K8688-1,Mistika Collection,2008,338,6
+K8725-1,Matoran of Voya Nui Collection (8721 8722 8723 8724 8725 8726),2006,337,6
+K8727-1,Toa Inika Collection (8727 8728 8729 8730 8731 8732),2006,351,6
+K8741-1,Toa Hordika Deluxe Collection (8736 8737 8738 8739 8740 8741),2005,350,6
+K8747-1,Visorak Collection (8742 8743 8744 8745 8746 8747),2005,358,6
+K8755-1,Titans Collection (8755 8756 8761),2005,347,3
+K8761-1,The Shadowed One (LEGO Club Members Exclusive),2005,347,235
+K8764-1,Warriors of Voya Nui Collection,2006,347,3
+K8800-1,Vladek's Attack Kit,2004,198,2
+K8882-1,Power Functions Train Accessories Pack,2009,245,6
+K8900-1,Piraka Collection (8900 8901 8902 8903 8904 8905),2006,340,6
+K8915-1,Toa Mahri Collection,2007,352,6
+K8916-1,Barraki Collection,2007,326,6
+K8924-1,Titans of Mahri Nui Collection,2007,359,3
+K8927-1,Mahri Nui Deepsea Collection,2007,341,3
+K8929-1,Matoran of Mahri Nui Collection,2007,334,4
+K8942-1,Ultimate BIONICLE Collection,2008,359,4
+K8944-1,Matoran of Light Collection,2008,333,6
+K8956-1,Power Miners Collection,2009,439,6
+K8978-1,Bionicle Glatorian Collection,2009,331,6
+K9833-1,Rechargeable Battery Set,2007,259,2
+K9833-2,Rechargeable Battery Set (AC Adapter 230V - 10V Transformer),2006,259,2
+K9916-1,Robotics Invention System Kit,2003,260,8
+kabbasic-1,Kabaya Basic 4-Pack,2000,467,4
+kabbion-1,Kabaya Bionicle 4-Pack (boxed 1417 1418 1419 1420),2001,356,4
+kabbion2-1,Va 4-pack Kabaya (contains 1431 1432 1433 1434),2002,329,4
+kabcity-1,City 4-Pack,2000,50,4
+kabcreat-1,Creator 4-Pack,2001,23,4
+kabdino-1,Dino Island 4-Pack,2000,298,4
+kabextreme-1,Kabaya Extreme Team 4-Pack,1999,87,4
+Kabinsect-1,Insectoids 4-Pack,1999,134,4
+kabkk-1,Knight's Kingdom 4-Pack,2000,197,4
+kabmars-1,Life on Mars 4-Pack,2001,135,4
+kabninja-1,Kabaya Ninja 4-Pack,1999,434,4
+kaborient-1,Orient Expedition 3-Pack (canned versions of 7422 7423 7424),2003,300,3
+kabrace-1,Race 4-Pack,2001,91,4
+kabrobo-1,Kabaya RoboRider 4-Pack,2000,16,4
+kabrock-1,Rock Raiders 4-Pack,2000,442,4
+kabsoccer-1,Kabaya Soccer 3-Pack,2002,462,3
+kabspace-1,Kabaya Space Port 4-Pack,1999,93,4
+kabstud-1,Studios 4-Pack,2001,273,4
+kabtec-1,Kabaya Technic Vehicle 4-Pack,1999,5,4
+KB565-1,RIS 2.0 Basics Kit,2004,260,4
+KCCHP-1,Coca Cola Harry Potter Gift Set,2002,246,7
+KFruit-1,Fruit Set - Hong Kong Lego Show Promotional,2007,33,8
+KingofPrussia-1,"LEGO Store Grand Opening Exclusive Set, King of Prussia Mall, PA",2008,408,66
+kk2vp1-1,Knights' Kingdom Value Pack 1 (with bonus water bottle),2004,198,3
+kk2vp2-1,Knights' Kingdom Value Pack 2 (with bonus water bottle),2004,198,3
+kk2vp3-1,Knights' Kingdom Value Pack 3 (with bonus water bottle),2004,198,3
+kkchrome-1,Knight's Kingdom Chrome Series (complete set),2000,197,4
+KLLCA21-1,Santa with Reindeer and Sleigh (Legoland California),2005,427,3
+KSB28-1,LEGO BrickMaster Sample Magazine,2008,501,0
+KT103-1,Large Train Engine Blue,2001,238,0
+KT104-1,Large Train Engine Green,2001,238,0
+KT105-1,Large Train Engine Black,2001,238,0
+KT106-1,Large Train Engine Brown,2001,238,0
+KT107-1,Large Train Engine Gray,2001,238,0
+KT203-1,Large Train Engine with Tender Blue,2001,238,0
+KT204-1,Large Train Engine with Tender Green,2001,238,0
+KT205-1,Large Train Engine with Tender Black,2001,238,0
+KT206-1,Large Train Engine with Tender Brown,2001,238,0
+KT207-1,Large Train Engine with Tender Gray,2001,238,0
+KT303-1,Small Train Engine Blue,2001,238,0
+KT304-1,Small Train Engine Green,2001,238,2
+KT305-1,Small Train Engine Black,2001,238,2
+KT306-1,Small Train Engine Brown,2001,238,2
+KT307-1,Small Train Engine Gray,2001,238,2
+KT403-1,Small Train Engine with Tender Blue,2001,238,0
+KT404-1,Small Train Engine with Tender Green,2001,238,0
+KT405-1,Small Train Engine with Tender Black,2001,238,0
+KT406-1,Small Train Engine with Tender Brown,2001,238,0
+KT407-1,Small Train Engine with Tender Gray,2001,238,0
+LADYBIRD2-1,The Quest For The Lost City Activity Book,2010,501,0
+LBCITYSPACE-1,LEGO City: Space Mission - Activity Book,2011,501,0
+LBFIRERESCUE-1,LEGO City: Fire Rescue! - Activity Book,2012,501,0
+ldd3-1,LEGO Digital Designer Promo,2009,301,3
+Leeds-1,"LEGO Store Grand Opening Exclusive Set, Leeds, UK",2013,408,16
+legobricks-1,Lego Bricks Box,1958,366,2
+lfv1-1,Le Fleuriste Collector Vase - Rapid Flore Pop Color,2010,301,352
+lfv2-1,Le Fleuriste Collector Vase - Happy,2010,301,297
+lfv3-1,Le Fleuriste Collector Vase - Monceau Fleurs Blue Chic,2010,301,350
+Lightbulb-1,Celebrating Moments That CLICK Light Bulb,2009,301,57
+Lille-1,"LEGO Store Grand Opening Exclusive Set, Euralille, Lille, France",2013,408,16
+LIT2009-1,LEGO Inside Tour (LIT) Exclusive 2009 Edition - Ole Kirk's House,2009,301,909
+Liverpool-1,LEGO Store Grand Opening Exclusive Set Liverpool UK,2011,408,12
+LLBUS-1,Bus (Legoland Deutschland),2002,425,45
+llca10-1,Dragon Sculpture (Legoland California),2000,425,70
+llca12-1,3D Witch (Legoland California),2004,427,103
+LLCA13-1,Trumpet (Legoland California),2004,425,178
+llca21-1,Sitting Santa (Legoland California),2005,427,42
+llca22-1,Santa's Sleigh (Legoland California),2005,427,76
+llca23-1,Reindeer (Legoland California),2005,427,72
+LLCA24-1,"Las Vegas Skyline, Pyramid (LLCA Ambassador Pass Exclusive)",2005,425,103
+LLCA25-1,"Las Vegas Skyline, Eiffel Tower (LLCA Ambassador Pass Exclusive)",2005,425,151
+LLCA26-1,"Golf Bag, Balls & Clubs (Legoland California)",2006,425,112
+llca27-1,Legoland Pirate with Parrot (Legoland California),2006,430,70
+LLCA29-1,Pirate Treasure Chest Bank (LLCA Ambassador Pass Exclusive),2006,430,215
+LLCA30-1,Pirate Ship Diorama (LLCA Ambassador Pass Exclusive),2006,430,127
+llca3-1,Pelican Sculpture (Legoland California),2000,425,83
+LLCA31-1,Tree Frog Sculpture (LLCA Ambassador Pass Exclusive),2007,425,90
+llca34-1,Sarcophagus (LLCA Ambassador Pass Exclusive),2008,425,181
+llca35-1,Obelisk (LLCA Ambassador Pass Exclusive),2008,425,100
+llca4-1,Toy Soldier (Legoland California),2003,425,171
+LLCA51-1,Legoland California 10th Birthday Cupcake Box (LLCA Ambassador Pass Exclusive),2009,425,92
+LLCA52-1,Sand Castle - Ambassador Class 2010 (LLCA Ambassador Pass Exclusive),2010,425,229
+llca7-1,"Holiday Gift Box (Red Box, Yellow Trim With Removable Top) (Legoland California)",2001,425,108
+llca8-1,LEGO Heart (Legoland California),2004,425,58
+LLCABR1-1,Hau Mask - Green Brick (Legoland California),2001,426,168
+LLCABR2-1,Hau Mask - Blue Brick (Legoland California),2001,426,168
+LLCABR3-1,Hau Mask - Red Brick (Legoland California),2001,426,168
+LLCAPUM1-1,Build N Buy Pumpkin (Happy) (Legoland California),2002,427,31
+LLCAPUM2-1,Build N Buy Pumpkin (Sad) (Legoland California),2002,427,29
+LLKING-1,King (Legoland Deutschland),2003,425,59
+LLOlli-1,"Dragon Sculpture, Olli the Dragon holding sign (Legoland Deutschland)",2002,425,48
+LLPlane-1,Airplane [Legoland Deutschland],2002,425,25
+LLSWAN-1,Swan (Legoland Deutschland),2003,425,72
+lmg001-1,LEGO Japan Small Duck,2003,301,8
+lmg002-1,LEGO Japan Cat,2004,301,10
+lmg003-1,LEGO Japan Ostrich,2004,301,10
+lmg003-2,LEGO Japan Ostrich Yellow Label Version,2006,301,10
+lmg004-1,LEGO Japan Spinning Top,2004,301,12
+lmg005-1,LEGO Japan Deer,2003,301,13
+lmg006-1,LEGO Japan Dog,2005,301,13
+lmg006-2,LEGO Japan Dog Blue Label Version,2006,301,13
+lmg007-1,LEGO Japan Snake,2005,301,9
+lmg008-1,LEGO Japan Whale,2005,301,10
+lmg009-1,LEGO Japan Snail,2004,301,8
+lmg010-1,LEGO Japan Santa,2005,301,13
+LOC113-1,Ewar,2013,571,15
+LOC114-1,Grumlo Promo Minifigure,2014,571,13
+LOC213-1,Razcal Promo Minifigure,2013,571,15
+LOC2-14,Outland Jump,2014,571,25
+LOC214-1,Speedorz Ramp,2014,571,25
+LOC391403-1,"Tripod Cannon, Chi and Axe",2014,571,20
+LOC391404-1,Worriz,2014,571,18
+LOC391405-1,Crocodile Hideout,2014,571,29
+LOC391406-1,Crug,2014,571,8
+LOC391408-1,Vornon,2014,571,11
+LOC391409-1,Ice Prison,2014,571,17
+LOC391410-1,Sykor,2014,571,11
+LOC391411-1,Ice Cannon,2014,571,27
+LOC391412-1,Worriz,2014,571,9
+LOC391501-1,Gorzan Polybag,2015,571,8
+LOC391502-1,Ice Crossbow,2015,571,27
+LOC391503-1,Lundor,2015,571,10
+LOC391504-1,Fire vs Ice Weaponry,2015,571,38
+LOC391505-1,Iceklaw,2015,571,8
+LOC391506-1,Fire Catapult,2015,571,25
+LOC391507-1,Stealthor foil pack,2015,571,8
+LOC391508-1,Bulkar,2015,571,9
+LOC471408-1,Lennox,2014,571,10
+LoneTree-1,"LEGO Store Grand Opening Exclusive Set, Vistas Court, Lone Tree, CO",2011,408,15
+lwp01-1,LEGO World Denmark Puzzle Promo,2009,301,7
+lwp02-1,LEGO World Zwolle Puzzle Promo 2009,2009,301,7
+lwp03-1,LEGO World Denmark Puzzle Promo 2010,2010,301,7
+lwp04-1,LEGO World Denmark Puzzle Promo 2011,2011,301,7
+lwp05-1,LEGO World Denmark Puzzle Promo 2012,2012,301,7
+lwp06-1,LEGO World Denmark Puzzle Promo 2013,2013,301,7
+Lynnwood-1,"LEGO Store Grand Opening Exclusive Set, Alderwood Mall, Lynnwood, WA",2012,408,8
+Maine-1,Maine Space Grant Consortium Promotional Astronaut Polybag,1999,93,5
+makepromo-1,Make and Create Basic Set (Toyfair Nuernberg Promotion),2003,37,0
+Manchester-1,"LEGO Store Grand Opening Exclusive Set, Manchester, UK",2012,408,12
+MAY2013-1,Holocron Droid,2013,158,31
+MFCN-1,Chinese Minifig Collection Volume 1,2009,535,0
+MFCN-2,Chinese Minifig Collection Volume 2,2009,535,27
+Miami-1,"LEGO Store Grand Opening Exclusive Set, Aventura Mall, Miami, FL",2010,408,142
+MiniNXT-1,Mini NXT Brick,2008,259,3
+MiniRCX-1,Mini RCX Brick,2008,260,4
+MiniTemple-1,Red Temple (Ninjago Mini Training Temple),2017,598,35
+Minneapolis-1,"LEGO Store Grand Opening Exclusive Set, Mall of America, Bloomington, MN",1992,408,6
+Minneapolis-2,"LEGO Store Grand Re-opening Exclusive Set, Mall of America, Bloomington, MN",2010,408,125
+MissionViejo-1,LEGO Store Grand Opening Exclusive Set Mission Viejo Mall Mission Viejo CA,2011,408,13
+mln09-1,My Lego Network Promo LEGO World 2009,2009,301,3
+MMMB003-1,Monthly Mini Model Build February 2009 - Heart,2009,409,15
+MMMB009-1,Monthly Mini Model Build June 2009 - Sailing Boat,2009,409,27
+MMMB010-1,Monthly Mini Model Build July 2009 - US Flag,2009,409,15
+MMMB023-1,Monthly Mini Model Build April 2010 - Chick,2010,409,30
+MMMB026-1,Monthly Mini Model Build July 2010 - Watermelon,2010,409,43
+MMMB0908,Monthly Mini Model Build August 2009 - Lobster,2009,409,49
+MOMENTS-1,This moments,2015,494,18
+MS1032-1,Infrared Receiver Sensor for Mindstorms NXT,2010,259,0
+MS1034-1,Compass Sensor for Mindstorms NXT,2006,259,1
+MS1038-1,Color Sensor for Mindstorms NXT,2006,259,1
+MS1040-1,Accelerometer Sensor for Mindstorms NXT,2007,259,0
+MS1042-1,Infrared Seeker for Mindstorms NXT (Version 1),2007,259,0
+MS1044-1,Gyroscopic Sensor for Mindstorms NXT,2007,259,0
+MS1046-1,Infrared Link Sensor for Mindstorms NXT,2007,259,0
+MS1048-1,Mindstorms RF ID Sensor,2008,259,0
+MS1049-1,Mindstorms Keyfob Transponder,2008,259,0
+MS1060-1,Mindstorms NXT Touch Sensor Multiplexer,2009,259,0
+Munich-1,"LEGO Store Grand Opening Exclusive Set, Pasing Arcaden, München, Germany",2013,408,17
+MYERNEXO-1,Micro Battle Blaster,2016,605,18
+MYERNEXO-2,Micro Mecha Horse,2016,605,24
+NAA1030-1,NXT Angle Sensor,2013,259,0
+Nashville-1,"LEGO Store Grand Opening Exclusive Set, Opry Mills, Nashville, TN",2012,408,15
+NEO1048-1,EOPD Sensor for Mindstorms NXT (Electro Optical Sensor),2009,259,0
+Newark-1,"LEGO Store Grand Opening Exclusive Set, Christiana Mall, Newark, DE",2010,408,133
+NEX271606-1,Knight Racer,2016,605,21
+NEX271607-1,Firecracker Catapult,2016,605,17
+NEX271608-1,Kid Clay,2016,605,18
+NEX271609-1,Bat-Gun,2016,605,29
+NEX271610-1,Mighty Mech Bot,2016,605,34
+NEX271611-1,Pilot Bot,2016,605,13
+NEX271712-1,Clay and Training Stand,2017,605,18
+NEX271714-1,Robin,2017,605,19
+NEX271715-1,Lance's Micro Limo,2017,605,34
+NEX271717-1,Rock Speeder,2017,605,31
+NEX271719-1,Stone Giants' Gun,2017,605,33
+NIN561609-1,Kai foil pack #2,2016,435,13
+NIN891501-1,Ninjago Kai,2015,435,9
+NIN891503-1,Cole foil pack,2015,435,11
+NIN891505-1,Jay foil pack,2015,435,8
+NIN891506-1,Ming foil pack,2015,435,8
+NIN891507-1,Zane foil pack,2015,435,9
+NIN891508-1,Anacondrai Hideout,2015,435,24
+NIN891610-1,Clouse foil pack,2016,435,8
+NIN891612-1,Sqiffy,2016,435,8
+NIN891614-1,Cyren,2016,435,9
+NIN891615-1,Jay,2016,435,14
+NIN891616-1,Bucko,2016,435,9
+NIN891617-1,Titanium Zane,2016,435,15
+NIN891618-1,Ronin,2016,435,15
+NIN891619-1,Pirate fighter,2016,435,21
+NIN891620-1,Nya foil pack,2016,435,10
+NIN901503-1,Krait foil pack,2015,435,7
+NK271601-1,Lance,2016,605,14
+NK271602-1,Hover Horse,2016,605,34
+NK271603-1,Robin And Horse,2016,605,23
+NK271604-1,Goblin Spiders,2016,605,28
+NMS1035-1,NXT Magnetic Sensor,2010,259,1
+nqstudios-1,Nesquik Studios Promo 3-Pack,2001,273,3
+Nuremberg-1,"LEGO Store Grand Opening Exclusive Set, Nuremberg (Nürnberg), Germany",2010,408,126
+OklahomaCity-1,"LEGO Store Grand Opening Exclusive Set, Penn Square Mall, Oklahoma City, OK",2009,408,58
+Orlando-1,"LEGO Store Grand Opening Exclusive Set, Imagination Center, Orlando, FL",1997,408,3
+OrlandPark-1,"LEGO Store Grand Opening Exclusive Set, Orland Park, IL",2009,408,58
+OverlandPark-1,"LEGO Store Grand Opening Exclusive Set, Oak Park Mall, Overland Park, KS",2012,408,15
+Paramus-1,"LEGO Store Grand Opening Exclusive Set, Paramus, NJ",2009,408,73
+Peabody-1,"LEGO Store Grand Opening Exclusive Set, Northshore Mall, Peabody, MA",2012,408,6
+pk1062,Lego Road Safety Kit Poster,1981,501,0
+Pleasanton-1,LEGO Store Grand Opening Exclusive Set Stoneridge Mall Pleasanton CA,2011,408,15
+PS3038-1,LEGO Star Wars: The Complete Saga,2007,501,0
+Raleigh-1,"LEGO Store Grand Opening Exclusive Set, Crabtree Valley Mall, Raleigh, NC",2009,408,121
+Ramboll-1,Ramboll Oil Platform,2008,301,215
+rrminifigs-1,Rock Raider Minifig Packs 3-Pack,2000,442,3
+Saarbrucken-1,"LEGO Store Grand Opening Exclusive Set, Saarbrücken, Germany",2012,408,16
+Sacramento-1,"LEGO Store Grand Opening Exclusive Set, Arden Fair Mall, Sacramento, CA",2008,408,79
+SAMURAI-DROID-1,Samurai droid,2015,435,32
+SanDiego-1,LEGO Store Grand Opening Exclusive Set Fashion Valley San Diego CA,2011,408,15
+SDCC2015-1,Throne of Ultron,2015,487,196
+SDCC2015-2,Dagobah Mini-Build,2015,158,177
+SDCC2015-3,Action Comics #1 Superman,2015,489,145
+Sheffield-1,"LEGO Store Grand Opening Exclusive Set, Sheffield, UK",2012,408,14
+shell98small-1,Shell Town 1998 Promotional (complete set),1998,301,10
+shtown99small-1,Shell Town 1999 Promotional (complete set),1999,50,6
+SoOuest-1,"LEGO Store Grand Opening Exclusive Set, So Ouest, Levallois-Perret, France",2012,408,15
+Sphinx-1,Sphinx,2008,301,29
+Stratford-1,"LEGO Store Grand Opening Exclusive Set, Westfield Stratford, UK",2012,408,15
+Sunrise-1,"LEGO Store Grand Opening Exclusive Set, Sawgrass Mills, Sunrise, FL",2011,408,15
+sw117promo-1,Darth Vader Polybag - 56. International Toy Fair Nuernberg (N├╝rnberg),2005,168,2
+sw218promo-1,Darth Vader 10 Year Anniversary Promotional Fig polybag,2009,169,2
+SW911506-1,Snowspeeder,2015,163,19
+SW911508-1,Mini Slave 1,2015,159,20
+SW911509-1,Imperial Shooter,2015,182,20
+SW911510-1,Star Destroyer and TIE Fighter foil pack,2015,159,21
+SW911511-1,Jedi Weapon Stand,2015,158,16
+SW911607-1,Millennium Falcon ,2016,158,42
+SW911608-1,Landspeeder,2016,163,37
+SW911610-1,Probe Droid,2016,158,20
+SW911612-1,Acklay,2016,167,49
+SW911616-1,MTT Foil Pack,2016,158,44
+SW911617-1,Palpatine's Shuttle,2016,158,37
+SW911719-1,Kanan Jarrus foilpack,2017,182,6
+SW911720-1,The Ghost,2017,182,50
+SW911722-1,TIE Advanced foil pack,2017,158,26
+SW911723-1,Vulture Droid foil pack,2017,162,35
+SW911724-1,A-Wing,2017,182,47
+SW911725-1,Sandcrawler,2017,158,50
+SW911726-1,Imperial Snowtrooper,2017,169,7
+SW911727-1,Rey's Speeder,2017,184,35
+SWCOMIC1-1,X-Wing,2015,159,23
+SWDVDBD-1,The Padawan Menace,2011,501,0
+swminifigs-1,Star Wars Minifig Packs 4-Pack,2000,170,4
+SWMP-1,Star Wars / M&M Mosaic - Promo Set,2005,169,5461
+tech007promo-1,Technic Figure Cyber Person Promotional Polybag - [Toy Fair Nuernberg Promotion 1998],1998,3,1
+tf05-1,Lego Toy Fair 2005 Star Wars V.I.P. Gala Set,2005,168,38
+tktour-1,Tour De France (complete set),2000,50,4
+TLMPS-1,The LEGO Movie Promotional Set,2014,578,103
+tominifigs-1,Town Minifig Packs 2-Pack,2000,50,2
+Toronto-1,"LEGO Store Grand Opening Exclusive Set, Sherway Square, Toronto, ON, Canada",2011,408,3
+Toronto-2,"LEGO Store Grand Opening Exclusive Set, Fairview Mall, Toronto, ON, Canada",2011,408,15
+Toronto-3,"LEGO Store Grand Opening Exclusive Set, Yorkdale Mall, Toronto, ON, Canada",2013,408,15
+Troy-1,"LEGO Store Grand Opening Exclusive Set, Somerset Collection, Troy, MI",2010,408,103
+TRU01-1,Harry Potter Quidditch Tower (TRU Event Exclusive),2002,246,37
+TRUBATSIGNAL-1,Batman Bat-Signal,2014,484,19
+trucapam-1,Captain America Mosaic,2016,598,71
+TRUCOGSWORTH-1,Toys 'r Us - Cogsworth,2016,301,47
+TRUFALCON-1,Millennium Falcon,2016,158,44
+TRUFlyCar-1,TRU Emmet's Fly Car,2014,578,34
+TRUFRIENDS-1,Wishing Well,2017,494,33
+TRUGHOST-1,Rebel Micro Ghost,2014,170,42
+TRUJOKERMECH-1,The Joker Mini Mech Bot,2013,484,42
+TRUKAYAK-1,Kayak,2015,52,18
+TRULUMIERE-1,Toys 'r Us Lumiere,2016,301,23
+TRUNEXO-1,Micro Rumble Blade,2016,605,21
+TRUNEXO-2,Micro Chaos Chariot,2016,605,30
+TRUNINJAGO-1,Micro Shinto Shrine,2015,435,18
+TRUNINJAGO-2,Micro Electromech Robot,2015,435,28
+TRUNINJAGO-3,Micro Kai's Fighter Jet,2015,435,18
+TRUNINJAGO-4,Micro Morro Dragon,2015,435,29
+TRUTIE-1,TIE Fighter,2014,170,12
+TRUXWING-1,X-Wing,2014,170,23
+TRUXWING-2,Poe's X-Wing Fighter,2015,158,27
+TRUXWINGTIE-1,"TRU X-Wing Fighter & TIE Fighter (May 3, 2014)",2014,170,2
+tsuper-1,Technic Super Set,1991,12,3
+Vancouver-1,"LEGO Store Grand Opening Exclusive Set, Oakridge Centre, Vancouver, BC, Canada",2012,408,-1
+Victor-1,"LEGO Store Grand Opening Exclusive Set, Eastview Mall, Victor, NY",2012,408,15
+Vienna-1,"LEGO Store Grand Opening Exclusive Set, SCS, Wien, Austria",2013,408,17
+VP-1,Ice Planet Co-Pack of 6814 6879 and 6898,1995,133,3
+VP-10,Star Wars Value Pack with Free LEGO Backpack (K-Mart Australia Exclusive),2003,170,4
+VP-11,Star Wars Co-Pack of 7101 7111 and 7131,2000,166,3
+VP-12,Star Wars Co-Pack of 7121 and 7151,2000,166,2
+VP-13,Launch Command Value Pack - (6336 6516 6614),1995,88,3
+VP-14,Classic Town Value Pack Duopack (6581 6596),1998,67,2
+VP-15,Adventurers Super Value Pack,2000,298,3
+VP-17,Legoland Town Special Offer,1985,67,0
+VP-2,Star Wars Co-Pack of 7110 and 7144,2001,169,2
+VP-3,Star Wars Co-Pack of 7131 and 7151,2000,166,2
+VP-4,Star Wars Co-Pack of 7101 7111 and 7171,2000,166,3
+VP-5,UFO Value Pack,1997,144,3
+VP-6,Building Bonanza Value Pack 4886 with 7280 & 7281,2006,52,3
+VP-7,Fire Value Pack (6554 6407 6564),1997,98,3
+VP-8,Star Wars Co-Pack of 7130 and 7150,2000,169,2
+VPorient-1,Orient Expedition Value Pack with LEGO Backpack (K-Mart Australia Exclusive),2003,300,4
+vwkit-1,Volkswagen Kit,1959,366,22
+W098-1,"Watch Set, Classic Blue",2006,501,0
+W991526-1,Homeschool Introduction to Simple and Motorized Mechanisms Pack,2009,529,0
+Watford-1,"LEGO Store Grand Opening Exclusive Set, Watford, UK",2013,408,15
+Wauwatosa-1,"LEGO Store Grand Opening Exclusive Set, Mayfair, Wauwatosa, WI",2012,408,15
+WHITEHOUSE-1,Micro White House,2015,598,59
+Wiesbaden-1,"LEGO Store Grand Opening Exclusive Set, Wiesbaden, Germany",2010,408,146
+WishingWell-1,Wishing Well [Toys R Us Promo],2013,494,28
+wwgp1-1,Wild West Limited Edition Gift Pack,1996,476,3
diff --git a/Data Explorartion/Lego Analysis/themes.csv b/Data Explorartion/Lego Analysis/themes.csv
new file mode 100644
index 0000000..2913f98
--- /dev/null
+++ b/Data Explorartion/Lego Analysis/themes.csv
@@ -0,0 +1,615 @@
+id,name,parent_id
+1,Technic,
+2,Arctic Technic,1
+3,Competition,1
+4,Expert Builder,1
+5,Model,1
+6,Airport,5
+7,Construction,5
+8,Farm,5
+9,Fire,5
+10,Harbor,5
+11,Off-Road,5
+12,Race,5
+13,Riding Cycle,5
+14,Robot,5
+15,Traffic,5
+16,RoboRiders,1
+17,Speed Slammers,1
+18,Star Wars,1
+19,Supplemental,1
+20,Throwbot Slizer,1
+21,Universal Building Set,1
+22,Creator,
+23,Basic Model,22
+24,Airport,23
+25,Castle,23
+26,Construction,23
+27,Race,23
+28,Harbor,23
+29,Train,23
+30,Traffic,23
+31,Creature,23
+32,Robot,23
+33,Food & Drink,23
+34,Building,23
+35,Cargo,23
+36,Fire,23
+37,Basic Set,22
+38,Model,22
+39,Traffic,38
+40,Creature,38
+41,Riding Cycle,38
+42,Airport,38
+43,Building,38
+44,Recreation,38
+45,Cargo,38
+46,Harbor,38
+47,Fire,38
+48,Supplemental,22
+49,Mecha,22
+50,Town,
+51,Arctic,50
+52,City,50
+53,Airport,52
+54,Cargo,52
+55,Coast Guard,52
+56,Construction,52
+57,Farm,52
+58,Fire,52
+59,Harbor,52
+60,Hospital,52
+61,Police,52
+62,Supplemental,52
+63,Traffic,52
+64,Off-Road,52
+65,Arctic,52
+66,Trains,52
+67,Classic Town,50
+68,Airport,67
+69,Building,67
+70,Cargo,67
+71,Coast Guard,67
+72,Construction,67
+73,Farm,67
+74,Fire,67
+75,Food & Drink,67
+76,Station,67
+77,Harbor,67
+78,Hospital,67
+79,Off-Road,67
+80,Police,67
+81,Post Office,67
+82,Race,67
+83,Recreation,67
+84,Supplemental,67
+85,Traffic,67
+86,Divers,50
+87,Extreme Team,50
+88,Launch Command,50
+89,Outback,50
+90,Paradisa,50
+91,Race,50
+92,Res-Q,50
+93,Space Port,50
+94,Town Jr.,50
+95,Cargo,94
+96,Coast Guard,94
+97,Construction,94
+98,Fire,94
+99,Gas Station,94
+100,Police,94
+101,Race,94
+102,Supplemental,94
+103,Traffic,94
+104,Town Plan,50
+105,World City,50
+106,Airport,105
+107,Coast Guard,105
+108,Fire,105
+109,Food & Drink,105
+110,Harbor,105
+111,Police,105
+112,Racers,
+113,Drome Racers,112
+114,Ferrari,112
+115,Lamborghini,112
+116,Power Racers,112
+117,Radio Control,112
+118,Speed Racer,112
+119,Supplemental,112
+120,Tiny Turbos,112
+121,Track System,112
+122,Williams F1,112
+123,World Racers,112
+124,Supplemental,123
+125,Xalax,112
+126,Space,
+127,Alien Conquest,126
+128,Blacktron I,126
+129,Blacktron II,126
+130,Classic Space,126
+131,Exploriens,126
+132,Futuron,126
+133,Ice Planet 2002,126
+134,Insectoids,126
+135,Life On Mars,126
+136,M:Tron,126
+137,Mars Mission,126
+138,RoboForce,126
+139,Space Police I,126
+140,Space Police II,126
+141,Space Police III,126
+142,Spyrius,126
+143,Supplemental,126
+144,UFO,126
+145,Unitron,126
+146,Galaxy Squad,126
+147,Pirates,
+148,Pirates I,147
+149,Imperial Armada,148
+150,Imperial Guards,148
+151,Imperial Soldiers,148
+152,Islanders,148
+153,Pirates II,147
+154,Pirates III,147
+155,Modular Buildings,
+156,Mini,155
+157,Bricktober,155
+158,Star Wars,
+159,Mini,158
+160,Star Wars Clone Wars,159
+161,Star Wars Episode 2,159
+162,Star Wars Episode 3,159
+163,Star Wars Episode 4/5/6,159
+164,Star Wars Episode 1,159
+165,Star Wars Clone Wars,158
+166,Star Wars Episode 1,158
+167,Star Wars Episode 2,158
+168,Star Wars Episode 3,158
+169,Star Wars Episode 4/5/6,158
+170,Star Wars Other,158
+171,Ultimate Collector Series,158
+172,Star Wars Episode 1,171
+173,Star Wars Episode 3,171
+174,Star Wars Episode 4/5/6,171
+175,Star Wars Episode 2,171
+176,Planet Series 1,158
+177,Planet Series 2,158
+178,Minifig Pack,158
+179,Planet Series 3,158
+180,Planet Series 4,158
+181,Star Wars Episode 4/5/6,180
+182,Star Wars Rebels,158
+183,Star Wars Expanded Universe,158
+184,Star Wars Episode 7,158
+185,Star Wars Rogue One,158
+186,Castle,
+187,Black Falcons,186
+188,Black Knights,186
+189,Classic Castle,186
+190,Crusaders,186
+191,Dark Forest,186
+192,Dragon Knights,186
+193,Fantasy Era,186
+194,Forestmen,186
+195,Fright Knights,186
+196,Kingdoms,186
+197,Knights Kingdom I,186
+198,Knights Kingdom II,186
+199,Lion Knights,186
+200,My Own Creation,186
+201,Royal Knights,186
+202,Supplemental,186
+203,Wolfpack,186
+204,Designer Sets,
+205,Building,204
+206,Seasonal,
+207,Advent,206
+208,City,207
+209,Star Wars,207
+210,Belville,207
+211,Castle,207
+212,Classic Basic,207
+213,Clikits,207
+214,Creator,207
+215,Pirates,207
+216,Friends,207
+217,Advent Sub-Set,206
+218,Belville,217
+219,Castle,217
+220,City,217
+221,Classic Basic,217
+222,Clikits,217
+223,Creator,217
+224,Pirates,217
+225,Star Wars,217
+226,Friends,217
+227,Christmas,206
+228,Creator,227
+229,Easter,206
+230,Halloween,206
+231,Thanksgiving,206
+232,Valentine,206
+233,Train,
+234,12V,233
+235,4.5V,233
+236,9V,233
+237,My Own Creation,236
+238,My Own Train,236
+239,World City,236
+240,RC Train,233
+241,Supplemental,233
+242,12V,241
+243,4.5V,241
+244,9V,241
+245,RC Train,241
+246,Harry Potter,
+247,Chamber of Secrets,246
+248,Goblet of Fire,246
+249,Order of the Phoenix,246
+250,Prisoner of Azkaban,246
+251,Sorcerer's Stone,246
+252,Architecture,
+253,Skylines,252
+254,Bulk Bricks,
+255,Castle,254
+256,Technic,254
+257,Train,254
+258,Mindstorms,
+259,NXT,258
+260,RCX,258
+261,Star Wars,258
+262,EV3,258
+263,Pirates of the Caribbean,
+264,Indiana Jones,
+265,Kingdom of the Crystal Skull,264
+266,Last Crusade,264
+267,Raiders of the Lost Ark,264
+268,Temple of Doom,264
+269,Cars,
+270,Ben 10,
+271,Prince of Persia,
+272,SpongeBob SquarePants,
+273,Studios,
+274,Jurassic Park III,273
+275,Toy Story,
+276,Sculptures,
+277,Mosaic,276
+278,Model Team,
+279,4 Juniors,
+280,Jack Stone,279
+281,Police,280
+282,Airport,280
+283,Fire,280
+284,Traffic,280
+285,Gas Station,280
+286,Pirates,279
+287,Spider-Man,279
+288,Spider-Man 2,287
+289,Supplemental,279
+290,Town,279
+291,Police,290
+292,Traffic,290
+293,Construction,290
+294,Gas Station,290
+295,Fire,290
+296,Adventurers,
+297,Desert,296
+298,Dino Island,296
+299,Jungle,296
+300,Orient Expedition,296
+301,Other,
+302,Agents,
+303,Ultra Agents,302
+304,Alpha Team,
+305,Mission Deep Sea,304
+306,Mission Deep Freeze,304
+307,Aquazone,
+308,Aquanauts,307
+309,Aquaraiders I,307
+310,Aquaraiders II,307
+311,Aquasharks,307
+312,Hydronauts,307
+313,Stingrays,307
+314,Supplemental,307
+315,Atlantis,
+316,Mini,315
+317,Avatar,
+318,Belville,
+319,Fairy-Tale,318
+320,Golden Land,318
+321,Hospital,318
+322,Playhouse,318
+323,Recreation,318
+324,Bionicle,
+325,Agori,324
+326,Barraki,324
+327,Battle Vehicles,324
+328,Bohrok,324
+329,Bohrok Va,324
+330,Bohrok-Kal,324
+331,Glatorian,324
+332,Glatorian Legends,324
+333,Matoran of Light,324
+334,Matoran of Mahri Nui,324
+335,Matoran of Mata Nui,324
+336,Matoran of Metru Nui,324
+337,Matoran of Voya Nui,324
+338,Mistika,324
+339,Phantoka,324
+340,Piraka,324
+341,Playsets,324
+342,Rahaga,324
+343,Rahi,324
+344,Rahkshi,324
+345,Stars,324
+346,Supplemental,324
+347,Titans,324
+348,Toa,324
+349,Toa Hagah,324
+350,Toa Hordika,324
+351,Toa Inika,324
+352,Toa Mahri,324
+353,Toa Metru,324
+354,Toa Nuva,324
+355,Tohunga,324
+356,Turaga,324
+357,Vahki,324
+358,Visorak,324
+359,Warriors,324
+360,Protectors,324
+361,Skull Spiders,324
+362,Toa Okoto,324
+363,Boat,
+364,Building Set with People,
+365,Classic,
+366,Basic Set,365
+367,Building,365
+368,HO 1:87 Vehicles,365
+369,Jumbo Bricks,365
+370,Mosaic,365
+371,Supplemental,365
+372,Town Plan,365
+373,Vehicle,365
+374,Airport,373
+375,Farm,373
+376,Fire,373
+377,Harbor,373
+378,Traffic,373
+379,Supplemental,373
+380,Train,373
+381,Construction,373
+382,Cargo,373
+383,Wooden Box Set,365
+384,Dino 2010,
+385,Dino Attack,
+386,Dinosaurs,
+387,Discovery,
+388,Disney's Mickey Mouse,
+389,Exo-Force,
+390,Fabuland,
+391,Hospital,390
+392,Post Office,390
+393,Harbor,390
+394,Airport,390
+395,Fire,390
+396,Police,390
+397,Factory,
+398,FIRST LEGO League,
+399,Freestyle,
+400,Hero Factory,
+401,Heroes,400
+402,Vehicles,400
+403,Villains,400
+404,Hobby Sets,
+405,Homemaker,
+406,Inventor,
+407,Island Xtreme Stunts,
+408,LEGO Brand Store,
+409,Monthly Mini Model Build,408
+410,Pick A Model,408
+411,Legoland,
+412,Airport,411
+413,Building,411
+414,Castle,411
+415,Coast Guard,411
+416,Construction,411
+417,Fire,411
+418,Gas Station,411
+419,Harbor,411
+420,Hospital,411
+421,Police,411
+422,Space,411
+423,Vehicle,411
+424,Western,411
+425,Legoland Parks,
+426,Bionicle,425
+427,Holiday,425
+428,Christmas,425
+429,Halloween,425
+430,Pirates,425
+431,Star Wars,425
+432,Master Building Academy,
+433,Minitalia,
+434,Ninja,
+435,Ninjago,
+436,Airjitzu,435
+437,Pharaoh's Quest,
+438,Power Functions,
+439,Power Miners,
+440,Primo,
+441,Quatro,
+442,Rock Raiders,
+443,Service Packs,
+444,Adventurers,443
+445,Aquazone,443
+446,Belville,443
+447,Castle,443
+448,Fabuland,443
+449,Pirates,443
+450,Primo,443
+451,Scala,443
+452,Space,443
+453,Technic,443
+454,Town,443
+455,Classic Town,454
+456,Train,443
+457,Western ,443
+458,Sports,
+459,Basketball,458
+460,Gravity Games,458
+461,Hockey,458
+462,Soccer,458
+463,Spybiotics,
+464,Time Cruisers,
+465,Universal Building Set,
+466,Airport,465
+467,Basic,465
+468,Basic Model,465
+469,Basic Set,465
+470,Classic Basic,465
+471,Ferries,465
+472,Gears,465
+473,Supplemental,465
+474,Vikings,
+475,Western,
+476,Cowboys,475
+477,Indians,475
+478,X-Pod,
+479,Creator,478
+480,Znap,
+481,Dino,
+482,Super Heroes,
+483,Guardians of the Galaxy,482
+484,Batman,482
+485,Ultimate Collector Series,484
+486,Justice League,482
+487,Avengers,482
+488,Spider-Man,482
+489,Superman,482
+490,Iron Man,482
+491,X-Men,482
+492,Constraction,482
+493,Marvel,482
+494,Friends,
+495,Jungle Rescue,494
+496,Animals,494
+497,Books,
+498,Technic,497
+499,Train,497
+500,Clikits,
+501,Gear,
+502,Game,501
+503,Key Chain,501
+504,Duplo,
+505,Basic Set,504
+506,Cars,504
+507,Educational and Dacta,
+508,4 Juniors,507
+509,Adventurers,507
+510,Boat,507
+511,Building Set with People,507
+512,Castle,507
+513,Classic,507
+514,Creator,507
+515,Dinosaurs,507
+516,Explore,507
+517,Learning,507
+518,Mindstorms,507
+519,NXT,518
+520,RCX,518
+521,WeDo,518
+522,Primo,507
+523,Samsonite,507
+524,Service Packs,507
+525,Technic,524
+526,Soft Bricks,507
+527,Space,507
+528,Supplemental,507
+529,Technic,507
+530,Control Lab,529
+531,eLAB,529
+532,Supplemental,529
+533,Town,507
+534,Universal Building Set,507
+535,Collectible Minifigures,
+536,Series 1 Minifigures,535
+537,Series 2 Minifigures,535
+538,Series 3 Minifigures,535
+539,Series 4 Minifigures,535
+540,Series 5 Minifigures,535
+541,Series 6 Minifigures,535
+542,Series 7 Minifigures,535
+543,Series 8 Minifigures,535
+544,Series 9 Minifigures,535
+545,Series 10 Minifigures,535
+546,Team GB,535
+547,Series 11 Minifigures,535
+548,Series 12 Minifigures,535
+549,The LEGO Movie Series,535
+550,The Simpsons,535
+551,Series 13 Minifigures,535
+552,Series 14 Minifigures,535
+553,The Simpsons Series 2,535
+554,Series 15 Minifigures,535
+555,Disney,535
+556,Series 16 Minifigures,535
+557,DFB Minifigures,535
+558,Monster Fighters,
+559,Value Packs,
+560,Universe,
+561,The Hobbit and Lord of the Rings,
+562,The Hobbit,561
+563,An Unexpected Journey,562
+564,The Desolation of Smaug,562
+565,The Battle of the Five Armies,562
+566,The Lord of the Rings,561
+567,The Fellowship of the Ring,566
+568,The Two Towers,566
+569,The Return of the King,566
+570,Teenage Mutant Ninja Turtles,
+571,Legends of Chima,
+572,Speedorz,571
+573,Constraction,571
+574,Legend Beasts,571
+575,The Lone Ranger,
+576,LEGO Ideas and CUUSOO,
+577,Minecraft,
+578,The LEGO Movie,
+579,Disney Princess,
+580,Mixels,
+581,Series 1,580
+582,Series 2,580
+583,Series 3,580
+584,Series 4,580
+585,Series 5,580
+586,Series 6,580
+587,Series 7,580
+588,Series 8,580
+589,Series 9,580
+590,Fusion,
+591,Juniors,
+592,DC Comics Super Heroes,591
+593,Disney Princess,591
+594,Fantasy,591
+595,Friends,591
+596,Marvel Super Heroes,591
+597,Nijago,591
+598,Promotional,
+599,LEGO Exclusive,
+600,Elves,
+601,Speed Champions,
+602,Jurassic World,
+603,Scooby-Doo,
+604,Dimensions,
+605,Nexo Knights,
+606,Angry Birds,
+607,Ghostbusters,
+608,Disney,
+609,The LEGO Batman Movie,535
+610,Brickheadz,
+611,Series 17 Minifigures,535
+612,Star Wars Episode 8,158
+613,Freemakers,158
+614,Jungle,52